more
This commit is contained in:
parent
37087d08a7
commit
0b9ff1363b
45 changed files with 680 additions and 890 deletions
|
|
@ -89,7 +89,6 @@
|
|||
this.powerItemMode = mode;
|
||||
this.powerEffectKind = mode;
|
||||
this.powerEffectPulse = Math.max(this.powerEffectPulse || 0, 3.2);
|
||||
this.bubble(mode === "protein" ? "ムキッ" : "へにゃ", 1.0, ITEM_EFFECT_COLORS[mode]);
|
||||
this.spawnPowerItemEffect(mode, 1.5);
|
||||
return true;
|
||||
},
|
||||
|
|
@ -102,7 +101,6 @@
|
|||
this.refreshEffectiveSize();
|
||||
this.powerEffectKind = mode;
|
||||
this.powerEffectPulse = Math.max(this.powerEffectPulse || 0, 4.0);
|
||||
this.bubble(mode === "giant_drug" ? "でかっ" : "ちまっ", 1.0, ITEM_EFFECT_COLORS[mode]);
|
||||
this.spawnPowerItemEffect(mode, mode === "giant_drug" ? 1.9 : 1.2);
|
||||
return true;
|
||||
},
|
||||
|
|
@ -118,7 +116,6 @@
|
|||
if (Number.isFinite(this.mercuryLifeSpanBase)) this.lifeSpan = Math.max(this.age + 5, this.mercuryLifeSpanBase * this.mercuryLifeMultiplier);
|
||||
this.powerEffectKind = "mercury";
|
||||
this.powerEffectPulse = Math.max(this.powerEffectPulse || 0, 2.7);
|
||||
this.bubble(`Hg x${this.mercuryLifeMultiplier.toFixed(2)}`, 1.2, ITEM_EFFECT_COLORS.mercury);
|
||||
this.spawnPowerItemEffect("mercury", 0.95);
|
||||
return true;
|
||||
},
|
||||
|
|
@ -142,7 +139,6 @@
|
|||
this.powerEffectKind = "zunda_juice";
|
||||
this.powerEffectPulse = Math.max(this.powerEffectPulse || 0, 2.2);
|
||||
this.refreshEffectiveSize();
|
||||
this.bubble("すっきり", 1.2, ITEM_EFFECT_COLORS.zunda_juice);
|
||||
this.spawnPowerItemEffect("zunda_juice", 1.4);
|
||||
return true;
|
||||
},
|
||||
|
|
@ -153,7 +149,6 @@
|
|||
let applied = [];
|
||||
if (type === "laxative") {
|
||||
this.setTimedItemEffect("laxative", Math.round(60 * scale));
|
||||
this.bubble("ぐるる", 1.2, ITEM_EFFECT_COLORS.laxative);
|
||||
this.spawnPowerItemEffect("laxative", 0.75);
|
||||
applied.push("laxative");
|
||||
} else if (type === "protein") {
|
||||
|
|
@ -164,7 +159,6 @@
|
|||
applied.push("niteropu");
|
||||
} else if (type === "ammo") {
|
||||
this.setTimedItemEffect("ammo", Math.round(18 * scale));
|
||||
this.bubble("ドン", 0.9, ITEM_EFFECT_COLORS.ammo);
|
||||
this.spawnPowerItemEffect("ammo", 1.1);
|
||||
applied.push("ammo");
|
||||
} else if (type === "mercury") {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue