Merge branch 'main' into api-additions

This commit is contained in:
Chr1Z93 2024-05-09 19:25:55 +02:00
commit 24cbee2e00
13 changed files with 19 additions and 3 deletions

View File

@ -1,6 +1,7 @@
{ {
"id": "10642", "id": "10642",
"type": "Asset", "type": "Asset",
"slot": "Ally",
"class": "Neutral", "class": "Neutral",
"cost": 2, "cost": 2,
"traits": "Ally. Creature.", "traits": "Ally. Creature.",

View File

@ -1,6 +1,7 @@
{ {
"id": "10714", "id": "10714",
"type": "Asset", "type": "Asset",
"slot": "Accessory",
"class": "Neutral", "class": "Neutral",
"cost": 1, "cost": 1,
"willpowerIcons": 1, "willpowerIcons": 1,

View File

@ -1,6 +1,7 @@
{ {
"id": "10702", "id": "10702",
"type": "Asset", "type": "Asset",
"slot": "Ally",
"class": "Neutral", "class": "Neutral",
"cost": 4, "cost": 4,
"traits": "Ally. Miskatonic. Wayfarer.", "traits": "Ally. Miskatonic. Wayfarer.",

View File

@ -1,6 +1,7 @@
{ {
"id": "10703", "id": "10703",
"type": "Asset", "type": "Asset",
"slot": "Ally",
"class": "Neutral", "class": "Neutral",
"cost": 3, "cost": 3,
"traits": "Ally. Hunter.", "traits": "Ally. Hunter.",

View File

@ -1,6 +1,7 @@
{ {
"id": "10548", "id": "10548",
"type": "Asset", "type": "Asset",
"slot": "Accessory",
"class": "Neutral", "class": "Neutral",
"cost": 1, "cost": 1,
"traits": "Item. Charm. Cursed.", "traits": "Item. Charm. Cursed.",

View File

@ -4,5 +4,12 @@
"class": "Neutral", "class": "Neutral",
"cost": 2, "cost": 2,
"traits": "Item. Relic. Colour.", "traits": "Item. Relic. Colour.",
"uses": [
{
"count": 4,
"type": "Brilliance",
"token": "resource"
}
],
"cycle": "The Feast of Hemlock Vale" "cycle": "The Feast of Hemlock Vale"
} }

View File

@ -1,6 +1,7 @@
{ {
"id": "10715", "id": "10715",
"type": "Asset", "type": "Asset",
"slot": "Hand",
"class": "Neutral", "class": "Neutral",
"cost": 1, "cost": 1,
"traits": "Item. Tome.", "traits": "Item. Tome.",

View File

@ -1,6 +1,7 @@
{ {
"id": "10713", "id": "10713",
"type": "Asset", "type": "Asset",
"slot": "Accessory",
"class": "Neutral", "class": "Neutral",
"cost": 1, "cost": 1,
"traits": "Item. Charm. Blessed.", "traits": "Item. Charm. Blessed.",

View File

@ -19,7 +19,7 @@
}, },
"ImageScalar": 1, "ImageScalar": 1,
"ImageSecondaryURL": "", "ImageSecondaryURL": "",
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/2172484009093238162/ACF3BBD93CB517B0BD0952E9BB78A2D35A62F377/", "ImageURL": "http://cloud-3.steamusercontent.com/ugc/2467486908540932616/8370C75D2789E1332836D8C2A31D32542153DE85/",
"WidthScale": 0 "WidthScale": 0
}, },
"Description": "Press a numpad key to spawn the indicated token.", "Description": "Press a numpad key to spawn the indicated token.",

View File

@ -2,6 +2,7 @@ VALID_TOKENS = {
["Bless"] = true ["Bless"] = true
} }
SHOW_SINGLE_RELEASE = true
SHOW_MULTI_RELEASE = 3 SHOW_MULTI_RELEASE = 3
SHOW_MULTI_RETURN = 3 SHOW_MULTI_RETURN = 3

View File

@ -2,6 +2,7 @@ VALID_TOKENS = {
["Bless"] = true ["Bless"] = true
} }
KEEP_OPEN = true
SHOW_SINGLE_RELEASE = true SHOW_SINGLE_RELEASE = true
require("playercards/CardsThatSealTokens") require("playercards/CardsThatSealTokens")

View File

@ -2,7 +2,7 @@ VALID_TOKENS = {
["Bless"] = true ["Bless"] = true
} }
SHOW_SINGLE_RELEASE = true
KEEP_OPEN = true KEEP_OPEN = true
SHOW_SINGLE_RELEASE = true
require("playercards/CardsThatSealTokens") require("playercards/CardsThatSealTokens")

View File

@ -952,7 +952,7 @@ function drawChaosTokenButton(_, _, isRightClick)
end end
function drawEncounterCard(_, _, isRightClick) function drawEncounterCard(_, _, isRightClick)
local drawPos = getEncounterCardDrawPosition(isRightClick) local drawPos = getEncounterCardDrawPosition(not isRightClick)
mythosAreaApi.drawEncounterCard(matColor, drawPos) mythosAreaApi.drawEncounterCard(matColor, drawPos)
end end