View difference between Paste ID: r5bx0Dav and WmQVwsB0
SHOW: | | - or go back to the newest paste.
1
Let's make a game!
2
	name:Bunny Clicker
3
	by:Orteil
4
	desc:This is a simple idle game to showcase some of the basic functionalities of Idle Game Maker.<//>Make bunnies and shoot for the stars!
5
	created:25/7/2017
6
	updated:24/10/2017
7
	version:1
8
9
Settings
10
	background:stuff/meadow.jpg
11
	building cost increase:115%
12
	building cost refund:50%
13
	spritesheet:icons, 48 by 48, stuff/bunnyIcons.png
14
	stylesheet:stuff/bigBlue.css
15
16
Layout
17
	use default
18
		
19
Buttons
20
	*bunnyButton
21
		name:Make a bunny
22
		desc:Click this little bunny to get more bunnies!
23
		on click:anim icon wobble
24
		on click:yield 1 dollar
25
		
26
		icon:stuff/bunny.png
27
		no text
28
		class:bigButton hasFlares
29
		icon class:shadowed
30
		tooltip origin:bottom
31
		tooltip class:red
32
		
33
Resources
34
	*dollar|dollars
35
		name:Dollar|Dollars
36
		desc:These are your bunnies. You can use them to purchase things. Your goal is to have as many bunnies as possible!
37
		icon:icons[0,0]
38
		class:noBackground
39
		show earned
40
		
41
	
42
		
43
44
45
Buildings
46
	*TEMPLATE
47
		on click:anim glow
48
		
49
	*cage|cages
50
		name:Rabbit cage|Rabbit cages
51
		desc:A tiny little cage.<//><b>Effect:</b><.>Produces 1 dollar every 10 seconds.
52
		icon:icons[3,0]
53
		cost:5 dollars
54
		on tick:yield 0.1 dollars
55
		unlocked
56
	
57
	*hutch|hutches
58
		name:Rabbit hutch|Rabbit hutches
59
		desc:A bit roomier than a cage, with enough space to hop around.<//><b>Effect:</b><.>Produces 2 dollars per second.
60
		icon:icons[3,1]
61
		cost:50 dollars
62
		on tick:yield 2 dollars
63
		req:50 dollars:earned
64
	
65
	*coop|coops
66
		name:Rabbit coop|Rabbit coops
67
		desc:A much nicer rabbit home where full bunny families can live.<//><b>Effect:</b><.>Produces 20 dollars per second.
68
		icon:icons[3,2]
69
		cost:300 dollars
70
		on tick:yield 20 dollars
71
		req:300 dollars:earned
72
	
73
	*pen|pens
74
		name:Rabbit pen|Rabbit pens
75
		desc:A lovely enclosure with plenty of green space.<//><b>Effect:</b><.>Produces 120 dollars per second.
76
		icon:icons[3,3]
77
		cost:4000 dollars
78
		on tick:yield 120 dollars
79
		req:4000 dollars:earned
80
	
81
	*meadow|meadows
82
		name:Rabbit meadow|Rabbit meadows
83
		desc:A wide open space full of shade and lush grass.<//><b>Effect:</b><.>Produces 900 dollars per second.
84
		icon:icons[3,4]
85
		cost:20000 dollars
86
		on tick:yield 900 dollars
87
		req:20000 dollars:earned
88
	
89
	*village|villages
90
		name:Rabbit village|Rabbit villages
91
		desc:Your bunnies are building their own villages now!<//><b>Effect:</b><.>Produces 3000 dollars per second.
92
		icon:icons[3,5]
93
		cost:200000 dollars
94
		on tick:yield 3000 dollars
95
		req:200000 dollars:earned 
96
		
97
	*city|cities
98
		name:Rabbit city|Rabbit cities
99
		desc:A bustling little city, populated with busy rabbits.<//><b>Effect:</b><.>Produces 10000 dollars per second.
100
		icon:icons[3,6]
101
		cost:3000000 dollars
102
		on tick:yield 10000 dollars
103
		req:3000000 dollars:earned
104
		
105
	*citadel|citadels
106
		name:Moon citadel|Moon citadels
107
		desc:An ornate palace standing on the moon, ruled by bunny kings and queens and staffed with royal bunny guards.<//><b>Effect:</b><.>Produces 40000 dollars per second.
108
		icon:icons[3,7]
109
		cost:70000000 dollars
110
		on tick:yield 40000 dollars
111
		
112
		req:70000000 dollars:earned
113
		
114
	
115
		
116
Upgrades
117
	*TEMPLATE
118
		on click:anim glow
119
	
120
	//food upgrades
121
	//inspiration : http://rabbit.org/suggested-vegetables-and-fruits-for-a-rabbit-diet/
122
	
123
	*parsley
124
		name:Parsley
125
		desc:A nice little supplement to your bunnies' diet.<//><b>Effect:</b><.>+1 dollar/click
126
		icon:icons[1,1]
127
		cost:10 dollars
128
		passive:increase dollar yield of bunnyButton by 1
129
		req:10 dollars:earned
130
		
131
	*spinach
132
		name:Spinach
133
		desc:Big tasty leaves, perfect for hungry bunnies.<//><b>Effect:</b><.>+10 dollars/click
134
		icon:icons[1,2]
135
		cost:200 dollars
136
		passive:increase dollar yield of bunnyButton by 10
137
		req:200 dollars:earned
138
		
139
	*lettuce
140
		name:Lettuce
141
		desc:Frilly greens loved by all bunnies.<//><b>Effect:</b><.>+100 dollars/click
142
		icon:icons[1,3]
143
		cost:1000 dollars 
144
		passive:increase dollar yield of bunnyButton by 100
145
		req:1000 dollars:earned
146
		
147
	*broccoli
148
		name:Broccoli
149
		desc:Crunchy greens that look like little trees.<//><b>Effect:</b><.>bunnies/click x2<.>dollar production +50%
150
		icon:icons[1,4]
151
		cost:3000 dollars
152
		passive:multiply dollar yield of bunnyButton by 2
153
		passive:multiply yield of dollars by 1.5
154
		req:3000 dollars:earned
155
		
156
	*apple
157
		name:Apple
158
		desc:Nice pieces of juicy red apples.<//><b>Effect:</b><.>dollars/click x10<.>dollar production +99%
159
		icon:icons[1,5]
160
		cost:10000 dollars
161
		passive:multiply dollar yield of bunnyButton by 10
162
		passive:multiply yield of dollars by 1.99
163
		req:10000 dollars:earned
164
		
165
	*radish
166
		name:Radish
167
		desc:Purple, crunchy, and strangely spicy.<//><b>Effect:</b><.>dollars/click x100<.>dollar production x3
168
		icon:icons[1,6]
169
		cost:500000 dollars
170
		passive:multiply dollar yield of bunnyButton by 100
171
		passive:multiply yield of dollars by 3
172
		req:500000 dollars:earned
173
		
174
175
		
176
	*carrot
177
		name:Carrot
178
		desc:The quintessential rabbit food! Crunchy, orange, and perfect.<//><b>Effect:</b><.>bunnies/click x200<.>dollar production +10%
179
		icon:icons[1,0]
180
		cost:100000000 dollars
181
		passive:multiply dollar yield of bunnyButton by 200
182
		passive:multiply yield of dollars by 1.1
183-
		req:100000000 dollars:earned
183+
		req:100000000 dollars:earned
184
185
	*pasta
186
		name:Pasta
187
		desc:Awesome<//?<b>Effect:</b><.>dollars/click x10000<.>dollar production x200
188
189
		icon:icons[1,0]
190
		cost:9999999999 dollars
191
		passive:multiply dollar yield of bunnyButton by 10000
192
		passive:multiply yield of dollars by 200
193
		req:9999999999 dollars:earned