libram 0.8.37 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/diet/index.js +16 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/modifier.d.ts +4 -9
- package/dist/modifier.js +2 -17
- package/dist/modifierTypes.d.ts +4 -14
- package/dist/modifierTypes.js +3 -8
- package/dist/propertyTypes.d.ts +3 -3
- package/dist/propertyTypes.js +3 -3
- package/dist/resources/2010/CrownOfThrones.js +5 -0
- package/dist/resources/2014/DNALab.js +3 -3
- package/dist/resources/2020/RetroCape.js +6 -6
- package/package.json +17 -16
package/dist/diet/index.js
CHANGED
|
@@ -31,6 +31,7 @@ function expectedAdventures(item, modifiers) {
|
|
|
31
31
|
? 1.5
|
|
32
32
|
: 1.3;
|
|
33
33
|
const seasoningAdventures = max - min <= 1 ? 1 : 0.5;
|
|
34
|
+
const aioliAdventures = item.fullness;
|
|
34
35
|
const garish = modifiers.garish && item.notes?.includes("LASAGNA") && !isMonday();
|
|
35
36
|
const refinedPalate = modifiers.refinedPalate && item.notes?.includes("WINE");
|
|
36
37
|
const pinkyRing = modifiers.pinkyRing && item.notes?.includes("WINE");
|
|
@@ -55,6 +56,8 @@ function expectedAdventures(item, modifiers) {
|
|
|
55
56
|
adventures++;
|
|
56
57
|
if (itemType(item) === "food" && modifiers.seasoning)
|
|
57
58
|
adventures += seasoningAdventures;
|
|
59
|
+
if (itemType(item) === "food" && modifiers.aioli)
|
|
60
|
+
adventures += aioliAdventures;
|
|
58
61
|
if (itemType(item) === "food" && modifiers.whetStone)
|
|
59
62
|
adventures++;
|
|
60
63
|
return adventures;
|
|
@@ -234,6 +237,7 @@ class DietPlanner {
|
|
|
234
237
|
mug;
|
|
235
238
|
seasoning;
|
|
236
239
|
whetStone;
|
|
240
|
+
aioli;
|
|
237
241
|
spleenValue = 0;
|
|
238
242
|
constructor(mpa, menu) {
|
|
239
243
|
this.mpa = mpa;
|
|
@@ -249,6 +253,9 @@ class DietPlanner {
|
|
|
249
253
|
const whetStone = menu.find((item) => item.item === $item `whet stone`);
|
|
250
254
|
if (whetStone)
|
|
251
255
|
this.whetStone = whetStone;
|
|
256
|
+
const aioli = menu.find((item) => item.item === $item `mini kiwi aioli`);
|
|
257
|
+
if (aioli)
|
|
258
|
+
this.aioli = aioli;
|
|
252
259
|
this.mayoLookup = new Map();
|
|
253
260
|
if (mayoInstalled()) {
|
|
254
261
|
for (const mayo of [Mayo.flex, Mayo.zapine]) {
|
|
@@ -305,6 +312,7 @@ class DietPlanner {
|
|
|
305
312
|
forkMug: false,
|
|
306
313
|
seasoning: this.seasoning ? helpers.includes(this.seasoning) : false,
|
|
307
314
|
whetStone: this.whetStone ? helpers.includes(this.whetStone) : false,
|
|
315
|
+
aioli: this.aioli ? helpers.includes(this.aioli) : false,
|
|
308
316
|
mayoflex: this.mayoLookup.size
|
|
309
317
|
? helpers.some((item) => item.item === Mayo.flex)
|
|
310
318
|
: false,
|
|
@@ -326,14 +334,19 @@ class DietPlanner {
|
|
|
326
334
|
...defaultModifiers,
|
|
327
335
|
seasoning: false,
|
|
328
336
|
})) >
|
|
329
|
-
|
|
337
|
+
this.seasoning.price()) {
|
|
330
338
|
helpers.push(this.seasoning);
|
|
331
339
|
}
|
|
332
340
|
if (this.whetStone &&
|
|
333
341
|
itemType(menuItem.item) === "food" &&
|
|
334
|
-
this.mpa >
|
|
342
|
+
this.mpa > this.whetStone.price()) {
|
|
335
343
|
helpers.push(this.whetStone);
|
|
336
344
|
}
|
|
345
|
+
if (this.aioli &&
|
|
346
|
+
itemType(menuItem.item) === "food" &&
|
|
347
|
+
this.mpa * menuItem.item.fullness > this.aioli.price()) {
|
|
348
|
+
helpers.push(this.aioli);
|
|
349
|
+
}
|
|
337
350
|
const forkMug = itemType(menuItem.item) === "food"
|
|
338
351
|
? this.fork
|
|
339
352
|
: itemType(menuItem.item) === "booze"
|
|
@@ -590,6 +603,7 @@ class DietEntry {
|
|
|
590
603
|
forkMug: fork || mug,
|
|
591
604
|
seasoning: items.includes($item `Special Seasoning`),
|
|
592
605
|
whetStone: items.includes($item `whet stone`),
|
|
606
|
+
aioli: items.includes($item `mini kiwi aioli`),
|
|
593
607
|
mayoflex: items.includes(Mayo.flex),
|
|
594
608
|
refinedPalate: diet.refinedPalate,
|
|
595
609
|
garish: diet.garish,
|
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export * from "./diet/index.js";
|
|
|
8
8
|
export * from "./Dungeon.js";
|
|
9
9
|
export * from "./lib.js";
|
|
10
10
|
export * from "./maximize.js";
|
|
11
|
-
export { numericModifiers,
|
|
11
|
+
export { numericModifiers, booleanModifiers, stringModifiers, } from "./modifierTypes.js";
|
|
12
12
|
export * from "./mood.js";
|
|
13
13
|
export * from "./moonSign.js";
|
|
14
14
|
export * from "./propertyTyping.js";
|
|
@@ -26,4 +26,4 @@ export { get as getModifier, getTotalModifier } from "./modifier.js";
|
|
|
26
26
|
export { Session } from "./session.js";
|
|
27
27
|
export type { LogLevels } from "./logger.js";
|
|
28
28
|
export type { Modifiers } from "./modifier.js";
|
|
29
|
-
export type { NumericModifier, StringModifier,
|
|
29
|
+
export type { NumericModifier, StringModifier, BooleanModifier, } from "./modifierTypes.js";
|
package/dist/index.js
CHANGED
|
@@ -8,7 +8,7 @@ export * from "./diet/index.js";
|
|
|
8
8
|
export * from "./Dungeon.js";
|
|
9
9
|
export * from "./lib.js";
|
|
10
10
|
export * from "./maximize.js";
|
|
11
|
-
export { numericModifiers,
|
|
11
|
+
export { numericModifiers, booleanModifiers, stringModifiers, } from "./modifierTypes.js";
|
|
12
12
|
export * from "./mood.js";
|
|
13
13
|
export * from "./moonSign.js";
|
|
14
14
|
export * from "./propertyTyping.js";
|
package/dist/modifier.d.ts
CHANGED
|
@@ -1,16 +1,11 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { BooleanModifier,
|
|
1
|
+
import { Effect, Familiar, Item, Skill } from "kolmafia";
|
|
2
|
+
import { BooleanModifier, NumericModifier, StringModifier } from "./modifierTypes.js";
|
|
3
3
|
export declare function get(name: BooleanModifier, subject?: string | Item | Effect): boolean;
|
|
4
|
-
export declare function get(name: ClassModifier, subject: string | Item): Class;
|
|
5
|
-
export declare function get(name: EffectModifier, subject: string | Item): Effect;
|
|
6
|
-
export declare function get(name: MonsterModifier, subject: Effect): Monster;
|
|
7
4
|
export declare function get(name: NumericModifier, subject?: string | Item | Effect | Skill | Familiar): number;
|
|
8
|
-
export declare function get(name: SkillModifier, subject: string | Item): Skill;
|
|
9
5
|
export declare function get(name: StringModifier, subject?: string | Effect | Item): string;
|
|
10
|
-
export
|
|
11
|
-
export type ModifierValue<T> = T extends BooleanModifier ? boolean : T extends ClassModifier ? Class : T extends EffectModifier ? Effect : T extends MonsterModifier ? Monster : T extends NumericModifier ? number : T extends SkillModifier ? Skill : T extends StatModifier ? Stat : T extends StringModifier ? string : string;
|
|
6
|
+
export type ModifierValue<T> = T extends BooleanModifier ? boolean : T extends NumericModifier ? number : T extends StringModifier ? string : string;
|
|
12
7
|
export type Modifiers = Partial<{
|
|
13
|
-
[T in BooleanModifier |
|
|
8
|
+
[T in BooleanModifier | NumericModifier | StringModifier]: ModifierValue<T>;
|
|
14
9
|
}>;
|
|
15
10
|
/**
|
|
16
11
|
* Merge arbitrarily many Modifiers objects into one, summing all numeric modifiers, and ||ing all boolean modifiers.
|
package/dist/modifier.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { booleanModifier,
|
|
1
|
+
import { booleanModifier, cliExecuteOutput, familiarWeight, myFamiliar, numericModifier, print, stringModifier, } from "kolmafia";
|
|
2
2
|
import { have } from "./lib.js";
|
|
3
|
-
import { booleanModifiers,
|
|
3
|
+
import { booleanModifiers, numericModifiers, stringModifiers, } from "./modifierTypes.js";
|
|
4
4
|
import { $effect } from "./template-string.js";
|
|
5
5
|
import { arrayContains, sum } from "./utils.js";
|
|
6
6
|
/**
|
|
@@ -16,31 +16,16 @@ export function get(name, subject) {
|
|
|
16
16
|
? booleanModifier(name)
|
|
17
17
|
: booleanModifier(subject, name);
|
|
18
18
|
}
|
|
19
|
-
if (arrayContains(name, classModifiers)) {
|
|
20
|
-
return classModifier(subject, name);
|
|
21
|
-
}
|
|
22
|
-
if (arrayContains(name, effectModifiers)) {
|
|
23
|
-
return effectModifier(subject, name);
|
|
24
|
-
}
|
|
25
|
-
if (arrayContains(name, monsterModifiers)) {
|
|
26
|
-
return monsterModifier(subject, name);
|
|
27
|
-
}
|
|
28
19
|
if (arrayContains(name, numericModifiers)) {
|
|
29
20
|
return subject === undefined
|
|
30
21
|
? numericModifier(name)
|
|
31
22
|
: numericModifier(subject, name);
|
|
32
23
|
}
|
|
33
|
-
if (arrayContains(name, skillModifiers)) {
|
|
34
|
-
return skillModifier(subject, name);
|
|
35
|
-
}
|
|
36
24
|
if (arrayContains(name, stringModifiers)) {
|
|
37
25
|
return subject === undefined
|
|
38
26
|
? stringModifier(name)
|
|
39
27
|
: stringModifier(subject, name);
|
|
40
28
|
}
|
|
41
|
-
if (arrayContains(name, statModifiers)) {
|
|
42
|
-
return statModifier(subject, name);
|
|
43
|
-
}
|
|
44
29
|
}
|
|
45
30
|
/**
|
|
46
31
|
* Merge two Modifiers objects into one, summing all numeric modifiers, ||ing all boolean modifiers, and otherwise letting the second object overwrite the first.
|
package/dist/modifierTypes.d.ts
CHANGED
|
@@ -1,16 +1,6 @@
|
|
|
1
|
-
export declare const
|
|
1
|
+
export declare const stringModifiers: readonly ["Class", "Intrinsic Effect", "Equalize", "Wiki Name", "Modifiers", "Outfit", "Stat Tuning", "Effect", "Equips On", "Familiar Effect", "Jiggle", "Equalize Muscle", "Equalize Mysticality", "Equalize Moxie", "Avatar", "Rollover Effect", "Skill", "Floor Buffed Muscle", "Floor Buffed Mysticality", "Floor Buffed Moxie", "Plumber Stat", "Recipe", "Evaluated Modifiers"];
|
|
2
|
+
export type StringModifier = typeof stringModifiers[number];
|
|
3
|
+
export declare const booleanModifiers: readonly ["Softcore Only", "Single Equip", "Never Fumble", "Weakens Monster", "Free Pull", "Variable", "Nonstackable Watch", "Cold Immunity", "Hot Immunity", "Sleaze Immunity", "Spooky Immunity", "Stench Immunity", "Cold Vulnerability", "Hot Vulnerability", "Sleaze Vulnerability", "Spooky Vulnerability", "Stench Vulnerability", "Moxie Controls MP", "Moxie May Control MP", "Four Songs", "Adventure Underwater", "Underwater Familiar", "Generic", "Unarmed", "No Pull", "Lasts Until Rollover", "Attacks Can't Miss", "Pirate", "Breakable", "Drops Items", "Drops Meat", "Volleyball or Sombrero", "Extra Pickpocket", "Negative Status Resist"];
|
|
2
4
|
export type BooleanModifier = typeof booleanModifiers[number];
|
|
3
|
-
export declare const
|
|
4
|
-
export type ClassModifier = typeof classModifiers[number];
|
|
5
|
-
export declare const numericModifiers: readonly ["Familiar Weight", "Monster Level", "Combat Rate", "Initiative", "Experience", "Item Drop", "Meat Drop", "Damage Absorption", "Damage Reduction", "Cold Resistance", "Hot Resistance", "Sleaze Resistance", "Spooky Resistance", "Stench Resistance", "Mana Cost", "Moxie", "Moxie Percent", "Muscle", "Muscle Percent", "Mysticality", "Mysticality Percent", "Maximum HP", "Maximum HP Percent", "Maximum MP", "Maximum MP Percent", "Weapon Damage", "Ranged Damage", "Spell Damage", "Spell Damage Percent", "Cold Damage", "Hot Damage", "Sleaze Damage", "Spooky Damage", "Stench Damage", "Cold Spell Damage", "Hot Spell Damage", "Sleaze Spell Damage", "Spooky Spell Damage", "Stench Spell Damage", "Underwater Combat Rate", "Fumble", "HP Regen Min", "HP Regen Max", "MP Regen Min", "MP Regen Max", "Adventures", "Familiar Weight Percent", "Weapon Damage Percent", "Ranged Damage Percent", "Stackable Mana Cost", "Hobo Power", "Base Resting HP", "Resting HP Percent", "Bonus Resting HP", "Base Resting MP", "Resting MP Percent", "Bonus Resting MP", "Critical Hit Percent", "PvP Fights", "Volleyball", "Sombrero", "Leprechaun", "Fairy", "Meat Drop Penalty", "Hidden Familiar Weight", "Item Drop Penalty", "Initiative Penalty", "Food Drop", "Booze Drop", "Hat Drop", "Weapon Drop", "Offhand Drop", "Shirt Drop", "Pants Drop", "Accessory Drop", "Volleyball Effectiveness", "Sombrero Effectiveness", "Leprechaun Effectiveness", "Fairy Effectiveness", "Familiar Weight Cap", "Slime Resistance", "Slime Hates It", "Spell Critical Percent", "Muscle Experience", "Mysticality Experience", "Moxie Experience", "Effect Duration", "Candy Drop", "DB Combat Damage", "Sombrero Bonus", "Familiar Experience", "Sporadic Meat Drop", "Sporadic Item Drop", "Meat Bonus", "Pickpocket Chance", "Combat Mana Cost", "Muscle Experience Percent", "Mysticality Experience Percent", "Moxie Experience Percent", "Minstrel Level", "Muscle Limit", "Mysticality Limit", "Moxie Limit", "Song Duration", "Prismatic Damage", "Smithsness", "Supercold Resistance", "Reduce Enemy Defense", "Pool Skill", "Surgeonosity", "Familiar Damage", "Gear Drop", "Maximum Hooch", "Water Level", "Crimbot Outfit Power", "Familiar Tuning Muscle", "Familiar Tuning Mysticality", "Familiar Tuning Moxie", "Random Monster Modifiers", "Luck", "Othello Skill", "Disco Style", "Rollover Effect Duration", "Sixgun Damage", "Fishing Skill", "Additional Song", "Sprinkle Drop", "Absorb Adventures", "Absorb Stats", "Rubee Drop", "Kruegerand Drop", "WarBear Armor Penetration", "Clowniness", "Maximum PP", "Plumber Power", "Drippy Damage", "Drippy Resistance", "Energy", "Scrap", "Familiar Action Bonus", "Water"];
|
|
5
|
+
export declare const numericModifiers: readonly ["Familiar Weight", "Monster Level", "Combat Rate", "Initiative", "Experience", "Item Drop", "Meat Drop", "Damage Absorption", "Damage Reduction", "Cold Resistance", "Hot Resistance", "Sleaze Resistance", "Spooky Resistance", "Stench Resistance", "Mana Cost", "Moxie", "Moxie Percent", "Muscle", "Muscle Percent", "Mysticality", "Mysticality Percent", "Maximum HP", "Maximum HP Percent", "Maximum MP", "Maximum MP Percent", "Weapon Damage", "Ranged Damage", "Spell Damage", "Spell Damage Percent", "Cold Damage", "Hot Damage", "Sleaze Damage", "Spooky Damage", "Stench Damage", "Cold Spell Damage", "Hot Spell Damage", "Sleaze Spell Damage", "Spooky Spell Damage", "Stench Spell Damage", "Underwater Combat Rate", "Fumble", "HP Regen Min", "HP Regen Max", "MP Regen Min", "MP Regen Max", "Adventures", "Familiar Weight Percent", "Weapon Damage Percent", "Ranged Damage Percent", "Stackable Mana Cost", "Hobo Power", "Base Resting HP", "Resting HP Percent", "Bonus Resting HP", "Base Resting MP", "Resting MP Percent", "Bonus Resting MP", "Critical Hit Percent", "PvP Fights", "Volleyball", "Sombrero", "Leprechaun", "Fairy", "Meat Drop Penalty", "Hidden Familiar Weight", "Item Drop Penalty", "Initiative Penalty", "Food Drop", "Booze Drop", "Hat Drop", "Weapon Drop", "Offhand Drop", "Shirt Drop", "Pants Drop", "Accessory Drop", "Volleyball Effectiveness", "Sombrero Effectiveness", "Leprechaun Effectiveness", "Fairy Effectiveness", "Familiar Weight Cap", "Slime Resistance", "Slime Hates It", "Spell Critical Percent", "Muscle Experience", "Mysticality Experience", "Moxie Experience", "Effect Duration", "Candy Drop", "DB Combat Damage", "Sombrero Bonus", "Familiar Experience", "Sporadic Meat Drop", "Sporadic Item Drop", "Meat Bonus", "Pickpocket Chance", "Combat Mana Cost", "Muscle Experience Percent", "Mysticality Experience Percent", "Moxie Experience Percent", "Minstrel Level", "Muscle Limit", "Mysticality Limit", "Moxie Limit", "Song Duration", "Prismatic Damage", "Smithsness", "Supercold Resistance", "Reduce Enemy Defense", "Pool Skill", "Familiar Damage", "Gear Drop", "Maximum Hooch", "Water Level", "Crimbot Outfit Power", "Familiar Tuning Muscle", "Familiar Tuning Mysticality", "Familiar Tuning Moxie", "Random Monster Modifiers", "Luck", "Othello Skill", "Disco Style", "Rollover Effect Duration", "Sixgun Damage", "Fishing Skill", "Additional Song", "Sprinkle Drop", "Absorb Adventures", "Absorb Stats", "Rubee Drop", "Kruegerand Drop", "WarBear Armor Penetration", "Maximum PP", "Plumber Power", "Drippy Damage", "Drippy Resistance", "Energy", "Scrap", "Familiar Action Bonus", "Water", "Spleen Drop", "Potion Drop", "Sauce Spell Damage", "Monster Level Percent", "Food Fairy", "Booze Fairy", "Candy Fairy", "Food Fairy Effectiveness", "Booze Fairy Effectiveness", "Candy Fairy Effectiveness", "Damage Aura", "Sporadic Damage Aura", "Thorns", "Sporadic Thorns", "Stomach Capacity", "Liver Capacity", "Spleen Capacity", "Free Rests", "Leaves", "Elf Warfare Effectiveness", "Pirate Warfare Effectiveness", "MPC Drop", "Piece of Twelve Drop"];
|
|
6
6
|
export type NumericModifier = typeof numericModifiers[number];
|
|
7
|
-
export declare const effectModifiers: readonly ["Effect", "Rollover Effect"];
|
|
8
|
-
export type EffectModifier = typeof effectModifiers[number];
|
|
9
|
-
export declare const monsterModifiers: readonly ["Avatar"];
|
|
10
|
-
export type MonsterModifier = typeof monsterModifiers[number];
|
|
11
|
-
export declare const skillModifiers: readonly ["Skill"];
|
|
12
|
-
export type SkillModifier = typeof skillModifiers[number];
|
|
13
|
-
export declare const statModifiers: readonly ["Plumber Stat"];
|
|
14
|
-
export type StatModifier = typeof statModifiers[number];
|
|
15
|
-
export declare const stringModifiers: readonly ["Intrinsic Effect", "Equalize", "Wiki Name", "Modifiers", "Outfit", "Stat Tuning", "Equips On", "Familiar Effect", "Jiggle", "Equalize Muscle", "Equalize Mysticality", "Equalize Moxie", "Floor Buffed Muscle", "Floor Buffed Mysticality", "Floor Buffed Moxie"];
|
|
16
|
-
export type StringModifier = typeof stringModifiers[number];
|
package/dist/modifierTypes.js
CHANGED
|
@@ -1,9 +1,4 @@
|
|
|
1
1
|
// THIS FILE IS AUTOMATICALLY GENERATED. See tools/parseModifiers.ts for more information
|
|
2
|
-
export const
|
|
3
|
-
export const
|
|
4
|
-
export const numericModifiers = ["Familiar Weight", "Monster Level", "Combat Rate", "Initiative", "Experience", "Item Drop", "Meat Drop", "Damage Absorption", "Damage Reduction", "Cold Resistance", "Hot Resistance", "Sleaze Resistance", "Spooky Resistance", "Stench Resistance", "Mana Cost", "Moxie", "Moxie Percent", "Muscle", "Muscle Percent", "Mysticality", "Mysticality Percent", "Maximum HP", "Maximum HP Percent", "Maximum MP", "Maximum MP Percent", "Weapon Damage", "Ranged Damage", "Spell Damage", "Spell Damage Percent", "Cold Damage", "Hot Damage", "Sleaze Damage", "Spooky Damage", "Stench Damage", "Cold Spell Damage", "Hot Spell Damage", "Sleaze Spell Damage", "Spooky Spell Damage", "Stench Spell Damage", "Underwater Combat Rate", "Fumble", "HP Regen Min", "HP Regen Max", "MP Regen Min", "MP Regen Max", "Adventures", "Familiar Weight Percent", "Weapon Damage Percent", "Ranged Damage Percent", "Stackable Mana Cost", "Hobo Power", "Base Resting HP", "Resting HP Percent", "Bonus Resting HP", "Base Resting MP", "Resting MP Percent", "Bonus Resting MP", "Critical Hit Percent", "PvP Fights", "Volleyball", "Sombrero", "Leprechaun", "Fairy", "Meat Drop Penalty", "Hidden Familiar Weight", "Item Drop Penalty", "Initiative Penalty", "Food Drop", "Booze Drop", "Hat Drop", "Weapon Drop", "Offhand Drop", "Shirt Drop", "Pants Drop", "Accessory Drop", "Volleyball Effectiveness", "Sombrero Effectiveness", "Leprechaun Effectiveness", "Fairy Effectiveness", "Familiar Weight Cap", "Slime Resistance", "Slime Hates It", "Spell Critical Percent", "Muscle Experience", "Mysticality Experience", "Moxie Experience", "Effect Duration", "Candy Drop", "DB Combat Damage", "Sombrero Bonus", "Familiar Experience", "Sporadic Meat Drop", "Sporadic Item Drop", "Meat Bonus", "Pickpocket Chance", "Combat Mana Cost", "Muscle Experience Percent", "Mysticality Experience Percent", "Moxie Experience Percent", "Minstrel Level", "Muscle Limit", "Mysticality Limit", "Moxie Limit", "Song Duration", "Prismatic Damage", "Smithsness", "Supercold Resistance", "Reduce Enemy Defense", "Pool Skill", "
|
|
5
|
-
export const effectModifiers = ["Effect", "Rollover Effect"];
|
|
6
|
-
export const monsterModifiers = ["Avatar"];
|
|
7
|
-
export const skillModifiers = ["Skill"];
|
|
8
|
-
export const statModifiers = ["Plumber Stat"];
|
|
9
|
-
export const stringModifiers = ["Intrinsic Effect", "Equalize", "Wiki Name", "Modifiers", "Outfit", "Stat Tuning", "Equips On", "Familiar Effect", "Jiggle", "Equalize Muscle", "Equalize Mysticality", "Equalize Moxie", "Floor Buffed Muscle", "Floor Buffed Mysticality", "Floor Buffed Moxie"];
|
|
2
|
+
export const stringModifiers = ["Class", "Intrinsic Effect", "Equalize", "Wiki Name", "Modifiers", "Outfit", "Stat Tuning", "Effect", "Equips On", "Familiar Effect", "Jiggle", "Equalize Muscle", "Equalize Mysticality", "Equalize Moxie", "Avatar", "Rollover Effect", "Skill", "Floor Buffed Muscle", "Floor Buffed Mysticality", "Floor Buffed Moxie", "Plumber Stat", "Recipe", "Evaluated Modifiers"];
|
|
3
|
+
export const booleanModifiers = ["Softcore Only", "Single Equip", "Never Fumble", "Weakens Monster", "Free Pull", "Variable", "Nonstackable Watch", "Cold Immunity", "Hot Immunity", "Sleaze Immunity", "Spooky Immunity", "Stench Immunity", "Cold Vulnerability", "Hot Vulnerability", "Sleaze Vulnerability", "Spooky Vulnerability", "Stench Vulnerability", "Moxie Controls MP", "Moxie May Control MP", "Four Songs", "Adventure Underwater", "Underwater Familiar", "Generic", "Unarmed", "No Pull", "Lasts Until Rollover", "Attacks Can't Miss", "Pirate", "Breakable", "Drops Items", "Drops Meat", "Volleyball or Sombrero", "Extra Pickpocket", "Negative Status Resist"];
|
|
4
|
+
export const numericModifiers = ["Familiar Weight", "Monster Level", "Combat Rate", "Initiative", "Experience", "Item Drop", "Meat Drop", "Damage Absorption", "Damage Reduction", "Cold Resistance", "Hot Resistance", "Sleaze Resistance", "Spooky Resistance", "Stench Resistance", "Mana Cost", "Moxie", "Moxie Percent", "Muscle", "Muscle Percent", "Mysticality", "Mysticality Percent", "Maximum HP", "Maximum HP Percent", "Maximum MP", "Maximum MP Percent", "Weapon Damage", "Ranged Damage", "Spell Damage", "Spell Damage Percent", "Cold Damage", "Hot Damage", "Sleaze Damage", "Spooky Damage", "Stench Damage", "Cold Spell Damage", "Hot Spell Damage", "Sleaze Spell Damage", "Spooky Spell Damage", "Stench Spell Damage", "Underwater Combat Rate", "Fumble", "HP Regen Min", "HP Regen Max", "MP Regen Min", "MP Regen Max", "Adventures", "Familiar Weight Percent", "Weapon Damage Percent", "Ranged Damage Percent", "Stackable Mana Cost", "Hobo Power", "Base Resting HP", "Resting HP Percent", "Bonus Resting HP", "Base Resting MP", "Resting MP Percent", "Bonus Resting MP", "Critical Hit Percent", "PvP Fights", "Volleyball", "Sombrero", "Leprechaun", "Fairy", "Meat Drop Penalty", "Hidden Familiar Weight", "Item Drop Penalty", "Initiative Penalty", "Food Drop", "Booze Drop", "Hat Drop", "Weapon Drop", "Offhand Drop", "Shirt Drop", "Pants Drop", "Accessory Drop", "Volleyball Effectiveness", "Sombrero Effectiveness", "Leprechaun Effectiveness", "Fairy Effectiveness", "Familiar Weight Cap", "Slime Resistance", "Slime Hates It", "Spell Critical Percent", "Muscle Experience", "Mysticality Experience", "Moxie Experience", "Effect Duration", "Candy Drop", "DB Combat Damage", "Sombrero Bonus", "Familiar Experience", "Sporadic Meat Drop", "Sporadic Item Drop", "Meat Bonus", "Pickpocket Chance", "Combat Mana Cost", "Muscle Experience Percent", "Mysticality Experience Percent", "Moxie Experience Percent", "Minstrel Level", "Muscle Limit", "Mysticality Limit", "Moxie Limit", "Song Duration", "Prismatic Damage", "Smithsness", "Supercold Resistance", "Reduce Enemy Defense", "Pool Skill", "Familiar Damage", "Gear Drop", "Maximum Hooch", "Water Level", "Crimbot Outfit Power", "Familiar Tuning Muscle", "Familiar Tuning Mysticality", "Familiar Tuning Moxie", "Random Monster Modifiers", "Luck", "Othello Skill", "Disco Style", "Rollover Effect Duration", "Sixgun Damage", "Fishing Skill", "Additional Song", "Sprinkle Drop", "Absorb Adventures", "Absorb Stats", "Rubee Drop", "Kruegerand Drop", "WarBear Armor Penetration", "Maximum PP", "Plumber Power", "Drippy Damage", "Drippy Resistance", "Energy", "Scrap", "Familiar Action Bonus", "Water", "Spleen Drop", "Potion Drop", "Sauce Spell Damage", "Monster Level Percent", "Food Fairy", "Booze Fairy", "Candy Fairy", "Food Fairy Effectiveness", "Booze Fairy Effectiveness", "Candy Fairy Effectiveness", "Damage Aura", "Sporadic Damage Aura", "Thorns", "Sporadic Thorns", "Stomach Capacity", "Liver Capacity", "Spleen Capacity", "Free Rests", "Leaves", "Elf Warfare Effectiveness", "Pirate Warfare Effectiveness", "MPC Drop", "Piece of Twelve Drop"];
|