Advertisement
Guest User

Untitled

a guest
Oct 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 KB | None | 0 0
  1. Let's make a game!
  2. name: Dabbing Turtle Simulator
  3. by: Reid Panzer
  4. desc: This came from an idea my friend gave me. I started this on scratch, but we decided scratch was pretty trash. This is in early development.
  5. created: 10/17/18
  6. updated: 10/17/18
  7. version:1
  8.  
  9. Settings
  10. background:black
  11. building cost increase:115%
  12. building cost refund:25%
  13. spritesheet:icons, 48 by 48, stuff/bunnyIcons.png
  14. stylesheet:stuff/bigBlue.css
  15.  
  16. Layout
  17. use default
  18.  
  19. Buttons
  20. *mainButton
  21. name:The Main Turtle
  22. desc:Click this turtle to dab! Dabing will increase your dab amount.
  23. on click:anim icon wobble
  24. on click:yield 1 dab
  25. icon:stuff/bunny.png
  26. no text
  27. class:bigButton hasFlares
  28. icon class:shadowed
  29. tooltip origin:bottom
  30. tooltip class:red
  31.  
  32. Resources
  33. *dab|dabs
  34. name:Dab|Dabs
  35. desc:These are your dabs the more you get, the more you can buy.
  36. icon:icons[0,0]
  37. class:noBackground
  38. show earned
  39.  
  40. *purpleToken|purpleTokens
  41. name:Purple Token|Purple Tokens
  42. desc:These are legendary tokens used to purchase Purple Supplies, which give you extra boosts.
  43. icon:icons[0,1]
  44. class:noBackground
  45. hidden when 0
  46. Shinies
  47. *rareToken
  48. on click:log Woop
  49. movement:onTop moveBottom fade bounce:0.05
  50. frequency:10
  51. frequency variation:30
  52. icon:stuff/luckyBunny.png
  53. class:bigButton
  54. on click:
  55. $boost=1
  56. if (chance(25%))
  57. //get at least 7, or between 1 and 3 minutes of our bunny production
  58. $amount=max(7,random(dabs:ps*60*1,dabs:ps*60*3))*$boost
  59. toast The rare token grants you<//><b>[$amount] dabs</b>.
  60. yield $amount dabs
  61. else
  62. $amount=1*$boost
  63. toast The rare token grants you<//><b>[$amount] purple token[s?$amount]</b>!
  64. yield $amount purpleToken
  65. end
  66. end
  67.  
  68.  
  69. Buildings
  70. *TEMPLATE
  71. on click:anim glow
  72.  
  73. *seahorse|seahorses
  74. name:Dabbing Seahorse|Dabbing Seahorses
  75. desc:A small friend to help you dab. <//><b>Effect:</b><.>Produces 1 dab every 5 seconds.
  76. icon:icons[3,0]
  77. cost:15 dabs
  78. on tick:yield 0.1 dab
  79. unlocked
  80.  
  81. *pond|ponds
  82. name:Turtle Pond|Turtle Ponds
  83. desc:A small body of water where your seahorses and turtles can dab.<//><b>Effect:</b><.>Produces 1 dab every 2 seconds.
  84. icon:icons[3,1]
  85. cost:100 dabs
  86. on tick:yield 0.5 dabs
  87. req:100 dabs:earned
  88.  
  89. *lake|lakes
  90. name:Turtle lake|Turtle lakes
  91. desc:A roomy body of water to <//><b>Effect:</b><.>Produces 5 dabs per second.
  92. icon:icons[3,2]
  93. cost:600 dabs
  94. on tick:yield 5 dabs
  95. req:600 dabs:earned
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement