diff --git a/build_utils.js b/build_utils.js index 01bb2b9..7d9d167 100644 --- a/build_utils.js +++ b/build_utils.js @@ -40,3 +40,33 @@ function levelToHPBase(level){ return 5*level + 5; } } + +let skp_order = ["str","dex","int","def","agi"]; +let skill = ["Strength", "Dexterity", "Intelligence", "Defense", "Agility"]; +let skp_elements = ["e","t","w","f","a"]; +let damageClasses = ["Neutral","Earth","Thunder","Water","Fire","Air"]; +// Set up item lists for quick access later. +let armorTypes = [ "helmet", "chestplate", "leggings", "boots" ]; +let accessoryTypes = [ "ring", "bracelet", "necklace" ]; +let weaponTypes = [ "wand", "spear", "bow", "dagger", "relik" ]; +let consumableTypes = [ "potion", "scroll", "food"]; +const attackSpeeds = ["SUPER_SLOW", "VERY_SLOW", "SLOW", "NORMAL", "FAST", "VERY_FAST", "SUPER_FAST"]; +const baseDamageMultiplier = [ 0.51, 0.83, 1.5, 2.05, 2.5, 3.1, 4.3 ]; +//0.51, 0.82, 1.50, 2.05, 2.50, 3.11, 4.27 +const classes = ["Warrior", "Assassin", "Mage", "Archer", "Shaman"]; +const tiers = ["Normal", "Unique", "Rare", "Legendary", "Fabled", "Mythic", "Set", "Crafted"] //I'm not sure why you would make a custom crafted but if you do you should be able to use it w/ the correct powder formula +const types = armorTypes.concat(accessoryTypes).concat(weaponTypes).concat(consumableTypes).map(x => x.substring(0,1).toUpperCase() + x.substring(1)); +let itemTypes = armorTypes.concat(accessoryTypes).concat(weaponTypes); + + +let elementIcons = ["\u2724","\u2726", "\u2749", "\u2739", "\u274b" ]; +let skpReqs = skp_order.map(x => x + "Req"); + +//File reading for ID translations for JSON purposes +let reversetranslations = new Map(); +let translations = new Map([["name", "name"], ["displayName", "displayName"], ["tier", "tier"], ["set", "set"], ["sockets", "slots"], ["type", "type"], ["dropType", "drop"], ["quest", "quest"], ["restrictions", "restrict"], ["damage", "nDam"], ["fireDamage", "fDam"], ["waterDamage", "wDam"], ["airDamage", "aDam"], ["thunderDamage", "tDam"], ["earthDamage", "eDam"], ["attackSpeed", "atkSpd"], ["health", "hp"], ["fireDefense", "fDef"], ["waterDefense", "wDef"], ["airDefense", "aDef"], ["thunderDefense", "tDef"], ["earthDefense", "eDef"], ["level", "lvl"], ["classRequirement", "classReq"], ["strength", "strReq"], ["dexterity", "dexReq"], ["intelligence", "intReq"], ["agility", "agiReq"], ["defense", "defReq"], ["healthRegen", "hprPct"], ["manaRegen", "mr"], ["spellDamage", "sdPct"], ["damageBonus", "mdPct"], ["lifeSteal", "ls"], ["manaSteal", "ms"], ["xpBonus", "xpb"], ["lootBonus", "lb"], ["reflection", "ref"], ["strengthPoints", "str"], ["dexterityPoints", "dex"], ["intelligencePoints", "int"], ["agilityPoints", "agi"], ["defensePoints", "def"], ["thorns", "thorns"], ["exploding", "expd"], ["speed", "spd"], ["attackSpeedBonus", "atkTier"], ["poison", "poison"], ["healthBonus", "hpBonus"], ["soulPoints", "spRegen"], ["emeraldStealing", "eSteal"], ["healthRegenRaw", "hprRaw"], ["spellDamageRaw", "sdRaw"], ["damageBonusRaw", "mdRaw"], ["bonusFireDamage", "fDamPct"], ["bonusWaterDamage", "wDamPct"], ["bonusAirDamage", "aDamPct"], ["bonusThunderDamage", "tDamPct"], ["bonusEarthDamage", "eDamPct"], ["bonusFireDefense", "fDefPct"], ["bonusWaterDefense", "wDefPct"], ["bonusAirDefense", "aDefPct"], ["bonusThunderDefense", "tDefPct"], ["bonusEarthDefense", "eDefPct"], ["type", "type"], ["identified", "fixID"], ["skin", "skin"], ["category", "category"], ["spellCostPct1", "spPct1"], ["spellCostRaw1", "spRaw1"], ["spellCostPct2", "spPct2"], ["spellCostRaw2", "spRaw2"], ["spellCostPct3", "spPct3"], ["spellCostRaw3", "spRaw3"], ["spellCostPct4", "spPct4"], ["spellCostRaw4", "spRaw4"], ["rainbowSpellDamageRaw", "rainbowRaw"], ["sprint", "sprint"], ["sprintRegen", "sprintReg"], ["jumpHeight", "jh"], ["lootQuality", "lq"], ["gatherXpBonus", "gXp"], ["gatherSpeed", "gSpd"]]); +for (const [k, v] of translations) { + reversetranslations.set(v, k); +} + +console.log(translations); diff --git a/builder.js b/builder.js index 696756a..82337c7 100644 --- a/builder.js +++ b/builder.js @@ -3,7 +3,7 @@ const url_tag = location.hash.slice(1); // console.log(url_tag); -const BUILD_VERSION = "7.0.9"; +const BUILD_VERSION = "7.0.10"; function setTitle() { let text; diff --git a/builder2.html b/builder2.html index c6667c7..003ad1b 100644 --- a/builder2.html +++ b/builder2.html @@ -993,9 +993,7 @@ - - diff --git a/builder3.html b/builder3.html index 21617ad..56be3de 100644 --- a/builder3.html +++ b/builder3.html @@ -993,9 +993,7 @@ - - diff --git a/index.html b/index.html index 4da4b72..edcb227 100644 --- a/index.html +++ b/index.html @@ -996,9 +996,7 @@ - - diff --git a/utils.js b/utils.js index ca7ba0b..ec8005d 100644 --- a/utils.js +++ b/utils.js @@ -1,36 +1,6 @@ let getUrl = window.location; const url_base = getUrl.protocol + "//" + getUrl.host + "/" + getUrl.pathname.split('/')[1]; -let skp_order = ["str","dex","int","def","agi"]; -let skill = ["Strength", "Dexterity", "Intelligence", "Defense", "Agility"]; -let skp_elements = ["e","t","w","f","a"]; -let damageClasses = ["Neutral","Earth","Thunder","Water","Fire","Air"]; -// Set up item lists for quick access later. -let armorTypes = [ "helmet", "chestplate", "leggings", "boots" ]; -let accessoryTypes = [ "ring", "bracelet", "necklace" ]; -let weaponTypes = [ "wand", "spear", "bow", "dagger", "relik" ]; -let consumableTypes = [ "potion", "scroll", "food"]; -const attackSpeeds = ["SUPER_SLOW", "VERY_SLOW", "SLOW", "NORMAL", "FAST", "VERY_FAST", "SUPER_FAST"]; -const baseDamageMultiplier = [ 0.51, 0.83, 1.5, 2.05, 2.5, 3.1, 4.3 ]; -//0.51, 0.82, 1.50, 2.05, 2.50, 3.11, 4.27 -const classes = ["Warrior", "Assassin", "Mage", "Archer", "Shaman"]; -const tiers = ["Normal", "Unique", "Rare", "Legendary", "Fabled", "Mythic", "Set", "Crafted"] //I'm not sure why you would make a custom crafted but if you do you should be able to use it w/ the correct powder formula -const types = armorTypes.concat(accessoryTypes).concat(weaponTypes).concat(consumableTypes).map(x => x.substring(0,1).toUpperCase() + x.substring(1)); -let itemTypes = armorTypes.concat(accessoryTypes).concat(weaponTypes); - - -let elementIcons = ["\u2724","\u2726", "\u2749", "\u2739", "\u274b" ]; -let skpReqs = skp_order.map(x => x + "Req"); - -//File reading for ID translations for JSON purposes -let reversetranslations = new Map(); -let translations = new Map([["name", "name"], ["displayName", "displayName"], ["tier", "tier"], ["set", "set"], ["sockets", "slots"], ["type", "type"], ["dropType", "drop"], ["quest", "quest"], ["restrictions", "restrict"], ["damage", "nDam"], ["fireDamage", "fDam"], ["waterDamage", "wDam"], ["airDamage", "aDam"], ["thunderDamage", "tDam"], ["earthDamage", "eDam"], ["attackSpeed", "atkSpd"], ["health", "hp"], ["fireDefense", "fDef"], ["waterDefense", "wDef"], ["airDefense", "aDef"], ["thunderDefense", "tDef"], ["earthDefense", "eDef"], ["level", "lvl"], ["classRequirement", "classReq"], ["strength", "strReq"], ["dexterity", "dexReq"], ["intelligence", "intReq"], ["agility", "agiReq"], ["defense", "defReq"], ["healthRegen", "hprPct"], ["manaRegen", "mr"], ["spellDamage", "sdPct"], ["damageBonus", "mdPct"], ["lifeSteal", "ls"], ["manaSteal", "ms"], ["xpBonus", "xpb"], ["lootBonus", "lb"], ["reflection", "ref"], ["strengthPoints", "str"], ["dexterityPoints", "dex"], ["intelligencePoints", "int"], ["agilityPoints", "agi"], ["defensePoints", "def"], ["thorns", "thorns"], ["exploding", "expd"], ["speed", "spd"], ["attackSpeedBonus", "atkTier"], ["poison", "poison"], ["healthBonus", "hpBonus"], ["soulPoints", "spRegen"], ["emeraldStealing", "eSteal"], ["healthRegenRaw", "hprRaw"], ["spellDamageRaw", "sdRaw"], ["damageBonusRaw", "mdRaw"], ["bonusFireDamage", "fDamPct"], ["bonusWaterDamage", "wDamPct"], ["bonusAirDamage", "aDamPct"], ["bonusThunderDamage", "tDamPct"], ["bonusEarthDamage", "eDamPct"], ["bonusFireDefense", "fDefPct"], ["bonusWaterDefense", "wDefPct"], ["bonusAirDefense", "aDefPct"], ["bonusThunderDefense", "tDefPct"], ["bonusEarthDefense", "eDefPct"], ["type", "type"], ["identified", "fixID"], ["skin", "skin"], ["category", "category"], ["spellCostPct1", "spPct1"], ["spellCostRaw1", "spRaw1"], ["spellCostPct2", "spPct2"], ["spellCostRaw2", "spRaw2"], ["spellCostPct3", "spPct3"], ["spellCostRaw3", "spRaw3"], ["spellCostPct4", "spPct4"], ["spellCostRaw4", "spRaw4"], ["rainbowSpellDamageRaw", "rainbowRaw"], ["sprint", "sprint"], ["sprintRegen", "sprintReg"], ["jumpHeight", "jh"], ["lootQuality", "lq"], ["gatherXpBonus", "gXp"], ["gatherSpeed", "gSpd"]]); -for (const [k, v] of translations) { - reversetranslations.set(v, k); -} - -console.log(translations); - function clamp(num, low, high){ return Math.min(Math.max(num, low), high); }