Advertisement
Captain_Cookie

Test

Nov 12th, 2018
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. Let's make a game!
  2. name:Test
  3. by:Morgan Solberg
  4. desc:This is just a test.
  5.  
  6.  
  7.  
  8. Settings
  9. background:
  10. building cost increase:100%
  11. building cost refund:50%
  12.  
  13. Layout
  14. use default
  15.  
  16.  
  17.  
  18. Buttons
  19. *peasantButton
  20. name:Peasant
  21. desc:Click me to get peasants.
  22. on click:yield 1 peasant
  23.  
  24. *rationButton
  25. name:Ration
  26. desc:Clcik me to get rations.
  27. on click:yield 1 ration
  28.  
  29. *logButton
  30. name:Log
  31. desc:Click me to get logs.
  32. on click:yield 1 log
  33.  
  34. *stoneButton
  35. name:Stone
  36. desc:Click me to get stone.
  37. on click:if (have woodenPick) yield 1 stone
  38.  
  39.  
  40.  
  41. Resources
  42. *peasant
  43. name:Peasant
  44. desc:An unassigned worker.
  45. on tick:if (have peasant) lose 1 ration
  46.  
  47. *ration
  48. name:Ration
  49. desc:Required to keep your people alive.
  50.  
  51. *log
  52. name:Log
  53. desc:Good old logs.
  54.  
  55. *stone
  56. name:Stone
  57. desc:It's just regular stone.
  58.  
  59.  
  60.  
  61. Upgrades
  62. *resFarmer
  63. name:Farmer
  64. desc:Unlocks farmer.
  65. cost:25 ration
  66.  
  67. *resLumberjack
  68. name:Lumberjack
  69. desc:Unlocks lumberjack.
  70. cost:25 log
  71.  
  72. *woodenPick
  73. Name:Wooden pickaxe
  74. desc:Unlocks stone.
  75. cost:125 log
  76.  
  77. *stoneAxe
  78. name:Stone axe
  79. desc:Doubles the amount of logs you gather from clicking.
  80. cost:25 log, 100 stone
  81. passive:multiply yield of logButton by 2
  82.  
  83. *resMiner
  84. name:Miner
  85. desc:Unlocks miner.
  86. cost:25 stone
  87.  
  88. *stonePick
  89. name:Stone pickaxe
  90. desc:Doubles the amount of stone your gather from clicking.
  91. cost:25 log, 100 stone
  92. passive:multiply yield of stoneButton by 2
  93. req:have woodenPick
  94.  
  95.  
  96.  
  97. Buildings
  98. *farmer
  99. name:Farmer
  100. desc:Generates one ration every two seconds.
  101. cost:1 peasant
  102. on tick:yield 0.5 ration
  103. req:resFarmer
  104.  
  105. *lumberjack
  106. name:Lumberjack
  107. desc:Generates one log every two seconds.
  108. cost:1 peasant
  109. on tick:yield 0.5 log
  110. req:resLumberjack
  111.  
  112. *miner
  113. name:Miner
  114. desc:Generates one stone every two seconds.
  115. cost:1 peasant
  116. on tick:yield 0.5 stone
  117. req:resMiner
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement