SCED/src/playercards/customizable/MakeshiftTrapUpgradeSheet.ttslua

71 lines
1.0 KiB
Plaintext
Raw Normal View History

2022-11-10 23:59:55 -08:00
-- Customizable Cards: Makeshift Trap
-- Color information for buttons
boxSize = 39
-- static values
x_1 = -0.935
x_offset = 0.0735
-- z-values (lines on the sheet)
posZ = {
-0.889,
-0.655,
-0.325,
-0.085,
0.252,
0.585,
0.927
}
-- box setup (amount of boxes per line and amount of marked boxes in that line)
existingBoxes = { 1, 1, 2, 2, 2, 3, 4 }
inputBoxes = {}
customizations = {
[1] = {
checkboxes = {
posZ = -0.889,
count = 1,
}
},
[2] = {
checkboxes = {
posZ = -0.655,
count = 1,
}
},
[3] = {
checkboxes = {
posZ = -0.325,
count = 2,
}
},
[4] = {
checkboxes = {
posZ = -0.085,
count = 2,
}
},
[5] = {
checkboxes = {
posZ = 0.252,
count = 2,
},
},
[6] = {
checkboxes = {
posZ = 0.585,
count = 3,
}
},
[7] = {
checkboxes = {
posZ = 0.927,
count = 4,
},
},
}
2023-05-11 11:56:39 +02:00
require("playercards/customizable/UpgradeSheetLibrary")