IronDizaster

Untitled

Aug 4th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. Let's make a game!
  2. name:Lemonade Tycoon
  3. by:IronDizaster
  4. forum post:Lemonade Tycoon
  5. desc:One day, life gave you lemons. With those lemons, you decided to found a lemonade company and make tons of <b>$$$!</b>
  6.  
  7. Settings
  8.  
  9. tiling background:https://imgur.com/bBNrXIT.png
  10. stylesheet:stuff/bigBlue.css
  11.  
  12.  
  13. *main
  14. contains:res, buttons
  15. *res
  16. contains:Resources
  17. class:fullWidth
  18. ps:hide
  19. *buttons
  20. contains:Buttons
  21. *store
  22. contains:buildings, upgrades
  23. *buildings
  24. contains:BulkDisplay, Buildings
  25. header:Buildings
  26. tooltip origin:left
  27. *upgrades
  28. contains:Upgrades
  29. header:Upgrades
  30. costs:hide
  31. names:hide
  32.  
  33.  
  34.  
  35.  
  36.  
  37. Buttons
  38.  
  39. *lemonadeGain
  40.  
  41. name:Make Lemonade!
  42. desc:Click to make lemonade!<//></><.>Needs 15 <b><#ffef08>lemons</#></b> to produce 1 <b><#ffef08>lemonade</#></b>
  43. class:bigButton hasFlares
  44. tooltip origin:bottom
  45.  
  46. on click:if (lemons>15 and lemonTree>=1) yield 1 lemonade
  47. on click:if (lemons>15) lose 15 lemons
  48.  
  49. *sellLemonade
  50. name:Sell Lemonade
  51. desc:Sell lemonade to your customers!<//><.>Requires 1 customer
  52. on click:if (customers>1) lose 1 costumers
  53. on click:if (customers>1) yield 10 cash
  54.  
  55.  
  56.  
  57. Resources
  58. *cash
  59. Name:Cash
  60. icon:https://imgur.com/SDSwY8D.png
  61. start with:100
  62.  
  63. *lemons
  64. name:Lemon|Lemons
  65. text:Lemons: [this]
  66. start with:1
  67. icon:https://imgur.com/7JXvNKv.png
  68.  
  69.  
  70. *lemonade
  71. Name:Lemonade
  72. hidden when 0
  73.  
  74. *customers
  75. name:Customers
  76. text:Customers: [this]
  77.  
  78.  
  79.  
  80.  
  81. Buildings
  82.  
  83. *lemonTree
  84. Name:Lemon Tree
  85. desc:<//>Plain ol' lemon tree.<//><.>Grows 1 <b><#ffef08>lemon</#></b> every <b>10</b> seconds.
  86. on tick:yield 0.1 lemons
  87. cost:50 cash
  88. cost:1 lemons
  89.  
  90. *customersGenerator
  91. on tick:if (chance(50%)) yield 0.8 customers
  92. on tick:if (chance(60%)) lose 0.8 customers
  93. start with:1
  94. always hidden
  95.  
  96.  
  97. Upgrades
Add Comment
Please, Sign In to add comment