SCED/src/playercards/customizable/LivingInkUpgradeSheet.ttslua

65 lines
1.0 KiB
Plaintext
Raw Normal View History

-- Customizable Cards: Living Ink
-- Size information for buttons
boxSize = 40
-- static values
xInitial = -0.935
xOffset = 0.075
-- Locations of the skill selectors
2023-05-11 14:34:55 +02:00
SKILL_ICON_POSITIONS = {
2023-05-11 11:56:39 +02:00
willpower = { x = 0.085, z = -0.88 },
intellect = { x = -0.183, z = -0.88 },
2023-08-28 10:59:05 +02:00
combat = { x = -0.473, z = -0.88 },
agility = { x = -0.74, z = -0.88 },
}
customizations = {
[1] = { }, -- Empty placeholder for skill selection row, handled by custom skill display
[2] = {
checkboxes = {
posZ = -0.69,
count = 1,
}
},
[3] = {
checkboxes = {
posZ = -0.355,
count = 1,
}
},
[4] = {
checkboxes = {
posZ = 0.0855,
count = 2,
}
},
[5] = {
checkboxes = {
posZ = 0.425,
count = 2,
}
},
[6] = {
checkboxes = {
posZ = 0.555,
count = 3,
},
},
[7] = {
checkboxes = {
posZ = 0.685,
count = 3,
}
},
[8] = {
checkboxes = {
posZ = 1.02,
count = 3,
},
},
}
2023-05-11 14:34:55 +02:00
require("playercards/customizable/UpgradeSheetLibrary")