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",
"type": "Asset",
"slot": "Ally",
"class": "Neutral",
"cost": 2,
"traits": "Ally. Creature.",

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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