IronDizaster

Untitled

Dec 11th, 2019
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.17 KB | None | 0 0
  1. Let's make a game!
  2. name:Tycoon Simulator
  3. by:IronDizaster
  4. forum post:money maker
  5. desc:You live in a world where anything is possible. Start as a homeless man, climb your way up the social ladder & make millions!
  6.  
  7.  
  8. Settings
  9. stylesheet:stuff/bigBlue.css
  10. background:https://imgur.com/d8vcvlj.jpg
  11.  
  12. CSS
  13.  
  14. #thing-icon-5
  15. {
  16. height:64px;
  17. width:64px;
  18. }
  19.  
  20.  
  21.  
  22. #thing-icon-3
  23. {
  24. height:64px;
  25. width:64px;
  26. }
  27.  
  28. #thing-icon-6
  29. {
  30. height:64px;
  31. width:64px;
  32. }
  33.  
  34. #thing-icon-7
  35. {
  36. height:64px;
  37. width:64px;
  38. }
  39.  
  40. #thing-7
  41. {
  42. background:rgb(191, 128, 64)
  43. }
  44.  
  45. #thing-icon-8
  46. {
  47. height:64px;
  48. width:64px;
  49. }
  50.  
  51. #thing-8
  52. {
  53. background:rgb(191, 128, 64)
  54. }
  55.  
  56. #thing-6
  57. {
  58. border:5px ridge #9e9e9e;
  59. background:#c4c4c4;
  60. }
  61.  
  62. #thing-5
  63. {
  64. background:rgb(191, 128, 64)
  65. }
  66.  
  67.  
  68.  
  69. #thing-3
  70. {
  71. background:rgb(191, 128, 64)
  72. }
  73.  
  74. .thing
  75. {
  76. border-radius:8px;
  77. }
  78.  
  79. .building
  80. {
  81. border-top-left-radius:45px;
  82. border-bottom-left-radius:45px;
  83. border-bottom-right-radius:0px;
  84. border-top-right-radius:0px;
  85. display:block;
  86. margin-right:0px;
  87. font-size:12px;
  88. border:5px ridge #996633;
  89. border-top:5px ridge #996633;
  90. border-right:5px ridge #996633;
  91. border-bottom:5px ridge #996633;
  92. border-left:5px ridge #996633;
  93. }
  94.  
  95. .box-header
  96. {
  97. background:#bf8040;
  98. border:5px ridge #996633;
  99. border-top-left-radius:0px;
  100. border-bottom-left-radius:0px;
  101. border-bottom-right-radius:0px;
  102. border-top-right-radius:0px;
  103. }
  104.  
  105.  
  106.  
  107. .box-bit{
  108. border:5px ridge #996633;
  109. background:#bf8040;
  110. border-radius:5px;
  111. }
  112.  
  113.  
  114.  
  115. .wobble2
  116. {
  117. animation:wobble2 0.5s;
  118. }
  119. @keyframes wobble2
  120. {
  121. 0% {transform:translateZ(0) scale(1.05);}
  122. 20% {transform:translateZ(0) scale(0.95);}
  123. 40% {transform:translateZ(0) scale(1.05);}
  124. 60% {transform:translateZ(0) scale(0.975);}
  125. 80% {transform:translateZ(0) scale(1.025);}
  126. 99% {transform:scale(1,1)}
  127. 100% {}
  128. }
  129.  
  130. #box-upgrades, #box-buildings
  131. {
  132. background-image:url("https://imgur.com/bBNrXIT.jpg");
  133. border:5px ridge #996633;
  134. box-shadow:0px 0px 4px rgba(0,0,0,0.2),1px 1px 2px rgba(0,0,0,0.5),0px 0px 16px rgba(0,0,0,0.5) inset;
  135. }
  136.  
  137. .res
  138. {
  139. background:#bf8040;
  140. border:5px ridge #996633;
  141. }
  142.  
  143. .upgrade
  144. {
  145. background:#bf8040;
  146. border:5px ridge #996633;
  147.  
  148. }
  149.  
  150. .upgrade.cantAfford:hover
  151. {
  152. box-shadow:0px 0px 16px #d4a06c;
  153. }
  154.  
  155. .thing:hover,.thing.lit
  156. {
  157. background:#d4a06c;
  158. }
  159.  
  160. .upgrade.cantAfford
  161. {
  162. box-shadow:0px 0px 16px #bf8040; // #c7c7c7
  163. border-radius:8px;
  164. }
  165.  
  166. .upgrade.owned,.achiev.owned
  167. {
  168. background:#bf8040;
  169. }
  170.  
  171. .upgrade:hover
  172. {
  173. background:#d4a06c;
  174. }
  175.  
  176. .building:hover
  177. {
  178. background:#d4a06c;
  179. }
  180.  
  181. Layout
  182. *main
  183. contains:res, buttons
  184. *res
  185. contains:Resources
  186. class:fullWidth
  187. ps:hide
  188. *buttons
  189. contains:Buttons
  190. *store
  191. contains:buildings, upgrades
  192. *buildings
  193. contains:BulkDisplay, Buildings
  194. header:Buildings
  195. tooltip origin:left
  196. *upgrades
  197. contains:Upgrades, ownedUpgrades
  198. header:Available Upgrades
  199. costs:hide
  200. names:hide
  201.  
  202. *ownedUpgrades
  203. contains:tag:ownedUpgrade
  204. header:Owned Upgrades
  205. costs:hide
  206. names:hide
  207.  
  208.  
  209.  
  210. Resources
  211.  
  212. *pennies
  213. name:Pennies
  214. hidden when 0
  215. icon:https://imgur.com/2HQzWcB.png
  216.  
  217. *cash
  218. name:Cash
  219. hidden when 0
  220. icon:https://imgur.com/SDSwY8D.png
  221.  
  222. *quarter
  223. name:Quarter
  224. icon:https://imgur.com/eByiFmv.png
  225. always hidden
  226.  
  227. *beggingSignPS
  228. hidden
  229.  
  230. *beggingSignTier2PS
  231. hidden
  232.  
  233. *beggarPS
  234. hidden
  235.  
  236.  
  237.  
  238. Buildings
  239.  
  240.  
  241.  
  242.  
  243. *HIDDEN1
  244. name:???
  245. text:???
  246. desc:<b>???</b>
  247. cost:1 cash
  248. icon:https://imgur.com/4hDH4Yi.png
  249.  
  250. *gameSystem
  251. start with:1
  252. on tick:if (pennies>49) hide HIDDEN1
  253. on tick:if (pennies>99) yield 1*pennies/100 cash
  254. on tick:if (pennies>99) lose 99999999999999999999999999999999999999999999999999999999999999999999999999 pennies
  255. on tick:if (pennies:earned>499) hide hireBeggarHIDDEN
  256. on tick:if (quarter>0) yield 25*quarter pennies
  257. on tick:if (quarter>0) lose 9999999999999999999999999999999999999 quarter
  258. on tick:if (beggingSign>19) grant (1*beggingSign) beggingSignTier2
  259. on tick:if (beggingSign>19) hide beggingSign
  260. on tick:if (beggingSign>19) show beggingSignTier2
  261. on tick:if (beggingSign>19) lose 99999999999999999999999999999999999999999999999999999999999 beggingSign
  262. hidden
  263.  
  264.  
  265. *beggingSign
  266. name:Begging Sign|Begging Signs
  267. desc:A begging sign to attract donations.<//></>Base Effect:</>Produces <b>0.1</b> pennies per second<//></><q><b>1</b> Begging Sign produces around <b>[((beggingSignPS:ps)/beggingSign)]</b> pennies/second<//>You have [?(this=0)|<b>0</b> Begging Signs.|<b>[this]</b> Bubble Machines] producing around <b>[beggingSignPS:ps]</b> pennies/second<b><q><#69340f>Tier 1</#></b><q>Requires [20-this] more of this building for <b><#cccccc>Tier 2</#>
  268. on tick:yield 0.1 pennies
  269. on tick:yield 0.1 beggingSignPS
  270. cost:1 cash
  271. icon:https://imgur.com/JmvgE5h.png
  272. req:50 pennies:earned
  273.  
  274. *beggingSignTier2
  275. name:Begging Sign|Begging Signs
  276. desc:A fancy begging sign to attract donations.<//></>Base Effect:</>Produces <b>0.3</b> pennies per second</>Chance to produce <b>0.1</b> cash - <b><#39eb02>7.77%</#></b> (stacks)<//></><q><b><#cccccc>Tier 2</#></b></><q>Requires [40-this] more of this building for <b><#fcc200>Tier 3</#></b>
  277. on tick:yield 0.3 pennies
  278. on tick:if (chance(7.77%)) yield 0.1 cash
  279. cost:1 cash
  280. icon:https://imgur.com/gWJcAH4.png
  281. hidden
  282.  
  283.  
  284. *hireBeggarHIDDEN
  285. name:???
  286. text:???
  287. desc:???
  288. cost:5 cash
  289. req:300 pennies:earned
  290. icon:https://imgur.com/0aWTraq.png
  291.  
  292. *hireBeggar
  293. name:Hire Beggar
  294. desc:A nice beggar to beg for you.<//></>Base Effect:</>Produces <b>0.5</b> pennies per second</>Low chance to produce <b>0.25</b> cash - <b><#39eb02>2%</#></b> (stacks)
  295. cost:5 cash
  296. on tick:yield 0.5 pennies
  297. on tick:if (chance(2%)) yield 0.25 cash
  298. icon:https://imgur.com/ZnFuhS4.png
  299. req:5 cash:earned
  300.  
  301.  
  302.  
  303.  
  304.  
  305. Buttons
  306.  
  307.  
  308.  
  309.  
  310.  
  311.  
  312. *collectPennies
  313.  
  314. Name:Money Finder
  315. desc:Click to find pennies!
  316. class:bigButton hasFlares
  317. tooltip origin:bottom
  318. icon:https://i.imgur.com/crMu6h9.png
  319. on click:anim wobble2
  320. on click:yield 100 pennies
  321. on click:
  322. if (have luckyClover)
  323. if (chance(1%))
  324. yield 1 quarter
  325. else
  326. if (have ambidextrous)
  327. if (chance(2%))
  328. yield 1 quarter
  329.  
  330. end
  331. end
  332. end
  333. end
  334. end
  335.  
  336.  
  337. Upgrades
  338.  
  339. *luckyClover
  340. Name:4 Leaf Clover
  341. desc:</><.>You earn <b>two times</b> more pennies per click</><.>Allows the collection of <b>Quarters</b> - <b><#39eb02>1%</#></b></b><q>"Joy! A four-leaf penny!"
  342. cost:5 cash
  343. icon:https://imgur.com/vltXXlU.png
  344. passive:multiply pennies yield of collectPennies by 2
  345. on earn:hide this
  346. on earn:yield luckyCloverOWNED
  347. req:200 pennies:earned
  348.  
  349.  
  350. *luckyCloverOWNED
  351. Name:4 Leaf Clover
  352. desc:</><.>You earn <b>two times</b> more pennies per click</><.>Allows the collection of <b>Quarters</b> - <b><#39eb02>1%</#></b><q>"Joy! A four-leaf penny!"
  353. icon:https://imgur.com/vltXXlU.png
  354. req:have luckyClover
  355. tag:ownedUpgrade
  356.  
  357.  
  358. *ambidextrous
  359. name:Ambidextrous
  360. desc:</><.>You earn <b>two times</b> more pennies per click</><.>Highers the chance of getting a <b>Quarter</b> - <b><#39eb02>2%</#></b><q>"With a rare mutation, you are now both left handed and right handed! Yay?"
  361. icon:https://imgur.com/9Z0L1Go.png
  362. cost:50 cash
  363. passive:multiply pennies yield of collectPennies by 2
  364. on earn:hide this
  365. on earn:yield ambidextrousOWNED
  366. req:1250 pennies:earned
  367.  
  368.  
  369. *ambidextrousOWNED
  370. name:Ambidextrous
  371. desc:</><.>You earn <b>two times</b> more pennies per click</><.>Highers the chance of getting a <b>Quarter</b> - <b><#39eb02>2%</#></b><q>"With a rare mutation, you are now both left handed and right handed! Yay?"
  372. req:have ambidextrous
  373. tag:ownedUpgrade
  374. icon:https://imgur.com/9Z0L1Go.png
  375.  
  376.  
  377. *charisma
  378. name:Charisma
  379. desc:</><.>Begging signs are <b>fifty percent</b> more efficient<q>"Spare change?"
  380. icon:https://imgur.com/3ZOm0Y4.png
  381. passive:multiply pennies yield of beggingSign by 1.5
  382. passive:multiply pennies yield of beggingSignTier2 by 1.5
  383. cost:25 cash
  384. on earn:yield charismaOWNED
  385. req:beggingSign>=10 or beggingSignTier2>=10
  386. on earn:hide this
  387.  
  388. *charismaOWNED
  389. name:Charisma
  390. desc:</><.>Begging signs are <b>fifty percent</b> more efficient<q>"Spare change?"
  391. icon:https://imgur.com/3ZOm0Y4.png
  392. tag:ownedUpgrade
  393. req:have charisma
Advertisement
Add Comment
Please, Sign In to add comment