SCED/src/playercards/customizable/HyperphysicalShotcasterUpgradeSheet.ttslua

71 lines
1.0 KiB
Plaintext
Raw Normal View History

2022-11-10 23:59:55 -08:00
-- Customizable Cards: Hyperphysical Shotcaster
-- Color information for buttons
boxSize = 38
-- static values
x_1 = -0.935
x_offset = 0.069
-- z-values (lines on the sheet)
posZ = {
-0.9,
-0.615,
-0.237,
0.232,
0.61,
0.988,
1.185
}
-- box setup (amount of boxes per line and amount of marked boxes in that line)
existingBoxes = { 2, 2, 2, 2, 2, 4, 4 }
inputBoxes = {}
customizations = {
[1] = {
checkboxes = {
posZ = -0.9,
count = 2,
}
},
[2] = {
checkboxes = {
posZ = -0.615,
count = 2,
}
},
[3] = {
checkboxes = {
posZ = -0.237,
count = 2,
}
},
[4] = {
checkboxes = {
posZ = 0.232,
count = 2,
}
},
[5] = {
checkboxes = {
posZ = 0.61,
count = 2,
},
},
[6] = {
checkboxes = {
posZ = 0.988,
count = 4,
}
},
[7] = {
checkboxes = {
posZ = 1.185,
count = 4,
},
},
}
2023-05-11 11:56:39 +02:00
require("playercards/customizable/UpgradeSheetLibrary")