Advertisement
Guest User

Untitled

a guest
Jan 17th, 2020
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. Let's make a game!
  2.   name:LightSimulator
  3.   desc:Look at the sun! Don't, though. Seriously.
  4.   updated:1/10/20
  5.   version:2.3
  6.  
  7. Resources
  8.   *money
  9.     name:Money
  10.     desc:It be money
  11.  
  12.   *lightBundle
  13.     name:Light Bundle
  14.     desc:Worth more than any amount of money
  15.  
  16. Buttons
  17.   *theSun
  18.     name:The Sun
  19.     desc:A GIANT FIREBALL! MWAH HA HA!
  20.     on click:yield 1 money
  21.     show clicks
  22.    
  23. CSS
  24.     #game
  25.     {
  26.         background:cornflowerblue;
  27.         font-family:"Times New Roman" ,Times,serif;
  28.         color:black;
  29.     }
  30.  
  31. Layout
  32.     use default
  33.  
  34. Buildings
  35.  
  36.   *solarPanel
  37.     name:Solar Panel
  38.     desc:Takes energy from the Sun and turns it into money.
  39.     on tick:yield 1 money
  40.     cost:10 money
  41.  
  42.   *mrMonopoly
  43.     name:Mr. Monopoly
  44.     desc:That MONAY!
  45.     on tick:yield 5 money
  46.     cost:50 money
  47.  
  48.   *satellite
  49.     name:Satellite
  50.     desc:A solar panel made for space!
  51.     on tick:yield 50 money
  52.     cost:10000 money
  53.  
  54.   *bacon
  55.     name:Bacon
  56.     desc:Just 'cuz
  57.     on tick:yield 1000 money
  58.     cost:100000 money
  59.  
  60.   *neutronStar
  61.     name:Neutron Star
  62.     desc:SO... MUCH... LIGHT!!!
  63.     on tick:yield 1 lightBundle
  64.     cost:100000000 money
  65.  
  66.   *angelFlashlight
  67.     name:Angel Flashlight
  68.     desc:The light of the angels.
  69.     on tick:yield 100 lightBundle
  70.     cost:1000 lightBundle
  71.  
  72.   cost increase: 120%
  73.  
  74. Achievements
  75.   *1click
  76.     name:OW!
  77.     desc:click the Sun.
  78.     req:1 theSun:clicks
  79.  
  80.   *10clicks
  81.     name:cli- click
  82.     desc:click the Sun 10 times
  83.     req:10 theSun clicks
  84.  
  85.   *100clicks
  86.     name:click click click click click...
  87.     desc:click the Sun 100 times
  88.     req:100 theSun:clicks
  89.  
  90.   *1000clicks
  91.     name:clickclickclickclickclickclickclick...
  92.     desc:click the Sun 1000 times
  93.     req:1000 theSun:clicks
  94.  
  95.  
  96. Shinies
  97.   *solarEclipse
  98.     name:Solar Eclipse
  99.     on click:yield (random(10,100)) money
  100.     movement:anywhere fade bounce moveRandom
  101.     frequency:300
  102.  
  103.   frequency variation:300
  104.  
  105. Upgrades
  106.   *anotherSun
  107.     name:Another Sun
  108.     desc:Another Sun! Look!
  109.     Passive:multiply yield of money by 1.1
  110.     cost:100 money
  111.  
  112.   *insurance
  113.     name:Insurance
  114.     desc:For when things break.
  115.     Passive:multiply yield of money by 1.1
  116.     cost:500 money
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement