Gold Pile Sizes
From LSWiki
(diff) ←Older revision | Current revision | Newer revision→ (diff)
[OOC Twilight] switch(amount) {
[OOC Twilight] case 1 :
[OOC Twilight] break;
[OOC Twilight] case 2 :
[OOC Twilight] alter_identity(Identity_Adjunct_Nouns, ({ "couple" }));
[OOC Twilight] break;
[OOC Twilight] case 3 .. 10 :
[OOC Twilight] alter_identity(Identity_Adjunct_Nouns, ({ "small stack", "stack" }));
[OOC Twilight] break;
[OOC Twilight] case 11 .. 30 :
[OOC Twilight] alter_identity(Identity_Adjunct_Nouns, ({ "large stack", "stack" }));
[OOC Twilight] break;
[OOC Twilight] case 31 .. 80 :
[OOC Twilight] alter_identity(Identity_Adjunct_Nouns, ({ "small pile", "pile" }));
[OOC Twilight] break;
[OOC Twilight] case 81 .. 300 :
[OOC Twilight] alter_identity(Identity_Adjunct_Nouns, ({ "pile" }));
[OOC Twilight] break;
[OOC Twilight] case 301 .. 900 :
[OOC Twilight] alter_identity(Identity_Adjunct_Nouns, ({ "large pile", "pile" }));
[OOC Twilight] break;
[OOC Twilight] case 901 .. 1500 :
[OOC Twilight] alter_identity(Identity_Adjunct_Nouns, ({ "huge pile", "pile" }));
[OOC Twilight] break;
[OOC Twilight] case 1501 .. 3000 :
[OOC Twilight] alter_identity(Identity_Adjunct_Nouns, ({ "gigantic pile", "pile" }));
[OOC Twilight] break;
[OOC Twilight] case 3001 .. 6000 :
[OOC Twilight] alter_identity(Identity_Adjunct_Nouns, ({ "small mountain", "mountain" }));
[OOC Twilight] break;
[OOC Twilight] case 6001 .. 15000 :
[OOC Twilight] alter_identity(Identity_Adjunct_Nouns, ({ "mountain" }));
[OOC Twilight] break;
[OOC Twilight] case 15001 .. 25000 :
[OOC Twilight] alter_identity(Identity_Adjunct_Nouns, ({ "great big mountain", "big mountain", "mountain" }));
[OOC Twilight] break;
[OOC Twilight] case 25001 .. 50000 :
[OOC Twilight] alter_identity(Identity_Adjunct_Nouns, ({ "humongous mountain", "mountain" }));
[OOC Twilight] break;
[OOC Twilight] case 50001 .. 300000 :
[OOC Twilight] alter_identity(Identity_Adjunct_Nouns, ({ "truly stupendous mountain", "stupendous mountain", "mountain" }));
[OOC Twilight] break;
[OOC Twilight] case 300001 .. 10000000 :
[OOC Twilight] alter_identity(Identity_Adjunct_Nouns, ({ "absolutely amazing mountain", "amazing mountain", "mountain" }));
[OOC Twilight] break;
[OOC Twilight] default :
[OOC Twilight] if(intp(amount))
[OOC Twilight] alter_identity(Identity_Adjunct_Nouns, ({ "very strange pile", "strange pile", "pile" }));
[OOC Twilight] else
[OOC Twilight] alter_identity(Identity_Adjunct_Nouns, ({ "buggy pile", "pile" }));
[OOC Twilight] break;
[OOC Twilight] }