2022-11-17 18:26:30 -08:00
|
|
|
-- Customizable Cards: Living Ink
|
|
|
|
|
|
|
|
-- Size information for buttons
|
2023-05-11 14:34:55 +02:00
|
|
|
boxSize = 40
|
2022-11-17 18:26:30 -08:00
|
|
|
|
|
|
|
-- static values
|
2023-05-11 14:34:55 +02:00
|
|
|
x_1 = -0.935
|
|
|
|
x_offset = 0.075
|
2022-11-17 18:26:30 -08:00
|
|
|
|
|
|
|
-- 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
|
2022-11-17 18:26:30 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
-- 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 = {}
|
2022-11-17 18:26:30 -08:00
|
|
|
|
|
|
|
-- 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 },
|
2022-11-17 18:26:30 -08:00
|
|
|
}
|
|
|
|
|
2023-05-11 14:34:55 +02:00
|
|
|
require("playercards/customizable/UpgradeSheetLibrary")
|