-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathsword.js
494 lines (456 loc) · 13.6 KB
/
sword.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
var sword = {
// Variables
name : "none",
specialSword : false,
specialPower : 1, // How many the Sword of Life can steal hp, additional damage of the Sword of Flames...
// List of summoned things with the level we need to summon them
summonList : [],
// Functions
onload : function(){
this.summonList.push({name:"imps", summonFunction:quest.makeImp.bind(quest), powerNeeded:1});
this.summonList.push({name:"orcs", summonFunction:quest.makeOrc.bind(quest), powerNeeded:2});
this.summonList.push({name:"draugrs", summonFunction:quest.makeDraugr.bind(quest), powerNeeded:3});
this.summonList.push({name:"a chupacabra", summonFunction:quest.makeChupacabra.bind(quest), powerNeeded:4});
this.summonList.push({name:"a golem", summonFunction:quest.makeGolem.bind(quest), powerNeeded:5});
this.summonList.push({name:"a chimera", summonFunction:quest.makeChimera.bind(quest), powerNeeded:6});
this.summonList.push({name:"a candy monster", summonFunction:quest.makeCandyMonster.bind(quest), powerNeeded:7});
},
buyThisSword : function(name){
if(this.name != name){ // If we're not trying to buy the current sword
switch(name){
case "wooden sword":
if(candies.nbrOwned >= shop.currentSwordPrice){
candies.setNbrOwned(candies.nbrOwned - shop.currentSwordPrice);
shop.setMerchantSpeech("Great! This wooden sword isn't the best, for sure, but it really didn't cost so much.");
shop.hideProduct("sword");
}
else{
shop.setMerchantSpeech("You don't have enough candies. You should save up candies to buy it : swords are useful nowadays.");
return;
}
break;
case "copper sword":
if(candies.nbrOwned >= shop.currentSwordPrice){
candies.setNbrOwned(candies.nbrOwned - shop.currentSwordPrice);
shop.setMerchantSpeech("This copper sword is quite heavy, but it slays efficiently.");
shop.hideProduct("sword");
}
else{
shop.setMerchantSpeech("You need 300 candies to buy that sword! Did you know that copper slowly reacts with atmospheric oxygen forming a layer of brown-black copper oxide?");
return;
}
break;
case "iron sword":
if(candies.nbrOwned >= shop.currentSwordPrice){
candies.setNbrOwned(candies.nbrOwned - shop.currentSwordPrice);
shop.setMerchantSpeech("This iron sword could cut almost anything, if you're strong enough to use it.");
shop.hideProduct("sword");
}
else{
shop.setMerchantSpeech("You need more candies for the iron sword. Iron is strong. Iron is reliable. Iron will obey your slaying desire.");
return;
}
break;
case "silver sword":
if(candies.nbrOwned >= shop.currentSwordPrice){
candies.setNbrOwned(candies.nbrOwned - shop.currentSwordPrice);
shop.setMerchantSpeech("One thousand candies for meeee! Uh, I mean, this silver sword is even stronger than the iron one! You had to buy it.");
shop.hideProduct("sword");
}
else{
shop.setMerchantSpeech("One thousand candies for the silver sword! My marginal profit can't handle less than that.");
return;
}
break;
case "diamond sword":
if(candies.nbrOwned >= shop.currentSwordPrice){
candies.setNbrOwned(candies.nbrOwned - shop.currentSwordPrice);
shop.setMerchantSpeech("Diamond! This is the best sword I can sell you. It will cut rocks as if they were made of butter.");
shop.hideProduct("sword");
}
else{
shop.setMerchantSpeech("You need more candies. The diamond sword is quite expensive, but it's worth it!");
return;
}
break;
}
this.setName(name); // We bought it, since we didn't return : we change the name
}
},
enchantImpInvocation : function(){
if(potions.list.impInvocationScroll.nbrOwned > 0){
this.setSpecialSword(true);
this.setName("Sword of Summoning");
potions.list.impInvocationScroll.nbrOwned -= 1;
potions.updateOnPage();
forge.setStep(2);
}
},
setSpecialSword : function(value){
this.specialSword = value;
},
setSpecialPower : function(value){
if(value > 0){
this.specialPower = value;
}
else this.specialPower = 0;
},
getIndexOfBetterToSummon : function(){
var indexOfBetterToSummon = 0;
// We iterate over the list
for(var i = 0; i < this.summonList.length; i++){
// If we can summon this one and it is better than the current betterToSummon
if(this.summonList[i].powerNeeded <= this.specialPower && this.summonList[i].powerNeeded > this.summonList[indexOfBetterToSummon].powerNeeded){
// This is now the better to summon
indexOfBetterToSummon = i;
}
}
return indexOfBetterToSummon;
},
summonHere : function(id){
// One chance out of two we summon something
if(random.flipACoin()){
// We summon the better to summon
quest.things[id] = this.summonList[this.getIndexOfBetterToSummon()].summonFunction();
}
},
enchantFire : function(){
if(potions.list.fireScroll.nbrOwned > 0){
this.setSpecialSword(true);
this.setName("Sword of Flames");
potions.list.fireScroll.nbrOwned -= 1;
potions.updateOnPage();
forge.setStep(2);
}
},
enchantHealth : function(){
if(potions.list.health.nbrOwned > 0){
this.setSpecialSword(true);
this.setName("Sword of Life");
potions.list.health.nbrOwned -= 1;
potions.updateOnPage();
forge.setStep(2);
}
},
sharpen : function(){
this.setName("sharp chocolate sword");
forge.setStep(1);
},
coat : function(){
if(chocolateBars.nbrOwned >= 1){
chocolateBars.setNbrOwned(chocolateBars.nbrOwned - 1);
this.setName("chocolate sword");
htmlInteraction.hideButton("coat");
}
},
encrust : function(){
if(candies.nbrOwned >= 101){
candies.setNbrOwned(candies.nbrOwned - 101);
this.setName("candy diamond sword");
htmlInteraction.hideButton("encrust");
}
},
polish : function(){
if(lollipops.nbrOwned >= 30){
lollipops.setNbrOwned(lollipops.nbrOwned - 30);
this.setName("polished candy diamond sword");
htmlInteraction.hideButton("polish");
}
},
setName : function(value){
// We change the value
this.name = value;
// We possibly show a new product in the shop depending on the new sword name
switch(this.name){
case "wooden sword": shop.showProduct("copper_sword"); break;
case "copper sword": shop.showProduct("iron_sword"); break;
case "iron sword": shop.showProduct("silver_sword"); break;
case "silver sword": shop.showProduct("diamond_sword"); break;
default: shop.showProduct("products_after_swords"); break;
}
// Other stuff
htmlInteraction.setInnerHtml("sword", "You currently have a " + this.name + ".");
quest.defineMood();
htmlInteraction.setElementVisibility("sword", true);
htmlInteraction.setElementVisibility("quest_form", true);
buttons.checkSword();
inventory.updateOnPage();
},
// Ascii art
asciiWoodenSwordWithButton : "\
.\n\
/ \\\n\
| |\n\
| | <button class=\"home_button\" id=\"buy_wooden_sword\" onClick=\"sword.buyThisSword(\'wooden sword\');\">Buy the wooden sword (150 candies)</button>\n\
| |\n\
| |\n\
`--8--\'\n\
8\n\
0",
asciiWoodenSwordWithoutButton : "Wooden sword\n\
.\n\
/ \\\n\
| |\n\
| |\n\
| |\n\
| |\n\
`--8--\'\n\
8\n\
0",
asciiCopperSwordWithButton : "\
.\n\
/:\\\n\
|||\n\
||| <button class=\"home_button\" id=\"buy_copper_sword\" onClick=\"sword.buyThisSword(\'copper sword\');\">Buy the copper sword (300 candies)</button>\n\
|||\n\
|||\n\
`--8--\'\n\
8\n\
0",
asciiCopperSwordWithoutButton : "Copper sword\n\
.\n\
/:\\\n\
|||\n\
|||\n\
|||\n\
|||\n\
`--8--\'\n\
8\n\
0",
asciiIronSwordWithButton : "\
/|\n\
|\\|\n\
|||\n\
||| <button class=\"home_button\" id=\"buy_iron_sword\" onClick=\"sword.buyThisSword(\'iron sword\');\">Buy the iron sword (500 candies)</button>\n\
|||\n\
|||\n\
|||\n\
|||\n\
~-[{o}]-~\n\
|/|\n\
|/|\n\
`0\'",
asciiIronSwordWithoutButton : "Iron sword\n\
/|\n\
|\\|\n\
|||\n\
|||\n\
|||\n\
|||\n\
|||\n\
|||\n\
~-[{o}]-~\n\
|/|\n\
|/|\n\
`0\'",
asciiSilverSwordWithButton : "\
|\\\n\
|/|\n\
|||\n\
[|] <button class=\"home_button\" id=\"buy_silver_sword\" onClick=\"sword.buyThisSword(\'silver sword\');\">Buy the silver sword (1000 candies)</button>\n\
|||\n\
[|]\n\
|||\n\
|||\n\
\\_[[O]]_/\n\
|/|\n\
|/|\n\
`0\'",
asciiSilverSwordWithoutButton : "Silver sword\n\n\
|\\\n\
|/|\n\
|||\n\
[|]\n\
|||\n\
[|]\n\
|||\n\
|||\n\
\\_[[O]]_/\n\
|/|\n\
|/|\n\
`0\'",
asciiDiamondSwordWithButton : "\
/|\n\
|;|\n\
|:|\n\
|;| <button class=\"home_button\" id=\"buy_diamond_sword\" onClick=\"sword.buyThisSword(\'diamond sword\');\">Buy the diamond sword (2000 candies)</button>\n\
|:|\n\
|;|\n\
|:|\n\
|;|\n\
|:|\n\
\\_[[C]]_/\n\
|N|\n\
|D|\n\
`0\'",
asciiDiamondSwordWithoutButton : "Diamond sword\n\n\
/|\n\
|;|\n\
|:|\n\
|;|\n\
|:|\n\
|;|\n\
|:|\n\
|;|\n\
|:|\n\
\\_[[C]]_/\n\
|N|\n\
|D|\n\
`0\'",
asciiCandyDiamondSword : "Candy diamond sword\n\n\
/|\n\
|o|\n\
|:|\n\
|o|\n\
|:|\n\
|o|\n\
|:|\n\
|o|\n\
o |:| o\n\
\\_[[C]]_/\n\
|N|\n\
|D|\n\
'O'",
asciiPolishedCandyDiamondSword : "Polished candy diamond sword\n\n\
/|\n\
|o|\n\
| |\n\
|o|\n\
| |\n\
|o|\n\
| |\n\
|o|\n\
o | | o\n\
\\_([-])_/\n\
| |\n\
| |\n\
'O'",
asciiChocolateSword : "Chocolate sword\n\n\
/|\n\
|o|\n\
|~|\n\
|o|\n\
|~|\n\
|o|\n\
|~|\n\
|o|\n\
o |~| o\n\
\\~([-])~/\n\
|~|\n\
|~|\n\
'O'",
asciiSharpChocolateSword : "Sharp chocolate sword\n\n\
/|\n\
|^|\n\
|~|\n\
|^|\n\
|~|\n\
|^|\n\
|~|\n\
|^|\n\
. |~| .\n\
\\~([-])~/\n\
|~|\n\
|~|\n\
'O'",
asciiSwordOfFlames : "Sword of Flames\n\n\
_\n\
/#|\n\
|##|\n\
|##|\n\
|#F|\n\
|L#|\n\
|#A|\n\
|M#|\n\
|#E|\n\
|S#|\n\
|##|\n\
|##|\n\
_ |##| _\n\
\\\\-([--])-//\n\
|``|\n\
|``|\n\
|``|\n\
\"##\"",
asciiSwordOfLife : "Sword of Life\n\n\
_ _\n\
( `\\/' )\n\
`\\ /'\n\
|\\/|\n\
| |\n\
|~ |\n\
| |\n\
| ~|\n\
| |\n\
| |\n\
| ~|\n\
|~ |\n\
| |\n\
| ~|\n\
/~~([--])~~\\\n\
| |\n\
| |\n\
| |\n\
\"OO\"",
asciiSwordOfSummoning : "Sword of Summoning\n\n\
_\n\
/*| _\n\
|% | / \\\n\
| | /& /\n\
| &| / /\n\
| | / /\n\
|% | / %/\n\
| |/ /\n\
| * & /\n\
| /\n\
|& */\n\
| |\n\
|_%|\n\
~~([__])~~\n\
|*%|\n\
|%&|\n\
|*&|\n\
\'42\'",
asciiSwordOfLiflamesummoning : "Sword of Liflamesummoning\n\n\
_ _\n\
( `\\/' )\n\
`\\ /'\n\
|\\/| _\n\
|% | /#\\\n\
| | /&#/\n\
| &| /##/\n\
| | /##/\n\
|% | /#%/\n\
| |/##/\n\
| * &#/\n\
| #/\n\
|& */\n\
| |\n\
|_%|\n\
~~([__])~~\n\
|l%|\n\
|%f|\n\
|s%|\n\
\'42\'",
asciiSwordOfRandomness : " Sword of Randomness\n\n\
_ _\n\
À ( `\\/' )\n\
À `\\ e /'\n\
À À |\\/| _\n\
À |% | /#\\\n\
À qsd | | /&#/\n\
| &| /##/\n\
ÀÀ| | /##/\n\
|% | /s%/\n\
f | |À/##/\n\
| $*À &#/\n\
r | #/\n\
|& */\n\
ù | |\n\
dfg |_%|\n\
~~(É[__])~~\n\
|l%|\n\
A |%f|\n\
|s%sdd|\n\
\'42\'"
};