Advertisement
Ramaraunt1

first hypothetical language

May 15th, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. define actor "player":
  2. is player
  3. is in "center room"
  4. ;
  5.  
  6. define room "north room":
  7. has path "south" "center room"
  8. ;
  9.  
  10. define room "east room":
  11. has path "west" "center room"
  12. ;
  13.  
  14. define room "south room":
  15. has path "north" "center room"
  16. ;
  17.  
  18. define room "west room":
  19. has path "east" "center room"
  20. ;
  21.  
  22. define room "center room":
  23. has path "north" "north room"
  24. has path "east" "east room"
  25. has path "south" "south room"
  26. has path "west" "west room"
  27. ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement