Advertisement
hohoho20

Miner Tycoon

Oct 6th, 2020 (edited)
2,169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
IDL 2.30 KB | None | 0 0
  1. Let’s make a game!
  2.    name:Miner Tycoon
  3.    desc:Take control of a mining industry and mine for gold!
  4.  
  5. Layout
  6.    *resources
  7.       header:Resources:
  8.       contains:resources
  9.  
  10.    *upgrades
  11.       header:Upgrade your industry
  12.       contains:helper1, pickgrade
  13.  
  14.    *mines
  15.       header:Mines:
  16.       contains:mine1, mine2, mine3, mine4
  17.  
  18.    *GoldRushIndicator
  19.       contains:shinies
  20. Resources
  21.    *ore
  22.       name:Ore
  23.       show earned
  24.       start with:0
  25.       lit
  26.       desc:I dig it!
  27.  
  28.    *coins
  29.       name:Coins
  30.       show earned
  31.       start with:100
  32.       lit
  33.       desc:The actual currency in the game
  34. Buildings
  35.    *pickgrade
  36.       name:Upgrade Pick
  37.       costs:20 coins
  38.       lit
  39.       cost increase:50%
  40.       passive:multiply yield of helper1 by 7%
  41.       req:1 mine1
  42.  
  43.    *helper1
  44.       name:Miner
  45.       costs:10 coins
  46.       on tick:yield 1 ore
  47.       cost increase:15%
  48.       lit
  49.       show earned
  50.       desc:A miner to hire and help you
  51.       req:1 mine1
  52.  
  53.   *mine1
  54.       name:Coal Mine
  55.       cost increase:15%
  56.       costs:50 coins
  57.       lit
  58.       desc:What makes your money
  59.       passive:multiply yield of helper1 by 15%
  60.       show earned
  61.  
  62.    *mine2
  63.       name:Copper Mine
  64.       cost:100 coins
  65.       lit
  66.       desc:Dig deeper!
  67.       passive:multiply yield of helper1 by 30%
  68.       show earned
  69.       cost increase:15%7%
  70.       req:1 mine1
  71.  
  72.    *mine3
  73.       name:Gold Mine
  74.       cost:200 coins
  75.       lit
  76.       desc:You’ve struck gold!
  77.       show earned
  78.       cost increase:15%
  79.       passive:multiply yield of helper1 by 45%7%
  80.       req:1 mine1
  81.  
  82.    *mine4
  83.       name:Diamond Mine
  84.       cost:400 coins
  85.       show earned
  86.       lit
  87.       desc:This’ll make you rich
  88.       cost increase:15%
  89.       passive:multiply yield of helper1 by 65%7%
  90.       req:1 mine1
  91.  
  92. Achievements
  93.    *ore1
  94.       name:Starting business
  95.       desc:Mine your first ore
  96.       req:1 ore
  97.  
  98.    *coin1
  99.       name:My First Cent
  100.       desc:Earn your first coin
  101.       req:1 coins
  102.  
  103. Shinies
  104.    *goldrush
  105.       name:GOLD RUSH!!!
  106.       desc:NO TIME FOR DESCRIPTIONS!! JUST MINE AS MUCH AS YOU CAN!!
  107.       frequency:180
  108.       frequency variation:120
  109.       duration:30
  110.       no click
  111.       movement:onBox:GoldRushIndicator growShrink
  112.       passive:multiply yield of helper1 by 235%7%
  113.       req:1 mine1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement