mrcake2005

Escape the Flood!

Dec 22nd, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. Let's make a game!
  2. name: Escape the Flood!
  3. desc: Raise yourself higher than the flood water.
  4. by: Elton
  5. created: 12/22/18
  6. version: 1
  7. Layout
  8. *main
  9. contains:res, buttons
  10. *res
  11. contains:Resources
  12. class:fullWidth
  13. *buttons
  14. contains:Buttons
  15. *store
  16. contains:buildings, upgrades
  17. *buildings
  18. contains:BulkDisplay, Buildings
  19. header:Buildings
  20. tooltip origin:left
  21. *upgrades
  22. contains:Upgrades
  23. header:Upgrades
  24. costs:hide
  25. names:hide
  26. Resources
  27. *Money
  28. name: Money
  29. desc: Used to purchase items to help you on your journey.
  30. *WL
  31. name: Water Level
  32. desc: The height of the flood in inches.
  33. on earn:
  34. if ((WL)>(HE))
  35. toast You lost! Wipe save to try again!
  36. end
  37. end
  38. *HE
  39. name: Height Elevation
  40. desc: How high up your house is.
  41. is always: 5+((Stilts)*2)
  42. Buildings
  43. *House
  44. name: Your House
  45. desc: This is your house.
  46. no buy
  47. on tick:
  48. yield 1 Money
  49. yield 0.5 WL
  50. end
  51. is always: 1
  52. *Stilts
  53. name: Stilts
  54. desc: Raises your building up by 2 inches per stilt.
  55. cost:5 Money
  56. Upgrades
  57. *BetterDrainage
  58. name: BD
  59. desc: Better Drainage<//>Lowers water level by 2 inches every second.
  60. cost:6 Money
  61. passive:lose 2 WL
Add Comment
Please, Sign In to add comment