added upgradesheets for taboo'd customizables

This commit is contained in:
Chr1Z93 2023-09-01 18:48:40 +02:00
parent 4bfba69afc
commit 29edf598aa
5 changed files with 144 additions and 20 deletions

View File

@ -33,8 +33,8 @@
"IgnoreFoW": false,
"LayoutGroupSortIndex": 0,
"Locked": false,
"LuaScript": "",
"LuaScriptState": "",
"LuaScript": "require(\"playercards/customizable/PowerWordUpgradeSheetTaboo\")",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"MeasureMovement": false,
"Name": "Card",
"Nickname": "Power Word Upgrade Sheet (Taboo)",

View File

@ -33,8 +33,8 @@
"IgnoreFoW": false,
"LayoutGroupSortIndex": 0,
"Locked": false,
"LuaScript": "",
"LuaScriptState": "",
"LuaScript": "require(\"playercards/customizable/RunicAxeUpgradeSheetTaboo\")",
"LuaScriptState": "[[0,0,0,0,0,0,0,0,0,0],[\"\",\"\",\"\",\"\",\"\"]]",
"MeasureMovement": false,
"Name": "Card",
"Nickname": "Runic Axe Upgrade Sheet (Taboo)",

View File

@ -16,22 +16,24 @@ BONDED_CARD_LIST = {
}
UPGRADE_SHEET_LIST = {
"09040-c", -- Alchemical Distillation
"09023-c", -- Custom Modifications
"09059-c", -- Damning Testimony
"09041-c", -- Emperical Hypothesis
"09060-c", -- Friends in Low Places
"09101-c", -- Grizzled
"09061-c", -- Honed Instinct
"09021-c", -- Hunter's Armor
"09119-c", -- Hyperphysical Shotcaster
"09079-c", -- Living Ink
"09100-c", -- Makeshift Trap
"09099-c", -- Pocket Multi Tool
"09081-c", -- Power Word
"09022-c", -- Runic Axe
"09080-c", -- Summoned Servitor
"09042-c", -- Raven's Quill
"09040-c", -- Alchemical Distillation
"09023-c", -- Custom Modifications
"09059-c", -- Damning Testimony
"09041-c", -- Emperical Hypothesis
"09060-c", -- Friends in Low Places
"09101-c", -- Grizzled
"09061-c", -- Honed Instinct
"09021-c", -- Hunter's Armor
"09119-c", -- Hyperphysical Shotcaster
"09079-c", -- Living Ink
"09100-c", -- Makeshift Trap
"09099-c", -- Pocket Multi Tool
"09081-c", -- Power Word
"09081-t-c", -- Power Word (Taboo)
"09022-c", -- Runic Axe
"09022-t-c", -- Runic Axe (Taboo)
"09080-c", -- Summoned Servitor
"09042-c", -- Raven's Quill
}
EVOLVED_WEAKNESSES = {

View File

@ -0,0 +1,61 @@
-- Customizable Cards: Power Word (Taboo)
-- Color information for buttons
boxSize = 38
-- static values
xInitial = -0.933
xOffset = 0.069
customizations = {
[1] = {
checkboxes = {
posZ = -0.905,
count = 1,
}
},
[2] = {
checkboxes = {
posZ = -0.6,
count = 1,
}
},
[3] = {
checkboxes = {
posZ = -0.42,
count = 1,
}
},
[4] = {
checkboxes = {
posZ = -0.12,
count = 1,
}
},
[5] = {
checkboxes = {
posZ = 0.18,
count = 2,
},
},
[6] = {
checkboxes = {
posZ = 0.38,
count = 3,
}
},
[7] = {
checkboxes = {
posZ = 0.675,
count = 3,
},
},
[8] = {
checkboxes = {
posZ = 0.875,
count = 3,
},
},
}
require("playercards/customizable/UpgradeSheetLibrary")

View File

@ -0,0 +1,61 @@
-- Customizable Cards: Runic Axe (Taboo)
-- Color information for buttons
boxSize = 38
-- static values
xInitial = -0.935
xOffset = 0.0705
customizations = {
[1] = {
checkboxes = {
posZ = -0.92,
count = 1,
}
},
[2] = {
checkboxes = {
posZ = -0.715,
count = 1,
}
},
[3] = {
checkboxes = {
posZ = -0.415,
count = 1,
}
},
[4] = {
checkboxes = {
posZ = -0.018,
count = 2,
}
},
[5] = {
checkboxes = {
posZ = 0.265,
count = 1,
},
},
[6] = {
checkboxes = {
posZ = 0.66,
count = 3,
}
},
[7] = {
checkboxes = {
posZ = 0.86,
count = 3,
},
},
[8] = {
checkboxes = {
posZ = 1.065,
count = 4,
},
},
}
require("playercards/customizable/UpgradeSheetLibrary")