|
1
|
function scr_itemdescscr_itemdesc
function scr_itemdesc()
{
for (i = 0; i < 12; i += 1)
{
itemid = global.item[i];
switch (itemid)
{
case 0:
itemdesc[i] = "---";
break;
case 1:
itemdesc[i] = Heals 40 HP. A red-and-black star#that tastes like marshmallows. ;
break;
case 2:
itemdesc[i] = Heals a fallen ally to MAX HP.#A minty green crystal. ;
break;
case 3:
itemdesc[i] = A shimmering shard.#Its use is unknown. ;
break;
case 4:
itemdesc[i] = Ralsei's handmade book full of#various tips and tricks. ;
break;
case 5:
itemdesc[i] = Though broken, it seethes with power.#A master smith could fix it. ;
break;
case 6:
itemdesc[i] = This cake will make your taste buds#spin! Heals 160 HP to the team. ;
break;
case 7:
itemdesc[i] = A pastry in the shape of a top.#Heals 80 HP to the team. ;
break;
case 8:
itemdesc[i] = A mysterious black burger made of...#Hey, this is just burnt! +70HP ;
break;
case 9:
itemdesc[i] = A cookie shaped like Lancer's face.#Maybe not a cookie. Heals 5 HP? ;
break;
case 10:
itemdesc[i] = An enormous salad... but, it's just#lettuce, so it's worthless. +4HP ;
break;
case 11:
itemdesc[i] = A sandwich that can be split into 3.#Heals 30 HP to the team. ;
break;
case 12:
itemdesc[i] = Hearts, don't it!? It's filled with#divisive, clotty red jam. +??HP ;
break;
case 13:
itemdesc[i] = It's quite small, but some#people REALLY like it. +??HP ;
break;
case 14:
itemdesc[i] = You'd think it tastes perfect.#Heals 500HP. ;
break;
case 15:
itemdesc[i] = A dark roux with a delicate aroma.#Also... has worms in it. +50HP ;
break;
}
}
} ()
|
|
2
|
{
|
|
3
|
for (i = 0; i < 12; i += 1)
|
|
4
|
{
|
|
5
|
itemid = global.item[i];
|
|
6
|
switch (itemid)
|
|
7
|
{
|
|
8
|
case 0:
|
|
9
|
itemdesc[i] = "---";
|
|
10
|
break;
|
|
11
|
case 1:
|
|
12
|
itemdesc[i] = Heals 40 HP. A red-and-black star#that tastes like marshmallows. ;
|
|
13
|
break;
|
|
14
|
case 2:
|
|
15
|
itemdesc[i] = Heals a fallen ally to MAX HP.#A minty green crystal. ;
|
|
16
|
break;
|
|
17
|
case 3:
|
|
18
|
itemdesc[i] = A shimmering shard.#Its use is unknown. ;
|
|
19
|
break;
|
|
20
|
case 4:
|
|
21
|
itemdesc[i] = Ralsei's handmade book full of#various tips and tricks. ;
|
|
22
|
break;
|
|
23
|
case 5:
|
|
24
|
itemdesc[i] = Though broken, it seethes with power.#A master smith could fix it. ;
|
|
25
|
break;
|
|
26
|
case 6:
|
|
27
|
itemdesc[i] = This cake will make your taste buds#spin! Heals 160 HP to the team. ;
|
|
28
|
break;
|
|
29
|
case 7:
|
|
30
|
itemdesc[i] = A pastry in the shape of a top.#Heals 80 HP to the team. ;
|
|
31
|
break;
|
|
32
|
case 8:
|
|
33
|
itemdesc[i] = A mysterious black burger made of...#Hey, this is just burnt! +70HP ;
|
|
34
|
break;
|
|
35
|
case 9:
|
|
36
|
itemdesc[i] = A cookie shaped like Lancer's face.#Maybe not a cookie. Heals 5 HP? ;
|
|
37
|
break;
|
|
38
|
case 10:
|
|
39
|
itemdesc[i] = An enormous salad... but, it's just#lettuce, so it's worthless. +4HP ;
|
|
40
|
break;
|
|
41
|
case 11:
|
|
42
|
itemdesc[i] = A sandwich that can be split into 3.#Heals 30 HP to the team. ;
|
|
43
|
break;
|
|
44
|
case 12:
|
|
45
|
itemdesc[i] = Hearts, don't it!? It's filled with#divisive, clotty red jam. +??HP ;
|
|
46
|
break;
|
|
47
|
case 13:
|
|
48
|
itemdesc[i] = It's quite small, but some#people REALLY like it. +??HP ;
|
|
49
|
break;
|
|
50
|
case 14:
|
|
51
|
itemdesc[i] = You'd think it tastes perfect.#Heals 500HP. ;
|
|
52
|
break;
|
|
53
|
case 15:
|
|
54
|
itemdesc[i] = A dark roux with a delicate aroma.#Also... has worms in it. +50HP ;
|
|
55
|
break;
|
|
56
|
}
|
|
57
|
}
|
|
58
|
}
|