develop #63

Fusionado
cromer fusionados 6 commits de develop en master 2023-03-01 22:25:15 -03:00
Se han modificado 2 ficheros con 17 adiciones y 0 borrados
Mostrando solo los cambios del commit acf6ed6f73 - Mostrar todos los commits

Archivo binario no mostrado.

17
obelisk/alai.obk Archivo normal
Ver fichero

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