develop #63

Merged
cromer merged 6 commits from develop into master 2023-03-01 22:25:15 -03:00
2 changed files with 17 additions and 0 deletions
Showing only changes of commit acf6ed6f73 - Show all commits

Binary file not shown.

17
obelisk/alai.obk Normal file
View File

@ -0,0 +1,17 @@
fact("coin" is "gold");
rule("gold coin" is "collectable" if "coin" is "gold");
fact("goal" is "touchable");
fact("shelly" is "dangerous");
fact("shelly" is "bouncable");
fact("shelly" can "walk");
fact("dreadtooth" is "dangerous");
fact("dreadtooth" can "walk");
action(if "shelly" is "bouncable" then "jump on" else "jump over");
action(if "dreadtooth" is "bouncable" then "jump on" else "jump over");
action(if "coin" is "collectable" then "collect" else "avoid");
action(if "goal" is "touchable" then "touch" else "avoid");