Advertisement
Chemmyxd

Untitled

Jan 10th, 2021 (edited)
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.55 KB | None | 0 0
  1. Let's make a game!
  2.     name:Space Clicker
  3.     by:Coley
  4.     desc:Amass particles and turn your little rock into a planetary system, solar system, galaxy, and beyond.
  5.     created:1/10/2021
  6.     updated:1/10/2021
  7.     version:0.1
  8.  
  9. Settings
  10.     background:https://hips.hearstapps.com/hmg-prod.s3.amazonaws.com/images/milky-way-over-the-sky-view-from-the-southern-royalty-free-image-1594935629.jpg
  11.     building cost increase: 111%
  12.     building cost refund: 55%
  13.  
  14. Layout
  15.     use default
  16.  
  17. Buttons
  18.     *particlebutton
  19.         name:make a planet!
  20.         desc:Click the rock to amass particles!
  21.         on click:anim icon wobble
  22.         on click:yield 1 particle
  23.  
  24. Resources
  25.     *particle|particles
  26.         name:Particle|particles
  27.         desc:These are your particles, you can form them to make new methods of gaining more mass!
  28.         icon:icons x, x
  29.         class:noBackground
  30.         show earned
  31.  
  32. Buildings
  33.     *TEMPLATE
  34.         on click:anim glow
  35.  
  36.     *Dust
  37.         name:Dust
  38.         desc:you are dust. this will help you become even more dust. <//><b>Effect:</b><.>Produces 1 particle every 10 seconds.
  39.         icon:icons x, x
  40.         cost:10 particles
  41.         on tick:yield 0.1 particles
  42.         unlocked
  43.  
  44.     *Rock|Rocks
  45.         name:rock|rocks
  46.         desc:Rocks have a bit more mass than dust, so they also have a bit more gravity, which attracts more rocks. <//><b>Effect:</b><.>Produces 1 particle every 2 seconds.
  47.         icon:icons x, x
  48.         cost:100 particles
  49.         on tick:yield 0.5 particles
  50.         req:100 particles:earned
  51.  
  52.     *Ice
  53.         name:Ice
  54.         desc:you collected solid H20 from a celetial neighbor. nice. The more matter the merrier. <//><b>Effect:</b><.>Produces 5 particles per second.
  55.         icon:icons x, x
  56.         cost:600 particles
  57.         on tick:yield 5 particles
  58.         req:600 particles:earned
  59.  
  60.     *Meteoroid|Meteoroids
  61.         name:Meteoroid|Meteoroids
  62.         desc:You are now large enough for astronomers to label you as a meteoroid. You can only go up from here. <//><b>Effect:</b><.>Produces 12 particles per second.
  63.         icon:icons x, x
  64.         cost:4000 particles
  65.         on tick:yield 12 particles
  66.         req:4000 particles:earned
  67.    
  68.     *Comet|Comets
  69.         name:comet|comets
  70.         desc:Your ice begins melting and you form a tail. <//><b>Effect:</b><.>Produces 90 particles per second.
  71.         Icon:icons x, x
  72.         cost:20000 particles
  73.         on tick:yield 90 particles
  74.         req:20000 particles
  75.        
  76.     *Asteroid|Asteroids
  77.         name:Asteroid|Asteroids
  78.         desc:You are now large enough to be considered an asteroid by modern metrics of space debris measurment. <//><b>Effect:</b><.>Produces 300 particles per second.
  79.         icon:icons x, x
  80.         cost:200000 particles
  81.         on tick:yield 300 particles
  82.         req:200000 particles
  83.        
  84. Upgrades
  85.     *TEMPLATE
  86.         on click:anim glow
  87.     //chemistry upgrades
  88.  
  89.     *Clumping
  90.         name:Clumping
  91.         desc:the cumulated gravity of all your little particles are now a clump. you will begin attracting more little particles exponentially. <//><b>Effect:</b><.>+1 particle/click
  92.         icon:icons x, x
  93.         cost:100 particles
  94.         passive:increase particle yield of particlebutton by 1
  95.         req:10 particles:earned
  96.  
  97.     *Congregation
  98.         name:congregation
  99.         desc:you are a congregation of rocks, metal, ice, dust and chemistry. <//><b>Effect:</b><.>+1 particle/click
  100.         icon:icons x, x
  101.         cost:200 Particles
  102.         passive:increase particle yield of particlebutton by 1
  103.         req:50 particles:earned
  104.    
  105.     *Collection
  106.         name:collection
  107.         desc:Your contents are pressed tightly together.
  108.         icon:icons x, x
  109.         cost:500 particles
  110.         passive:increase particle yield of particlebutton by 1.5
  111.         req:100 particles:earned
  112.  
  113. Achievements
  114.     *TEMPLATE
  115.         on click:anim glow
  116.     *Spaceacheiv1
  117.         name:handful of molecules
  118.         desc:have <b>1</b> particle.
  119.         req:1 particle
  120.         icon:icons x, x
  121.        
  122.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement