SCED/src/playercards/customizable/LivingInkUpgradeSheet.ttslua

34 lines
726 B
Plaintext
Raw Normal View History

-- Customizable Cards: Living Ink
-- Size information for buttons
2023-05-11 14:34:55 +02:00
boxSize = 40
-- static values
2023-05-11 14:34:55 +02:00
x_1 = -0.935
x_offset = 0.075
-- z-values (lines on the sheet)
2023-05-11 14:34:55 +02:00
posZ = {
2023-05-11 11:56:39 +02:00
-0.69,
-0.355,
0.0855,
0.425,
0.555,
0.685,
1.02
}
-- box setup (amount of boxes per line and amount of marked boxes in that line)
2023-05-11 14:34:55 +02:00
existingBoxes = { 1, 1, 2, 2, 3, 3, 3 }
inputBoxes = {}
-- 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 },
combat = { x = -0.473, z = -0.88 },
agility = { x = -0.74, z = -0.88 },
}
2023-05-11 14:34:55 +02:00
require("playercards/customizable/UpgradeSheetLibrary")