update the knowledge base for the dreadtooth enemy type

This commit is contained in:
Chris Cromer 2023-03-01 09:14:36 -03:00
parent 4860855cc8
commit acf6ed6f73
Signed by: cromer
GPG Key ID: FA91071797BEEEC2
2 changed files with 17 additions and 0 deletions

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");