Advertisement
Funn80

Josiah Country Clicker

Oct 16th, 2019
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Let's make a game!
  2. name:Country Clicker
  3. by:Josiah
  4. desc:Grow your country up from only a few miles to continents bigger!!
  5. created:10/14/2019
  6. updated:10/16/2019
  7. version:1.2
  8.  
  9. Settings
  10. background:stuff/https://www.ezega.com/userfiles/Cape_Town,%20SA.jpg
  11. building cost increase:115%
  12. building cost refund:75%
  13. spritesheet:icons, 48 by 48, stuff/http://pngimg.com/uploads/house/house_PNG63.png
  14. stylesheet:stuff/bigBlue.css
  15.  
  16. Layout
  17. use default
  18. Buttons
  19. *houseButton
  20. name:Make a house
  21. desc:Click this nice house to get more houses!
  22. on click:anim icon wobble
  23. on click:yield 1 house
  24. on click:if (have goldenTouch and chance(1%)) yield 1 goldenHouse
  25. icon:stuff/http://pngimg.com/uploads/house/house_PNG63.png
  26. no text
  27. class:bigButton hasFlares
  28. icon class:shadowed
  29. tooltip origin:bottom
  30. tooltip class:green
  31.  
  32. Resources
  33. *house|houses
  34. name:House|Houses
  35. desc:These are your houses. You can use them to purchase things. Your goal is to have the biggest country ever starting with Houses.
  36. icon:icons[0,0]
  37. class:noBackground
  38. show earned
  39.  
  40. *goldenHouse|goldenHouses
  41. name:Golden house|Golden houses
  42. desc:These shiny houses are terribly rare to build, and terribly good for your country.
  43. icon:icons[0,1]
  44. class:noBackground
  45. hidden when 0
  46. Shinies
  47. *luckyRealtor
  48. on click:log Woop
  49. movement:onRight moveLeft fade bounce:0.05
  50. frequency:60
  51. frequency variation:30
  52. icon:stuff/https://thumbs.dreamstime.com/z/real-estate-agent-cartoon-vector-illustration-69940272.jpg
  53. class:bigButton
  54. on click:
  55. $boost=1
  56. if (have clover) $boost=4
  57. if (chance(25%))
  58. //get at least 20, or between 1 and 5 minutes of our bunny production
  59. $amount=max(20,random(bunnies:ps*60*1,bunnies:ps*60*5))*$boost
  60. toast The lucky realtor grants you<//><b>[$amount] houses</b>.
  61. yield $amount houses
  62. else
  63. $amount=1*$boost
  64. toast The lucky realtor grants you<//><b>[$amount] golden house[s?$amount]</b>!
  65. yield $amount goldenHouse
  66. end
  67. end
  68.  
  69. Buildings
  70. *TEMPLATE
  71. on click:anim glow
  72.  
  73. *neighborhood|neighborhoods
  74. name:Neighborhood|Neighborhoods
  75. desc:A big neighborhood,good for countries .<//><b>Effect:</b><.>Produces 2 houses every 10 seconds.
  76. icon:icons[3,0]
  77. cost:20 houses
  78. on tick:yield 0.2 houses
  79. unlocked
  80.  
  81. *neighborhood area|areas of neighborhoods
  82. name:Neighborhood Area|Areas of Neighborhoods
  83. desc:A bit roomier than a neighbor, with enough space to add public attractions.<//><b>Effect:</b><.>Produces 2 house every 4 seconds.
  84. icon:icons[3,1]
  85. cost:100 houses
  86. on tick:yield 0.5 houses
  87. req:120 houses:earned
  88.  
  89. *village/town|villages/towns
  90. name:Village/Town|Villages/Towns
  91. desc:A much nicer town where full communities can live.<//><b>Effect:</b><.>Produces 5 houses per second.
  92. icon:icons[3,2]
  93. cost:750 houses
  94. on tick:yield 5 houses
  95. req:650 houses:earned
  96.  
  97. *full city|full cities
  98. name:Full City|Full Cities
  99. desc:A lovely full city with plenty of space.<//><b>Effect:</b><.>Produces 15 houses per second.
  100. icon:icons[3,3]
  101. cost:5000 houses
  102. on tick:yield 15 houses
  103. req:3900 houses:earned
  104.  
  105. *county|counties
  106. name:County|Counties
  107. desc:A wide open area of cities and towns.<//><b>Effect:</b><.>Produces 100 houses per second.
  108. icon:icons[3,4]
  109. cost:30000 houses
  110. on tick:yield 100 houses
  111. req:20000 houses:earned
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement