added handling for up to two tokens of the same type
This commit is contained in:
parent
b8a0b38e55
commit
9803845a97
@ -8,7 +8,7 @@
|
||||
"combatIcons": 4,
|
||||
"agilityIcons": 2,
|
||||
"cycle": "Path of the Righteous",
|
||||
"extraToken": "FreeTrigger",
|
||||
"extraToken": "FreeTrigger|FreeTrigger",
|
||||
"deck_requirements": {
|
||||
"size": 30,
|
||||
"randomBasicWeaknessCount": 1,
|
||||
|
@ -894,31 +894,53 @@ function maybeUpdateActiveInvestigator(card)
|
||||
|
||||
-- spawn three regular action tokens (investigator specific one in the bottom spot)
|
||||
for i = 1, 3 do
|
||||
-- get position
|
||||
local pos = self.positionToWorld(Vector(-1.54 + i * 0.17, 0, -0.28)):add(Vector(0, 0.2, 0))
|
||||
|
||||
tokenManager.spawnToken(pos, "universalActionAbility", self.getRotation(), function(spawned)
|
||||
tokenManager.spawnToken(pos, "universalActionAbility", self.getRotation(),
|
||||
function(spawned)
|
||||
spawned.call("updateClassAndSymbol", { class = activeInvestigatorClass, symbol = activeInvestigatorClass })
|
||||
end)
|
||||
end
|
||||
|
||||
-- spawn additional token (maybe specific for investigator)
|
||||
if extraToken and extraToken ~= "None" then
|
||||
-- set value to class if currently "nil"
|
||||
if extraToken ~= "None" then
|
||||
-- set to current class if nil
|
||||
extraToken = extraToken or activeInvestigatorClass
|
||||
|
||||
-- get position (on the investigator card for abilities)
|
||||
local pos
|
||||
if extraToken == "FreeTrigger" or extraToken == "Reaction" then
|
||||
pos = self.positionToWorld(Vector(-1, 0, 0.118)):add(Vector(0, 0.2, 0))
|
||||
else
|
||||
pos = self.positionToWorld(Vector(-1.54 + 4 * 0.17, 0, -0.28)):add(Vector(0, 0.2, 0))
|
||||
-- local positions
|
||||
local tokenSpawnPos = {
|
||||
action = {
|
||||
Vector(-0.86, 0, -0.28), -- left of the regular three actions
|
||||
Vector(-1.54, 0, -0.28), -- right of the regular three actions
|
||||
},
|
||||
ability = {
|
||||
Vector(-1, 0, 0.118), -- bottom left corner of the investigator card
|
||||
Vector(-1, 0, -0.118), -- top left corner of the investigator card
|
||||
}
|
||||
}
|
||||
|
||||
-- spawn tokens (split string by "|")
|
||||
local count = { action = 0, ability = 0 }
|
||||
for str in string.gmatch(extraToken, "([^|]+)") do
|
||||
local type = "action"
|
||||
if str == "FreeTrigger" or str == "Reaction" then
|
||||
type = "ability"
|
||||
end
|
||||
|
||||
tokenManager.spawnToken(pos, "universalActionAbility", self.getRotation(), function(spawned)
|
||||
spawned.call("updateClassAndSymbol", { class = activeInvestigatorClass, symbol = extraToken })
|
||||
count[type] = count[type] + 1
|
||||
if count[type] > 2 then
|
||||
print("More than two extra tokens of the same type are not supported.")
|
||||
else
|
||||
local localSpawnPos = tokenSpawnPos[type][count[type]]
|
||||
local globalSpawnPos = self.positionToWorld(localSpawnPos):add(Vector(0, 0.2, 0))
|
||||
|
||||
tokenManager.spawnToken(globalSpawnPos, "universalActionAbility", self.getRotation(),
|
||||
function(spawned)
|
||||
spawned.call("updateClassAndSymbol", { class = activeInvestigatorClass, symbol = str })
|
||||
end)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
---------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user