Advertisement
EdmundC

Pi Clicker V.01

Jul 4th, 2024
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.10 KB | Gaming | 0 0
  1. Let's Make a Game!
  2. //pi clicker!
  3. name:Pi Clicker!
  4. author:Edmund C.
  5. desc:This is Pi Clicker. You click pi.
  6. created:7/4/24
  7. version:0.1
  8. Settings
  9. tiling background:PiBG.png
  10. building cost increase:100.314159%
  11. building cost refund:31.415926%
  12. CSS
  13.  #game.filtersOn .thing.cantAfford.notOwned
  14.  {
  15.    filter:blur(3px);
  16.  }
  17. Layout
  18.  *resources
  19.    contains:Resources
  20.    header:Pis
  21.  *buildings
  22.    contains:Buildings
  23.    header:Buildings/Helpers
  24.    tooltip origin:left
  25.  *unlockables
  26.    contains:Upgrades, Achievements
  27.    names:hide
  28. *boxKey
  29. contains:Upgrades, Buildings
  30. header:UPGRADES BUILDINGS
  31. names:show
  32. icons:show
  33. costs:show
  34. ps:show
  35. *boxKey
  36. contains:Resources
  37. header:PIS
  38. names:show
  39. icons:show
  40. costs:show
  41. ps:show
  42. -place building here-
  43. *PiClick
  44.  name:The Pi
  45.  desc:Click.
  46.  on click:yield 1 Pi
  47. *pi
  48.  name:Pi
  49.  desc:Buy stuff with Pi!
  50. show earned
  51. (thingKey:ps)
  52. *coder
  53.  name:Coder
  54.  desc:Calculates Pi at a rate of 1 pi per second!
  55.  on tick:yield 1 Pi
  56.  cost:30 Pi
  57.  cost increase:100.31415%
  58.  cost refund:90%
  59. *geometrist
  60.  name:Geometrist
  61.  desc:Calculates Pi at a rate of 3 pi per second!
  62.  on tick:yield 3 Pi
  63.  cost:100 Pi
  64.  cost increase:100.31415%
  65.  cost refund:90%
  66. *ai
  67.  name:AI
  68.  desc:Calculates Pi at a rate of 7 pi per second! Half of the time...
  69.  on tick:yield 3.5 Pi
  70.  cost:200 Pi
  71.  cost increase:100.31415%
  72.  cost refund:90%
  73. *prorobot
  74.  name:Programmed Robot
  75.  desc:Calculates Pi at a rate of 31 pi per second!
  76.  on tick:yield 31 Pi
  77.  cost:800 Pi
  78.  cost increase:100.31415%
  79.  cost refund:90
  80. *piwizard
  81.  name:Pi Wizard
  82.  desc:Calculates Pi at a rate of 300 pi per second!
  83.  on tick:yield 300 Pi
  84.  cost:2000 Pi
  85.  cost increase:100.31415%
  86.  cost refund:90%
  87. *chromebook
  88.  name:Chromebook
  89.  desc:Upgrades 1.5x Coder, Geometrist
  90.  passive:multiply yield of coder, geometrist by 1.5
  91.  cost:150 Pi
  92. *macbook
  93.  name:MacBook
  94.  desc:Upgrades 2x
  95.  passive:multiply yield of coder, geometrist, ai, prorobot by 2
  96.  cost:400 Pi
  97. *piboost
  98.  name:Pi Boost
  99.  on click:yield (random(100,1000)) Pi
  100.  movement:anywhere fade bounce moveRandom
  101.  frequency:120
  102.  
  103.  
  104.  
  105.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement