Facebook
From Jeremiah Lopez, 1 Year ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 169
  1. Let's make a game!
  2.   name:Idle Clicker Game
  3.   by:Jeremiah Lopez
  4.   desc:An idle clicker game, nothing else
  5.   created:31/10/2023
  6.   updated:15/11/2023
  7.   version:1
  8.  
  9. Settings
  10.   background:stuff/skyBlue.jpg
  11.   tiling background:stuff/royalBlue.jpg
  12.   building cost increase:110%
  13.   building cost refund:50%
  14.   spritesheet:icons, 48 by 48, stuff/bigBlack.png
  15.   stylesheet:stuff/bigBlack.png
  16.  
  17. Layout
  18.   *main
  19.     contains:res, buttons
  20.     *res
  21.       contains:Resources
  22.        class:fullWidth
  23.     ps:show
  24.     *buttons
  25.        contains:Buttons
  26.   *store
  27.       contains:buildings, upgrades
  28.     costs:show
  29.     *buildings
  30.        contains:BulkDisplay, Buildings
  31.        header:Buildings
  32.        tooltip origin:left
  33.     costs:show
  34.     *upgrades
  35.        contains:Upgrades
  36.        header:Upgrades
  37.        costs:hide
  38.        names:hide
  39.   *unlockables
  40.     contains:Upgrades, Achievements
  41.     names:hide
  42.  
  43. Buttons
  44.   *tappityTap
  45.     name:Tappity Tap
  46.     desc:Click this to tap button. Grants 1 tick per click.
  47.     on click:yield 1 tick
  48.     icon:stuff/noobHead.png
  49.     no text
  50.     class:bigButton hasFlares
  51.     icon class:shadowed
  52.     tooltip origin:bottom
  53.     tooltip class:red
  54.     show clicks
  55.  
  56. Resources
  57.   *tick
  58.     name:Ticks
  59.     desc:This is money. You can't buy stuff without money.
  60.     icon:icons[0,0]
  61.     show earned
  62.   *goldTick
  63.     name:Gold Ticks
  64.     desc:These are gold ticks. Use them to buy better buttons.
  65.     icon:icons[0,0]
  66.     show earned
  67.  
  68. Buildings
  69.   *toolShed
  70.     name:Toolshed
  71.     desc:Instead of working in a bucket on the side of the street, now you can work in a toolshed in order to produce 2 ticks per second.
  72.     on tick:yield 2 tick
  73.     cost:20 tick
  74.     cost increase:110%
  75.     cost refund:50%
  76.   *momBasement
  77.     name:Mom's Basement
  78.     desc:Now you can work in your mom's basement, rent-free. Your mom's love drives you to work harder. Produces 5 ticks per second.
  79.     on tick:yield 5 tick
  80.     cost:250 tick
  81.     cost increase:110%
  82.     cost refund:50%
  83.   *trailer
  84.     name:Trailer
  85.     desc:Now you have your own trailer to work in. Produces 10 ticks per second.
  86.     on tick:yield 10 tick
  87.     cost:750 tick
  88.     cost increase:115%
  89.     cost refund:50%
  90.   *apartment
  91.     name:Apartment
  92.     desc:It's an apartment. What else? Produces 15 ticks per second.
  93.     on tick:yield 15 tick
  94.     cost:1500 tick
  95.     cost increase:115%
  96.     cost refund:50%
  97.   *smallHouse
  98.     name:Small House
  99.     desc:Now you have your own house. Produces 25 ticks per second.
  100.     on tick:yield 25 tick
  101.     cost:2500 tick
  102.     cost increase:120%
  103.     cost refund:50%
  104.   *officeBuilding
  105.     name:Office Building
  106.     desc:Now you have your own office building. You can now get employees and other office stuff. Produces 75 ticks per second.
  107.     on tick:yield 75 tick
  108.     cost:5650 tick
  109.     cost increase:120%
  110.     cost refund:50%
  111.  
  112. Upgrades
  113.   *clickNub
  114.     name:Click Nub
  115.     desc:It's what's in stock. 2x ticks/click.
  116.     passive:multiply yield of tappityTap by 2
  117.     cost:150 tick
  118.   *clickPro
  119.     name:Click Pro
  120.     desc:Better than better. 2x ticks/click.
  121.     passive:multiply yield of tappityTap by 2
  122.     cost:500 tick
  123.   *steelClicks
  124.     name:Steel Clicks
  125.     desc:Stainless clicks. 2x ticks/click.
  126.     passive:multiply yield of tappityTap by 2
  127.     cost:2000 tick
  128.  
  129. Achievements
  130.   *newbie
  131.     name:Newbie!
  132.     desc:You've clicked the button 1 time. You are a certified Newbie. Well done.
  133.     req:1 tappityTap:clicks
  134.   *clicka
  135.     name:Clicka'
  136.     desc:You've clicked the button 100 times! No clicka', I'm serious.
  137.     req:100 tappityTap:clicks
  138.   *tapTastic
  139.     name:Tap-tastic!
  140.     desc:Wowzers! You've clicked the button 1,000 times! That's tap-tastic!
  141.     req:1000 tappityTap:clicks
  142.   *ysoClicker
  143.     name:Why So Clickerous?
  144.     desc:You've clicked the button 100,000 times! Cool!
  145.     req:100000 tappityTap:clicks
  146.   *clickBot
  147.     name:Clickbot
  148.     desc:Are you using clickbot? You've clicked the button 10,000,000 times!
  149.     req:10000000 tappityTap:clicks
  150.   *autoClicker
  151.     name:Auto-Clicker
  152.     desc:No Way! You've clicked the button 100,000,000,000 times!
  153.     req:100000000000 tappityTap:clicks
  154.  
  155. Shinies
  156.   *bronzeButton
  157.     name:Bronze Button
  158.     on click: yield (random(10,100)) tick
  159.     movement:anywhere fade bounce moveRandom
  160.     frequency:120
  161.     duration:10
  162.   *silverButton
  163.     name:Silver Button
  164.     on click:yield (random(100,000)) tick
  165.     movement:anywhere growShrink
  166.     frequency:360
  167.     duration:7
  168.   *goldButton
  169.     name:Gold Button
  170.     on click:yield (random(10,000,000)) tick
  171.     movement:anywhere spinRandom moveRandom
  172.     frequency:720
  173.     duration:5
  174.   *diamondButton
  175.     name:Diamond Button
  176.     on click:yield (random(100,000,000)) tick
  177.     movement:anywhere growShrink
  178.     frequency:960
  179.     duration:5
  180.   *platinumButton
  181.     name:Platinum Button
  182.     on click:yield (random(10,000,000,000)) tick
  183.     movement:anywhere growShrink moveRandom
  184.     frequency:2160
  185.     duration:4
  186.