Advertisement
jargon

Roe2a Scripting Syntax Proposal No.2

May 20th, 2024
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. 1::iXPull:(src,dest)
  2.  
  3. 1::on:src['ailment']=>case:{emptyCell}
  4. 2::on:src['terrain']=>case:{'dirt','stps','stpw'}
  5. 3::on:dest['terrain']=>case:{'dirt','hole','stps','stpw'
  6. 4::swap:['critter','ailment']
  7.  
  8. 2::on:src['terrain']=>case:{'hole','stps','stpw'}
  9. 3::on:dest['terrain']=>case:{'hole','stps','stpw'}
  10. 4::swap:['critter','ailment']
  11.  
  12. 1::on:src['ailment']=>case:{'wing'}
  13. 2::on:src['terrain']=>case:{'dirt','hole','watr','stps','stpw'}
  14. 3::on:dest['terrain']=>case:{'dirt','hole','watr','stps','stpw'}
  15. 4::swap['critter','ailment']
  16.  
  17. 1::on:src['ailment']=>case:{'key1','key2','key3'}
  18. 2::on:dest['ailment']=>case:{'loc1','loc2','loc3'}
  19. 3::on:mid(src['ailment'],4,1)=>case:mid(dest['ailment'],4,1)
  20. 4::src['ailment'] EQ emptyCell
  21. 4::dest['ailment'] EQ emptyCell
  22.  
  23. 3::on:src['ailment']=>case:src['cure']
  24. 4::on:roll(1,10)=>case:GTR 2
  25. 5::src['ailment'] EQ emptyCell
  26.  
  27. 3::on:src['ailment']=>case:src['vnom']
  28. 4::on:roll(1,10)=>case:GTR 4
  29. 5::src['ailment'] EQ emptyCell
  30.  
  31. 3::on:src['ailment']=>case:src['fire']
  32. 4::on:roll(1,10)=>case:GTR 6
  33. 5::src['ailment'] EQ emptyCell
  34.  
  35. 3::on:src['ailment']=>case:src['web_']
  36. 4::on:roll(1,10)=>case:GTR 9
  37. 5::src['ailment'] EQ emptyCell
  38.  
  39. 3::on:src['ailment']=>case:src['dust']
  40. 4::on:roll(1,10)=>case:GTR 6
  41. 5::src['ailment'] EQ emptyCell
  42.  
  43. 3::on:src['ailment']=>case:src['zzzz']
  44. 4::on:roll(1,10)=>case:GTR 6
  45. 5::src['ailment'] EQ emptyCell
  46.  
  47. 1::iXPush:(src,dest)
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement