Advertisement
ZomOne

Untitled

Mar 18th, 2018
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. Let's make a game!
  2. name:Coin Clicker
  3. by:KarlGud
  4. desc:This is a game were you make money *Not real money*
  5. created:18/03/2018
  6. updated:18/03/2018
  7. version:1
  8.  
  9. Settings
  10. background:43569hd.jpg
  11. building cost increase:110%
  12. building cost refund:60%
  13. spritesheet:icons, 48 by 48,coin.png
  14.  
  15. CSS
  16. @font-face
  17. {
  18. font-family:webpixel bitmap_black-italicimport;
  19. src:url(webpixel bitmap_black-italic.otf);
  20. }
  21.  
  22. #game
  23. {
  24. font-family:webpixel bitmap_black-italicimport;
  25. color:white;
  26. }
  27.  
  28. #game.filtersOn .thing.cantAfford.notOwned
  29. {
  30. filter:blur(3px);
  31. }
  32.  
  33. .thing-icon,.particle
  34. {
  35. width:64px;
  36. height:64px;
  37. }
  38.  
  39. .thing
  40. {
  41. text-shadow:1px 1px 0 red;
  42. }
  43.  
  44. Layout
  45. *achievs
  46. in:main
  47. contains:Achievements
  48. *main
  49. contains:res, buttons
  50. *res
  51. contains:Resources
  52. class:fullWidth
  53. *buttons
  54. contains:Buttons
  55. *store
  56. contains:buildings, upgrades
  57. *buildings
  58. contains:BulkDisplay, Buildings
  59. header:Buildings
  60. tooltip origin:left
  61. *upgrades
  62. contains:Upgrades
  63. header:Upgrades
  64. costs:hide
  65. names:hide
  66.  
  67. Buttons
  68. *coinButton
  69. name:Make coins
  70. desc:Click this coin to get more coins!
  71. on click:anim icon wobble
  72. on click:yield 1 coin
  73. icon:coin.png
  74. no text
  75. class:bigButton hasFlares
  76. icon class:shadowed
  77. tooltip origin:bottom
  78. tooltip class:red
  79. show earned
  80.  
  81. Resources
  82. *Coin|Coins
  83. name:Coin|Coins
  84. desc:These are your Coins. You can use them to purchase things. Your goal is to have as many coins as possible!
  85. icon:icons[0,0]
  86. class:noBackground
  87. show earned
  88.  
  89. Buildings
  90. *CoinUpgrade1
  91. name:Birthday Money
  92. desc:This is your Birthday Money
  93. on tick:yield 0.5 coins
  94. (thingKey)
  95.  
  96. Shinies
  97. *BitCoin
  98. on click:log Woop
  99. movement:onRight moveLeft fade bounce:0.05
  100. frequency:5
  101. frequency variation:30
  102. icon:Bit coin.png
  103. class:bigButton
  104. on click:
  105. $boost=1000000
  106.  
  107. Achievements
  108. *10clicks
  109. name:Wowie! Ten whole clicks!
  110. desc:You've clicked the big coin 10 times. Well done. Well done indeed.
  111. req:10 bigButton:clicks
  112. *50clicks
  113. name:OMG! 50 Clicks!
  114. desc:You clicked the big coin 50 times. Thats better that 10 clicks.
  115. req:50 bigButton:clicks
  116. *100clicks
  117. name:100 clicks. nice
  118. req:100 bigButton:clicks
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement