Advertisement
martyn12345678901

Untitled

Dec 19th, 2024 (edited)
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.23 KB | None | 0 0
  1. Let's make a game!
  2.     name:Idle coin
  3.     by:Fhalo
  4.     desc:Idle game about making coins. version 1.0
  5.     created:19/12/2024
  6.     updated:20/12/2024
  7.     version:1.0
  8.  
  9. CSS
  10.     .thing
  11.     {
  12.         border-radius: 8px;
  13.         background: rgba(255,255,255,0.5);
  14.     }
  15.     .thing-icon,.icon{
  16.         background-size: cover;
  17.     }
  18.     #game
  19.     {
  20.  
  21. Settings
  22.     background:https://www.premierline.co.uk/wp-content/uploads/2020/02/shop-layout-desktop-stage-4.jpeg
  23.     building cost increase:125%
  24.     building cost refund:25%
  25.     stylesheet:stuff/bigBlue.css
  26.  
  27. Layout
  28.     use default
  29.  
  30. Buttons
  31.     *coinButton
  32.         name:The Coin
  33.         desc:Click this little coin to get more recources!
  34.         on click:anim icon wobble
  35.         on click:yield 1 coin
  36.         icon:https://cdn-icons-png.flaticon.com/512/668/668090.png
  37.         no text
  38.         class:bigButton hasFlares
  39.         icon class:shadowed
  40.         tooltip origin:bottom
  41.         tooltip class:red
  42.  
  43. Resources
  44.  
  45.     *coin|coins
  46.         name:Coin
  47.         desc:You need coin to bring back extinct animal, more fossil, more animals.
  48.         icon:https://cdn-icons-png.flaticon.com/512/668/668090.png
  49.         class:noBackground
  50.         hidden when 0
  51.  
  52. Buildings
  53.     *TEMPLATE
  54. tag:losable
  55.         on click:anim glow
  56.  
  57.  
  58.     *coinshop
  59.         name:coin shop
  60.         desc:Added in version 1.0.<//>Is a shop that sells coins.<//><b>Effect:</b><.>Produces 1 coin every 10 seconds.
  61.         icon:https://i.pinimg.com/564x/a3/33/17/a333171dbac997e4da6f70c576e1d8f3.jpg
  62.         cost:15 coin
  63.         on tick:yield 0.1 coin
  64.         unlocked
  65.  
  66.   *coinfactory
  67.         name:coin factory
  68.         desc:Added in version 1.0.<//>Is a shop that sells coins.<//><b>Effect:</b><.>Produces 1 coin every 10 seconds.
  69.         icon:https://i.pinimg.com/564x/a3/33/17/a333171dbac997e4da6f70c576e1d8f3.jpg
  70.         cost:50 coins
  71.         on tick:yield 0.5 coins
  72.         unlocked
  73.  
  74.       *mrbeast
  75.         name:mr beast
  76.         desc:Added in version 1.0.<//>Is a shop that sells coins.<//><b>Effect:</b><.>Produces 1m coins every 1 second.
  77.         icon:https://i.pinimg.com/564x/a3/33/17/a333171dbac997e4da6f70c576e1d8f3.jpg
  78.         cost:2000000 coins
  79.         on tick:yield 1000000 coins
  80.         unlocked
  81.  
  82.  Upgrades
  83.  
  84. *kungfuTraining
  85.  name:Kung-fu training
  86.  desc:Everybody's doing it!
  87.   passive:multiply yield of coinButton by 2
  88.   cost:100 coins
  89.  
  90. *kungfu
  91.   name:Kung-fu
  92.   desc:Everybody's doing it!
  93.  passive:multiply yield of coinButton by 3
  94.  cost:500 coins
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement