Compare commits

..

33 Commits

Author SHA1 Message Date
bc03ffd88a Fix positions for new action tokens
All checks were successful
Build and Release / Build and Release (push) Successful in 1m7s
2024-07-27 23:06:23 -04:00
85cb7bc7e2 Merge branch 'master' into patches 2024-07-27 22:53:03 -04:00
e5aea0cf67 3.9.0 2024-07-27 21:47:52 -04:00
d41b69bf4a 3.8.0 2024-06-09 10:10:21 -04:00
ff647aeaae Re-add arkhamdb_reinit to deck importer
All checks were successful
Build and Release / Build and Release (push) Successful in 32s
2024-04-28 10:52:15 -04:00
2a0701c8f4 Switch to JS based release action
All checks were successful
Build and Release / Build and Release (push) Successful in 32s
2024-04-28 10:12:41 -04:00
c3f686e633 Remove player hand token discard zones, as they are annoying
Some checks failed
Build and Release / Build and Release (push) Failing after 2m28s
2024-04-28 09:50:31 -04:00
e99f60bf3f Merge branch 'master' into patches 2024-04-28 09:50:02 -04:00
f3c9f3af0b 3.7.0 2024-03-10 09:56:22 -04:00
a192e617ae Fix positions of Red/Green TokenDiscardZone
All checks were successful
Build and Release / Build and Release (push) Successful in 2m23s
2024-02-17 20:09:56 -05:00
8b0a6f9635 Merge branch 'master' into patches 2024-02-17 19:54:22 -05:00
7a5ce98c41 3.6.0 2024-02-17 19:48:30 -05:00
13dfbdd7cc Change default player count to 4
All checks were successful
Build and Release / Build and Release (push) Successful in 2m18s
2024-02-04 12:38:34 -05:00
a8768d4927 Remove some unneeded transforms 2024-02-04 12:35:06 -05:00
e15a95a712 Fix option panel settings 2024-02-04 12:34:49 -05:00
c412c3cfce Fix encounter card drawing for new Mythos Area scripting 2024-02-04 12:02:37 -05:00
bce71fa7ab Merge branch 'master' into patches 2024-02-04 12:02:29 -05:00
5047f9df39 3.5.0 2024-02-04 10:51:51 -05:00
b1f0b20bb6 3.4.0 2024-01-06 21:32:29 -05:00
7472131c54 3.3.0 2024-01-06 21:32:07 -05:00
7e1ed4f41a Merge branch 'master' into patches
All checks were successful
Build and Release / Build and Release (push) Successful in 5m16s
2023-09-02 23:00:05 -04:00
a1b786fa07 3.2.0 2023-08-27 21:09:46 -04:00
5622e09558 Update gitea actions for new default base url
All checks were successful
Build and Release / Build and Release (push) Successful in 1m32s
2023-07-22 00:46:40 -04:00
852141d8a7 Set some more options on load
Some checks failed
Build and Release / Build and Release (push) Failing after 30s
- no clickable clue counters (was previously set, but poorly)
- use clickable resource counters
- enable token arranger
- enable chaos bag manager
2023-07-22 00:42:48 -04:00
c14d23da9e Fix positions of playermats 1 and 4 for "other doom in play" counter 2023-07-22 00:31:38 -04:00
b2237355f2 Increase size of playarea scale to include action tokens in upkeep 2023-07-22 00:26:00 -04:00
1294571f00 Fix playermat drawEncountercard() for new playerColor variable name 2023-07-22 00:15:42 -04:00
7a9afb4d80 Clean up/fix stuff broken in 3.1.0 update
All checks were successful
Build and Release / Build and Release (push) Successful in 1m12s
- Delete some unused snap points
- Fix position of action marker tiles
- Re-apply patch to hide clickable clue counters
- Re-apply encounter drawing patch
- Re-add `arkhamdb_reinit` function to deck importer
- Fix encounter discard positions for white board
- Fix encounter card draw for white playermat
2023-07-08 13:21:01 -04:00
b5d513e4d0 Apply changes from Save/Load roundtrip 2023-07-08 12:16:54 -04:00
c887920910 Replace Drone automatic releases with Gitea Actions workflow 2023-07-08 12:09:23 -04:00
f1cd01fd8f Hide update notes notecard 2023-07-08 12:08:10 -04:00
4a64456ad3 Merge branch 'master' into patches 2023-07-08 12:05:36 -04:00
f89222f8e6 3.1.0 2023-04-22 16:56:01 -04:00
2598 changed files with 132233 additions and 98109 deletions

View File

@ -1,23 +0,0 @@
kind: pipeline
type: docker
name: default
steps:
- name: build
image: python
commands:
- pip install git+https://git.adamgoldsmith.name/adam/tts_yaml_unpacker
- tts_yaml_unpacker pack unpacked.yaml "Arkham SCE Adam_${DRONE_TAG}.json"
- python -m zipfile -c "Arkham SCE Adam_${DRONE_TAG}.zip" "Arkham SCE Adam_${DRONE_TAG}.json"
- name: release
image: plugins/gitea-release
settings:
api_key:
from_secret: Gitea_API_Key
base_url: https://git.adamgoldsmith.name
files: "Arkham SCE Adam_${DRONE_TAG}.zip"
title: "Patched ${DRONE_TAG}"
trigger:
event:
- tag

View File

@ -0,0 +1,29 @@
name: Build and Release
on:
push:
tags:
- "*"
jobs:
build:
name: Build and Release
runs-on: ubuntu-latest
container: ghcr.io/catthehacker/ubuntu:act-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '>=3.11'
- name: Install tts_yaml_unpacker
run: pip install git+https://git.adamgoldsmith.name/adam/tts_yaml_unpacker
- name: Pack into Json
run: tts_yaml_unpacker pack unpacked.yaml "Arkham SCE Adam_${{ github.ref_name }}.json"
- name: zip json
run: python -m zipfile -c "Arkham SCE Adam_${{ github.ref_name }}.zip" "Arkham SCE Adam_${{ github.ref_name }}.json"
- name: Create Release
uses: akkuman/gitea-release-action@v1
env:
NODE_OPTIONS: '--experimental-fetch' # if nodejs < 18
with:
files: "Arkham SCE Adam_${{ github.ref_name }}.zip"
name: "Patched ${{ github.ref_name }}"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -10,30 +10,35 @@ ColorDiffuse:
Description: ''
DragSelectable: true
GMNotes: ''
GUID: b78dae
GUID: d628cc
Grid: true
GridProjection: false
Hands: false
HideWhenFaceDown: false
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
Locked: true
LuaScript: ''
LuaScriptState: ''
MeasureMovement: false
Name: Tablet
Nickname: Rulepop - Quick Rules Reference Site
Name: 3DText
Nickname: ''
Snap: true
Sticky: true
Tablet:
PageURL: https://rulepop.com/ahc/#about
Text:
Text: Featured Fan Content
colorstate:
b: 1
g: 1
r: 1
fontSize: 84
Tooltip: true
Transform:
posX: 20.67
posY: 2.74
posZ: -30.87
rotX: 0
rotY: 270
posX: -19.5
posY: 1.7
posZ: -87
rotX: 90
rotY: 90
rotZ: 0
scaleX: 1
scaleY: 1

View File

@ -45,14 +45,16 @@ __bundle_register("__root", function(require, _LOADED, __bundle_register, __bund
require("playercards/AllCardsBag")
end)
__bundle_register("playercards/AllCardsBag", function(require, _LOADED, __bundle_register, __bundle_modules)
local cardIdIndex = { }
local classAndLevelIndex = { }
local basicWeaknessList = { }
local uniqueWeaknessList = { }
local cycleIndex = { }
local guidReferenceApi = require("core/GUIDReferenceApi")
local cardIdIndex = {}
local classAndLevelIndex = {}
local basicWeaknessList = {}
local uniqueWeaknessList = {}
local cycleIndex = {}
local indexingDone = false
local allowRemoval = false
local otherCardsDetected = false
function onLoad()
self.addContextMenuItem("Rebuild Index", startIndexBuild)
@ -60,13 +62,13 @@ function onLoad()
Wait.frames(startIndexBuild, 30)
end
-- Called by Hotfix bags when they load. If we are still loading indexes, then
-- Called by Hotfix bags when they load. If we are still loading indexes, then
-- the all cards and hotfix bags are being loaded together, and we can ignore
-- this call as the hotfix will be included in the initial indexing. If it is
-- this call as the hotfix will be included in the initial indexing. If it is
-- called once indexing is complete it means the hotfix bag has been added
-- later, and we should rebuild the index to integrate the hotfix bag.
function rebuildIndexForHotfix()
if (indexingDone) then
if indexingDone then
startIndexBuild()
end
end
@ -74,301 +76,403 @@ end
-- Resets all current bag indexes
function clearIndexes()
indexingDone = false
cardIdIndex = { }
classAndLevelIndex = { }
classAndLevelIndex["Guardian-upgrade"] = { }
classAndLevelIndex["Seeker-upgrade"] = { }
classAndLevelIndex["Mystic-upgrade"] = { }
classAndLevelIndex["Survivor-upgrade"] = { }
classAndLevelIndex["Rogue-upgrade"] = { }
classAndLevelIndex["Neutral-upgrade"] = { }
classAndLevelIndex["Guardian-level0"] = { }
classAndLevelIndex["Seeker-level0"] = { }
classAndLevelIndex["Mystic-level0"] = { }
classAndLevelIndex["Survivor-level0"] = { }
classAndLevelIndex["Rogue-level0"] = { }
classAndLevelIndex["Neutral-level0"] = { }
cycleIndex = { }
basicWeaknessList = { }
uniqueWeaknessList = { }
cardIdIndex = {}
classAndLevelIndex = {}
classAndLevelIndex["Guardian-upgrade"] = {}
classAndLevelIndex["Seeker-upgrade"] = {}
classAndLevelIndex["Mystic-upgrade"] = {}
classAndLevelIndex["Survivor-upgrade"] = {}
classAndLevelIndex["Rogue-upgrade"] = {}
classAndLevelIndex["Neutral-upgrade"] = {}
classAndLevelIndex["Guardian-level0"] = {}
classAndLevelIndex["Seeker-level0"] = {}
classAndLevelIndex["Mystic-level0"] = {}
classAndLevelIndex["Survivor-level0"] = {}
classAndLevelIndex["Rogue-level0"] = {}
classAndLevelIndex["Neutral-level0"] = {}
cycleIndex = {}
basicWeaknessList = {}
uniqueWeaknessList = {}
end
-- Clears the bag indexes and starts the coroutine to rebuild the indexes
function startIndexBuild(playerColor)
function startIndexBuild()
clearIndexes()
startLuaCoroutine(self, "buildIndex")
end
function onObjectLeaveContainer(container, object)
if (container == self and not allowRemoval) then
broadcastToAll(
"Removing cards from the All Player Cards bag may break some functions. Please replace the card.",
{0.9, 0.2, 0.2}
)
function onObjectLeaveContainer(container, _)
if container == self then
broadcastToAll("Removing cards from the All Player Cards bag may break some functions.", "Red")
end
end
-- Debug option to suppress the warning when cards are removed from the bag
function setAllowCardRemoval()
allowRemoval = true
end
-- Create the card indexes by iterating all cards in the bag, parsing their
-- metadata, and creating the keyed lookup tables for the cards. This is a
-- coroutine which will spread the workload by processing 20 cards before
-- yielding. Based on the current count of cards this will require
-- approximately 60 frames to complete.
-- Create the card indexes by iterating all cards in the bag, parsing their metadata
-- and creating the keyed lookup tables for the cards. This is a coroutine which will
-- spread the workload by processing 20 cards before yielding.
function buildIndex()
local cardCount = 0
indexingDone = false
if (self.getData().ContainedObjects == nil) then
return 1
end
for i, cardData in ipairs(self.getData().ContainedObjects) do
local cardMetadata = JSON.decode(cardData.GMNotes)
if (cardMetadata ~= nil) then
addCardToIndex(cardData, cardMetadata)
end
if (i % 20 == 0) then
otherCardsDetected = false
-- process the allcardsbag itself
for _, cardData in ipairs(self.getData().ContainedObjects) do
addCardToIndex(cardData)
cardCount = cardCount + 1
if cardCount > 19 then
cardCount = 0
coroutine.yield(0)
end
end
local hotfixBags = getObjectsWithTag("AllCardsHotfix")
for _, hotfixBag in ipairs(hotfixBags) do
if (#hotfixBag.getObjects() > 0) then
for i, cardData in ipairs(hotfixBag.getData().ContainedObjects) do
local cardMetadata = JSON.decode(cardData.GMNotes)
if (cardMetadata ~= nil) then
addCardToIndex(cardData, cardMetadata)
-- process hotfix bags (and the additional playercards bag)
for _, hotfixBag in ipairs(getObjectsWithTag("AllCardsHotfix")) do
local hotfixData = hotfixBag.getData()
-- if the bag is empty, continue with the next bag
if not hotfixData.ContainedObjects then
goto nextBag
end
for _, cardData in ipairs(hotfixData.ContainedObjects) do
if cardData.ContainedObjects then
-- process containers
for _, deepCardData in ipairs(cardData.ContainedObjects) do
addCardToIndex(deepCardData)
cardCount = cardCount + 1
if cardCount > 19 then
cardCount = 0
coroutine.yield(0)
end
end
else
-- process single cards
addCardToIndex(cardData)
cardCount = cardCount + 1
if cardCount > 19 then
cardCount = 0
coroutine.yield(0)
end
end
end
::nextBag::
end
buildSupplementalIndexes()
updatePlayerCardPanel()
indexingDone = true
return 1
end
-- Adds a card to any indexes it should be a part of, based on its metadata.
-- Param cardData: TTS object data for the card
-- Param cardMetadata: SCED metadata for the card
function addCardToIndex(cardData, cardMetadata)
-- Adds a card to any indexes it should be a part of, based on its metadata
---@param cardData table TTS object data for the card
function addCardToIndex(cardData)
-- using the more efficient 'json.parse()' to speed this process up
local status, cardMetadata = pcall(function() return json.parse(cardData.GMNotes) end)
-- if an error happens, fallback to the regular parser
if status ~= true or cardMetadata == nil then
log("Fast parser failed for " .. cardData.Nickname .. ", using old parser instead.")
cardMetadata = JSON.decode(cardData.GMNotes)
end
-- if metadata was not valid JSON or empty, don't add the card
if not cardMetadata == nil then
log("Error parsing " .. cardData.Nickname)
return
end
-- use the ZoopGuid as fallback if no id present
cardMetadata.id = cardMetadata.id or cardMetadata.TtsZoopGuid
cardIdIndex[cardMetadata.id] = { data = cardData, metadata = cardMetadata }
if (cardMetadata.alternate_ids ~= nil) then
-- also add data for alternate ids
if cardMetadata.alternate_ids ~= nil then
for _, alternateId in ipairs(cardMetadata.alternate_ids) do
cardIdIndex[alternateId] = { data = cardData, metadata = cardMetadata }
end
end
end
-- Creates the supplemental indexes for classes, weaknesses etc.
function buildSupplementalIndexes()
for cardId, card in pairs(cardIdIndex) do
local cardData = card.data
local cardMetadata = card.metadata
-- If the ID key and the metadata ID don't match this is a duplicate card created by an
-- alternate_id, and we should skip it
if cardId == cardMetadata.id then
-- Add card to the basic weakness list, if appropriate. Some weaknesses have
-- multiple copies, and are added multiple times
if cardMetadata.weakness then
table.insert(uniqueWeaknessList, cardMetadata.id)
if cardMetadata.basicWeaknessCount ~= nil then
for i = 1, cardMetadata.basicWeaknessCount do
table.insert(basicWeaknessList, cardMetadata.id)
-- If the ID key and the metadata ID don't match this is a duplicate card created by an alternate_id, and we should skip it
if cardId == card.metadata.id then
-- Add card to the basic weakness list, if appropriate. Some weaknesses have multiple copies, and are added multiple times
if card.metadata.weakness then
table.insert(uniqueWeaknessList, card.metadata.id)
if card.metadata.basicWeaknessCount ~= nil then
for i = 1, card.metadata.basicWeaknessCount do
table.insert(basicWeaknessList, card.metadata.id)
end
end
end
-- Add the card to the appropriate class and level indexes
local isGuardian = false
local isSeeker = false
local isMystic = false
local isRogue = false
local isSurvivor = false
local isNeutral = false
local upgradeKey
-- Excludes signature cards (which have no class or level) and alternate
-- ID entries
if (cardMetadata.class ~= nil and cardMetadata.level ~= nil) then
isGuardian = string.match(cardMetadata.class, "Guardian")
isSeeker = string.match(cardMetadata.class, "Seeker")
isMystic = string.match(cardMetadata.class, "Mystic")
isRogue = string.match(cardMetadata.class, "Rogue")
isSurvivor = string.match(cardMetadata.class, "Survivor")
isNeutral = string.match(cardMetadata.class, "Neutral")
if (cardMetadata.level > 0) then
-- Excludes signature cards (which have no class or level)
if card.metadata.class ~= nil and card.metadata.level ~= nil then
local upgradeKey = "-level0"
if card.metadata.level > 0 then
upgradeKey = "-upgrade"
else
upgradeKey = "-level0"
end
if (isGuardian) then
table.insert(classAndLevelIndex["Guardian"..upgradeKey], cardMetadata.id)
end
if (isSeeker) then
table.insert(classAndLevelIndex["Seeker"..upgradeKey], cardMetadata.id)
end
if (isMystic) then
table.insert(classAndLevelIndex["Mystic"..upgradeKey], cardMetadata.id)
end
if (isRogue) then
table.insert(classAndLevelIndex["Rogue"..upgradeKey], cardMetadata.id)
end
if (isSurvivor) then
table.insert(classAndLevelIndex["Survivor"..upgradeKey], cardMetadata.id)
end
if (isNeutral) then
table.insert(classAndLevelIndex["Neutral"..upgradeKey], cardMetadata.id)
end
local cycleName = cardMetadata.cycle
-- parse classes (separated by "|") and add the card to the appropriate class and level indices
for str in card.metadata.class:gmatch("([^|]+)") do
table.insert(classAndLevelIndex[str .. upgradeKey], card.metadata.id)
end
-- add to cycle index
local cycleName = card.metadata.cycle
if cycleName ~= nil then
cycleName = string.lower(cycleName)
if string.match(cycleName, "return") then
cycleName = string.sub(cycleName, 11)
end
if cycleName == "the night of the zealot" then
cycleName = "core"
end
if cycleIndex[cycleName] == nil then
cycleIndex[cycleName] = { }
end
table.insert(cycleIndex[cycleName], cardMetadata.id)
-- remove "return to " from cycle names
cycleName = cycleName:gsub("return to ", "")
-- override cycle name for night of the zealot
cycleName = cycleName:gsub("the night of the zealot", "core")
else
-- track cards without defined cycle (should only be fan-made cards)
cycleName = "other"
otherCardsDetected = true
end
-- maybe initialize table
if cycleIndex[cycleName] == nil then
cycleIndex[cycleName] = {}
end
table.insert(cycleIndex[cycleName], card.metadata.id)
end
end
end
-- sort class and level indices
for _, indexTable in pairs(classAndLevelIndex) do
table.sort(indexTable, cardComparator)
end
-- sort cycle indices
for _, indexTable in pairs(cycleIndex) do
table.sort(indexTable)
end
-- sort weakness indices
table.sort(basicWeaknessList, cardComparator)
table.sort(uniqueWeaknessList, cardComparator)
end
-- Comparison function used to sort the class card bag indexes. Sorts by card
-- level, then name, then subname.
-- Comparison function used to sort the class card bag indexes. Sorts by card level, then name, then subname.
function cardComparator(id1, id2)
local card1 = cardIdIndex[id1]
local card2 = cardIdIndex[id2]
if (card1.metadata.level ~= card2.metadata.level) then
if card1.metadata.level ~= card2.metadata.level then
return card1.metadata.level < card2.metadata.level
end
if (card1.data.Nickname ~= card2.data.Nickname) then
elseif card1.data.Nickname ~= card2.data.Nickname then
return card1.data.Nickname < card2.data.Nickname
else
return card1.data.Description < card2.data.Description
end
return card1.data.Description < card2.data.Description
end
-- inform the player card panel about the presence of other cards (no cycle -> fan-made)
function updatePlayerCardPanel()
local panel = guidReferenceApi.getObjectByOwnerAndType("Mythos", "PlayerCardPanel")
panel.call("createXML", otherCardsDetected)
end
---@return boolean: If true, the bag is currently not indexing and ready to be accessed
function isIndexReady()
if not indexingDone then
broadcastToAll("Still loading player cards, please try again in a few seconds", { 0.9, 0.2, 0.2 })
end
return indexingDone
end
-- Returns a specific card from the bag, based on ArkhamDB ID
-- Params table:
-- id: String ID of the card to retrieve
-- Return: If the indexes are still being constructed, an empty table is
-- returned. Otherwise, a single table with the following fields
-- cardData: TTS object data, suitable for spawning the card
-- cardMetadata: Table of parsed metadata
---@param params table ID of the card to retrieve
---@return table: If the indexes are still being constructed, returns an empty table.
-- Otherwise, a single table with the following fields
-- data: TTS object data, suitable for spawning the card
-- metadata: Table of parsed metadata
function getCardById(params)
if (not indexingDone) then
broadcastToAll("Still loading player cards, please try again in a few seconds", {0.9, 0.2, 0.2})
return { }
end
if not isIndexReady() then return {} end
return cardIdIndex[params.id]
end
-- Returns a list of cards from the bag matching a class and level (0 or upgraded)
-- Params table:
-- class: String class to retrieve ("Guardian", "Seeker", etc)
-- isUpgraded: true for upgraded cards (Level 1-5), false for Level 0
-- Return: If the indexes are still being constructed, returns an empty table.
-- Otherwise, a list of tables, each with the following fields
-- cardData: TTS object data, suitable for spawning the card
-- cardMetadata: Table of parsed metadata
---@param params table
-- class: String class to retrieve ("Guardian", "Seeker", etc)
-- isUpgraded: true for upgraded cards (Level 1-5), false for Level 0
---@return table: If the indexes are still being constructed, returns an empty table.
-- Otherwise, a list of tables, each with the following fields
-- data: TTS object data, suitable for spawning the card
-- metadata: Table of parsed metadata
function getCardsByClassAndLevel(params)
if (not indexingDone) then
broadcastToAll("Still loading player cards, please try again in a few seconds", {0.9, 0.2, 0.2})
return { }
end
local upgradeKey
if (params.upgraded) then
if not isIndexReady() then return {} end
local upgradeKey = "-level0"
if params.upgraded then
upgradeKey = "-upgrade"
end
return classAndLevelIndex[params.class .. upgradeKey]
end
-- Returns a list of cards from the bag matching a cycle
---@param params table
-- cycle: String cycle to retrieve ("The Scarlet Keys" etc.)
-- sortByMetadata: true to sort the table by metadata instead of ID
---@return table: If the indexes are still being constructed, returns an empty table.
-- Otherwise, a list of tables, each with the following fields
-- data: TTS object data, suitable for spawning the card
-- metadata: Table of parsed metadata
function getCardsByCycle(params)
if not isIndexReady() then return {} end
if not params.sortByMetadata then
return cycleIndex[string.lower(params.cycle)]
end
-- sort list by metadata (useful for custom cards without proper IDs)
local cardList = {}
for _, id in ipairs(cycleIndex[string.lower(params.cycle)]) do
table.insert(cardList, id)
end
table.sort(cardList, metadataSortFunction)
return cardList
end
-- sorts cards by metadata: class, type, level, name and then description
function metadataSortFunction(id1, id2)
local card1 = cardIdIndex[id1]
local card2 = cardIdIndex[id2]
-- extract class per card
local classValue1 = getClassValueFromString(card1.metadata.class)
local classValue2 = getClassValueFromString(card2.metadata.class)
-- conversion tables to simplify type sorting
local typeConversion = {
Asset = 1,
Event = 2,
Skill = 3
}
if classValue1 ~= classValue2 then
return classValue1 < classValue2
elseif typeConversion[card1.metadata.type] ~= typeConversion[card2.metadata.type] then
return typeConversion[card1.metadata.type] < typeConversion[card2.metadata.type]
elseif card1.metadata.level ~= card2.metadata.level then
return card1.metadata.level < card2.metadata.level
elseif card1.data.Nickname ~= card2.data.Nickname then
return card1.data.Nickname < card2.data.Nickname
else
upgradeKey = "-level0"
return card1.data.Description < card2.data.Description
end
return classAndLevelIndex[params.class..upgradeKey];
end
function getCardsByCycle(cycleName)
if (not indexingDone) then
broadcastToAll("Still loading player cards, please try again in a few seconds", {0.9, 0.2, 0.2})
return { }
-- helper function to calculate the class value for sorting from the "|" separated string
function getClassValueFromString(s)
local classValueList = {
Guardian = 1,
Seeker = 2,
Rogue = 3,
Mystic = 4,
Survivor = 5,
Neutral = 6
}
local classValue = 0
for str in s:gmatch("([^|]+)") do
-- this sorts multiclass cards
classValue = classValue * 10 + classValueList[str]
end
return cycleIndex[string.lower(cycleName)]
return classValue
end
-- Searches the bag for cards which match the given name and returns a list. Note that this is
-- an O(n) search without index support. It may be slow.
-- Searches the bag for cards which match the given name and returns a list. Note that this is
-- an O(n) search without index support. It may be slow.
-- Parameter array must contain these fields to define the search:
-- name String or string fragment to search for names
-- exact Whether the name match should be exact
-- name: String or string fragment to search for names
-- exact: Whether the name match should be exact
function getCardsByName(params)
local name = params.name
local exact = params.exact
local results = { }
local results = {}
-- Track cards (by ID) that we've added to avoid duplicates that may come from alternate IDs
local addedCards = { }
local addedCards = {}
for _, cardData in pairs(cardIdIndex) do
if (not addedCards[cardData.metadata.id]) then
if (exact and (string.lower(cardData.data.Nickname) == string.lower(name)))
or (not exact and string.find(string.lower(cardData.data.Nickname), string.lower(name), 1, true)) then
table.insert(results, cardData)
addedCards[cardData.metadata.id] = true
table.insert(results, cardData)
addedCards[cardData.metadata.id] = true
end
end
end
return results
end
-- Gets a random basic weakness from the bag. Once a given ID has been returned
-- it will be removed from the list and cannot be selected again until a reload
-- occurs or the indexes are rebuilt, which will refresh the list to include all
-- weaknesses.
-- Return: String ID of the selected weakness.
-- Gets a random basic weakness from the bag. Once a given ID has been returned it will be
-- removed from the list and cannot be selected again until a reload occurs or the indexes
-- are rebuilt, which will refresh the list to include all weaknesses.
---@return string: ID of the selected weakness
function getRandomWeaknessId()
local availableWeaknesses = buildAvailableWeaknesses()
if (#availableWeaknesses > 0) then
local availableWeaknesses = buildAvailableWeaknesses()
if #availableWeaknesses > 0 then
return availableWeaknesses[math.random(#availableWeaknesses)]
end
end
-- Constructs a list of available basic weaknesses by starting with the full pool of basic
-- weaknesses then removing any which are currently in the play or deck construction areas
-- Return: Table array of weakness IDs which are valid to choose from
function buildAvailableWeaknesses()
local weaknessesInPlay = { }
---@param traits? string Trait(s) to use as filter
---@return table: Array of weakness IDs which are valid to choose from
function buildAvailableWeaknesses(traits)
local weaknessesInPlay = {}
local allObjects = getAllObjects()
for _, object in ipairs(allObjects) do
if (object.name == "Deck") then
if object.type == "Deck" then
for _, cardData in ipairs(object.getData().ContainedObjects) do
local cardMetadata = JSON.decode(cardData.GMNotes)
incrementWeaknessCount(weaknessesInPlay, cardMetadata)
incrementWeaknessCount(weaknessesInPlay, JSON.decode(cardData.GMNotes))
end
elseif (object.name == "Card") then
local cardMetadata = JSON.decode(object.getGMNotes())
incrementWeaknessCount(weaknessesInPlay, cardMetadata)
elseif object.type == "Card" then
incrementWeaknessCount(weaknessesInPlay, JSON.decode(object.getGMNotes()))
end
end
local availableWeaknesses = { }
local availableWeaknesses = {}
for _, weaknessId in ipairs(basicWeaknessList) do
if (weaknessesInPlay[weaknessId] ~= nil and weaknessesInPlay[weaknessId] > 0) then
weaknessesInPlay[weaknessId] = weaknessesInPlay[weaknessId] - 1
else
table.insert(availableWeaknesses, weaknessId)
if traits then
-- split the string into separate traits (separated by "|")
local allowedTraits = {}
for str in traits:gmatch("([^|]+)") do
-- remove dots
str = str:gsub("[%.]", "")
-- remove leading and trailing whitespace
str = str:match("^%s*(.-)%s*$")
-- make sure string ends with a dot
str = string.lower(str .. ".")
table.insert(allowedTraits, str)
end
-- make sure the trait is present on the weakness
local card = cardIdIndex[weaknessId]
for _, allowedTrait in ipairs(allowedTraits) do
if string.contains(string.lower(card.metadata.traits), allowedTrait) then
table.insert(availableWeaknesses, weaknessId)
break
end
end
else
table.insert(availableWeaknesses, weaknessId)
end
end
end
return availableWeaknesses
@ -384,8 +488,8 @@ end
-- Helper function that adds one to the table entry for the number of weaknesses in play
function incrementWeaknessCount(table, cardMetadata)
if (isBasicWeakness(cardMetadata)) then
if (table[cardMetadata.id] == nil) then
if isBasicWeakness(cardMetadata) then
if table[cardMetadata.id] == nil then
table[cardMetadata.id] = 1
else
table[cardMetadata.id] = table[cardMetadata.id] + 1
@ -395,9 +499,61 @@ end
function isBasicWeakness(cardMetadata)
return cardMetadata ~= nil
and cardMetadata.weakness
and cardMetadata.basicWeaknessCount ~= nil
and cardMetadata.basicWeaknessCount > 0
and cardMetadata.weakness
and cardMetadata.basicWeaknessCount ~= nil
and cardMetadata.basicWeaknessCount > 0
end
end)
__bundle_register("core/GUIDReferenceApi", function(require, _LOADED, __bundle_register, __bundle_modules)
do
local GUIDReferenceApi = {}
local function getGuidHandler()
return getObjectFromGUID("123456")
end
-- Returns the matching object
---@param owner string Parent object for this search
---@param type string Type of object to search for
---@return any: Object reference to the matching object
GUIDReferenceApi.getObjectByOwnerAndType = function(owner, type)
return getGuidHandler().call("getObjectByOwnerAndType", { owner = owner, type = type })
end
-- Returns all matching objects as a table with references
---@param type string Type of object to search for
---@return table: List of object references to matching objects
GUIDReferenceApi.getObjectsByType = function(type)
return getGuidHandler().call("getObjectsByType", type)
end
-- Returns all matching objects as a table with references
---@param owner string Parent object for this search
---@return table: List of object references to matching objects
GUIDReferenceApi.getObjectsByOwner = function(owner)
return getGuidHandler().call("getObjectsByOwner", owner)
end
-- Sends new information to the reference handler to edit the main index
---@param owner string Parent of the object
---@param type string Type of the object
---@param guid string GUID of the object
GUIDReferenceApi.editIndex = function(owner, type, guid)
return getGuidHandler().call("editIndex", {
owner = owner,
type = type,
guid = guid
})
end
-- Returns the owner of an object or the object it's located on
---@param object tts__GameObject Object for this search
---@return string: Parent of the object or object it's located on
GUIDReferenceApi.getOwnerOfObject = function(object)
return getGuidHandler().call("getOwnerOfObject", object)
end
return GUIDReferenceApi
end
end)
return __bundle_require("__root")

View File

@ -10,11 +10,67 @@ ColorDiffuse:
g: 0.36652
r: 0.70588
ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Subject 5U-21 758b0a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Subject 5U-21 12d3de.yaml'
- !include 'Bag All Player Cards 15bb07/Card Regurgitation 0a1b3a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Reality Acid 0a1b3a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Reality Acid Reference 858b0a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ravenous 558b0a.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Rex Murphy (Parallel) 0a5492.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Rex Murphy (Parallel Back) 0a5493.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Rex Murphy (Parallel Front) 0a5494.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Search for the Truth 4156dd.yaml'
- !include 'Bag All Player Cards 15bb07/Card Rex''s Curse 033a36.yaml'
- !include 'Bag All Player Cards 15bb07/Card Charlie Kane 4deeff.yaml'
- !include 'Bag All Player Cards 15bb07/Card Finn Edwards dd40c0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Monterey Jack 46b145.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Monterey Jack (Parallel) 46b146.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Monterey Jack (Parallel Back) 46b148.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Monterey Jack (Parallel Front)
46b147.yaml'
- !include 'Bag All Player Cards 15bb07/Card If it bleeds... acf2b0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Beat Cop (2) 7001be.yaml'
- !include 'Bag All Player Cards 15bb07/Card Book of Living Myths c5fb1f.yaml'
- !include 'Bag All Player Cards 15bb07/Card Weeping Yurei 541bd9.yaml'
- !include "Bag All Player Cards 15bb07/CardCustom K\u014Dhaku Narukami cea427.yaml"
- !include "Bag All Player Cards 15bb07/Card K\u014Dhaku Narukami 54eaa7.yaml"
- !include 'Bag All Player Cards 15bb07/Card Ad Hoc c9fb2f.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hasty Repairs 0821d5.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Wilson Richards ceb426.yaml'
- !include 'Bag All Player Cards 15bb07/Card Wilson Richards 55eab5.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ancestral Token c1fb1f.yaml'
- !include 'Bag All Player Cards 15bb07/Card Aetheric Current (Yoth) 84ad64.yaml'
- !include 'Bag All Player Cards 15bb07/Card Aetheric Current (Yuggoth) 84ad65.yaml'
- !include 'Bag All Player Cards 15bb07/Card Failed Experiment acd281.yaml'
- !include 'Bag All Player Cards 15bb07/Card Flux Stabilizer 55990a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Kate Winthrop ce2322.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Kate Winthrop ce2323.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hatchet (1) 2ea0d3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Token of Faith (3) 2ea0d1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Transmogrify 9965dd.yaml'
- !include 'Bag All Player Cards 15bb07/Card Absolution aef183.yaml'
- !include 'Bag All Player Cards 15bb07/Card Confound (3) 9965de.yaml'
- !include 'Bag All Player Cards 15bb07/Card Strong-Armed (1) 294d6.yaml'
- !include 'Bag All Player Cards 15bb07/Card Survival Technique (2) 2ea0d4.yaml'
- !include 'Bag All Player Cards 15bb07/Card Scrimshaw Charm c1fb2e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Vamp (3) add233.yaml'
- !include 'Bag All Player Cards 15bb07/Card Well-Dressed c6ac33.yaml'
- !include 'Bag All Player Cards 15bb07/Card Fine Tuning (1) 103fbd.yaml'
- !include 'Bag All Player Cards 15bb07/Card Prismatic Spectacles (2) 3adcf5.yaml'
- !include 'Bag All Player Cards 15bb07/Card Drain Essence 9965aa.yaml'
- !include 'Bag All Player Cards 15bb07/Card Fake Credentials acd38d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Cat Mask 847ed6.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hard Times 876557.yaml'
- !include 'Bag All Player Cards 15bb07/Card Pete''s Guitar 876557.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ashcan Pete (Parallel Front) 5294c3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ashcan Pete (Parallel Back) 5294c3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ashcan Pete (Parallel) 5294c3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Eldritch Tongue e8765a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Tinker 102fbd.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hand-Eye Coordination (1) 102fcd.yaml'
- !include 'Bag All Player Cards 15bb07/Card False Surrender adf28e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Purified 294d6a.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Key of Solomon (4) ae54c6.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom The Necronomicon 5b2e10.yaml'
- !include 'Bag All Player Cards 15bb07/Card Roland''s .38 Special 4edb91.yaml'
- !include 'Bag All Player Cards 15bb07/Card Stubborn Detective 4ea68b.yaml'
@ -27,10 +83,8 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card A Watchful Peace (3) 176836.yaml'
- !include 'Bag All Player Cards 15bb07/Card Unearth the Ancients f763e8.yaml'
- !include 'Bag All Player Cards 15bb07/Card Sword Cane 9c32e2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) 19b705.yaml'
- !include 'Bag All Player Cards 15bb07/Card Flamethrower (5) cf4f15.yaml'
- !include 'Bag All Player Cards 15bb07/Card Zebulon Whateley 6714b2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Switchblade (2) (Taboo) 842d41.yaml'
- !include 'Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) 3cc1e2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Meditative Trance ef46e9.yaml'
- !include 'Bag All Player Cards 15bb07/Card Relic of Ages 87718c.yaml'
@ -57,7 +111,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Cheat Death (5) 3add54.yaml'
- !include 'Bag All Player Cards 15bb07/Card Laboratory Assistant 147cb2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dream Parasite ae16e8.yaml'
- !include 'Bag All Player Cards 15bb07/Card Delve Too Deep (Taboo) d4a68a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Holy Rosary (2) 2d2246.yaml'
- !include 'Bag All Player Cards 15bb07/Card Think on Your Feet 6fec31.yaml'
- !include 'Bag All Player Cards 15bb07/Card Prescient 7e7873.yaml'
@ -132,7 +185,7 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Accursed Fate 85e7d9.yaml'
- !include 'Bag All Player Cards 15bb07/Card On Your Own (3) 2ebdf1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Zoey''s Cross 66d810.yaml'
- !include 'Bag All Player Cards 15bb07/Card Pendant of the Queen (Taboo) 6047d6.yaml'
- !include 'Bag All Player Cards 15bb07/Card Zoey''s Cross 66d811.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dig Deep (4) 734b45.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dream-Enhancing Serum 98c5af.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Gold Pocket Watch (4) 62d930.yaml'
@ -140,7 +193,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Overpower (2) 017e1f.yaml'
- !include 'Bag All Player Cards 15bb07/Card Grete Wagner (3) b39b78.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hypnotic Gaze 8f3c8e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dr. Milan Christopher (Taboo) 8ae314.yaml'
- !include 'Bag All Player Cards 15bb07/Card Crystalline Elder Sign (3) 949ca2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Cunning e2767a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Pathfinder (1) 7f99cc.yaml'
@ -148,7 +200,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Dumb Luck (2) 0c433b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ghastly Revelation b7c503.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ace of Swords (1) c4d436.yaml'
- !include 'Bag All Player Cards 15bb07/Card Streetwise (3) (Taboo) 88a481.yaml'
- !include 'Bag All Player Cards 15bb07/Card Directive 2d9256.yaml'
- !include 'Bag All Player Cards 15bb07/Card Well Connected 66b7d5.yaml'
- !include 'Bag All Player Cards 15bb07/Card Deny Existence (5) d24531.yaml'
@ -168,7 +219,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Ward of Protection (5) 7bc995.yaml'
- !include 'Bag All Player Cards 15bb07/Card Survival Instinct (2) be4abe.yaml'
- !include 'Bag All Player Cards 15bb07/Card Brute Force (1) fb9b7e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Elusive (Taboo) b67931.yaml'
- !include 'Bag All Player Cards 15bb07/Card Clasp of Black Onyx f295d9.yaml'
- !include 'Bag All Player Cards 15bb07/Card Thomas Dawson 1f7e6e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Leadership 83d8d7.yaml'
@ -270,7 +320,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Scrounge for Supplies 7651f3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) 6bae15.yaml'
- !include 'Bag All Player Cards 15bb07/Card Summoned Hound (1) ab4fb3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Telescopic Sight (3) (Taboo) dc65fd.yaml'
- !include 'Bag All Player Cards 15bb07/Card Mists of R''lyeh (2) 3d57b4.yaml'
- !include 'Bag All Player Cards 15bb07/Card Decoy 2ee50e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Bait and Switch 2c2d9a.yaml'
@ -377,6 +426,7 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Streetwise (3) d7dbac.yaml'
- !include 'Bag All Player Cards 15bb07/Card Try and Try Again (1) 3dc82f.yaml'
- !include 'Bag All Player Cards 15bb07/Card Smite the Wicked 58f534.yaml'
- !include 'Bag All Player Cards 15bb07/Card Smite the Wicked 58f535.yaml'
- !include 'Bag All Player Cards 15bb07/Card Gravedigger''s Shovel (2) 96a440.yaml'
- !include 'Bag All Player Cards 15bb07/Card Fine Print 39452d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Voice of Ra 0988b2.yaml'
@ -398,7 +448,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Backpack f59085.yaml'
- !include 'Bag All Player Cards 15bb07/Card Nihilism fc4168.yaml'
- !include 'Bag All Player Cards 15bb07/Card Gregory Gry 90bf93.yaml'
- !include 'Bag All Player Cards 15bb07/Card Quick Thinking (Taboo) 308967.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Eye of Truth (5) d6085d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Grisly Totem (3) 1433eb.yaml'
- !include 'Bag All Player Cards 15bb07/Card Spiritual Resolve (5) 26922c.yaml'
@ -423,7 +472,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Monstrous Transformation a49751.yaml'
- !include 'Bag All Player Cards 15bb07/Card Book of Shadows (1) 35166c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Physical Training (4) ab51ce.yaml'
- !include 'Bag All Player Cards 15bb07/Card Pathfinder (1) (Taboo) ecbea8.yaml'
- !include 'Bag All Player Cards 15bb07/Card Fire Extinguisher (1) 8a4673.yaml'
- !include 'Bag All Player Cards 15bb07/Card Flare (1) 017821.yaml'
- !include 'Bag All Player Cards 15bb07/Card Sixth Sense (4) 060943.yaml'
@ -501,7 +549,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Three Aces (1) 30062e.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Man in the Pallid Mask 6720ef.yaml'
- !include 'Bag All Player Cards 15bb07/Card Cryptic Writings ff2776.yaml'
- !include 'Bag All Player Cards 15bb07/Card Knowledge is Power (Taboo) eccb8a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Tony''s Quarry d6f8d1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Azure Flame (3) c5fb42.yaml'
- !include 'Bag All Player Cards 15bb07/Card Damned bad8cb.yaml'
@ -535,7 +582,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Plan of Action 96fd5d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Obsessive a2e7d7.yaml'
- !include 'Bag All Player Cards 15bb07/Card Prophesy 493b03.yaml'
- !include 'Bag All Player Cards 15bb07/Card Drawing Thin (Taboo) 3d08dc.yaml'
- !include 'Bag All Player Cards 15bb07/Card Lola Santiago (3) 8bec05.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ichtaca 29fc24.yaml'
- !include 'Bag All Player Cards 15bb07/Card August Lindquist 83b588.yaml'
@ -555,7 +601,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Geas (2) b7223c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Astral Travel 31d087.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dr. Elli Horowitz 27e7b3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Three Aces (1) (Taboo) a11abb.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dream Diary (3) 5f9a10.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ward of Radiance 69116c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Internal Injury 4fb446.yaml'
@ -568,7 +613,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Ineffable Truth (5) f00301.yaml'
- !include 'Bag All Player Cards 15bb07/Card Lone Wolf dc3b07.yaml'
- !include 'Bag All Player Cards 15bb07/Card Search for the Truth 4156cf.yaml'
- !include 'Bag All Player Cards 15bb07/Card Sleight of Hand (Taboo) 5a51d1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Live and Learn 050ba1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Disc of Itzamna d6c44a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Detective''s Colt 1911s f4bac6.yaml'
@ -602,7 +646,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Cheap Shot (2) 0b963c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Favor of the Sun (1) 1e6a06.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Black Cat (5) 16e57b.yaml'
- !include 'Bag All Player Cards 15bb07/Card All In (5) (Taboo) ff1dfe.yaml'
- !include 'Bag All Player Cards 15bb07/Card Lantern e66002.yaml'
- !include 'Bag All Player Cards 15bb07/Card Relic of Ages 7667ef.yaml'
- !include 'Bag All Player Cards 15bb07/Card Relic of Ages e27a30.yaml'
@ -614,8 +657,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Smoking Pipe 603e29.yaml'
- !include 'Bag All Player Cards 15bb07/Card Sacrifice (1) f2877e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Well Connected (3) 170127.yaml'
- !include 'Bag All Player Cards 15bb07/Card A Watchful Peace (3) (Taboo) 125f13.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ace in the Hole (3) (Taboo) e5d5f0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hand of Fate 1ad931.yaml'
- !include 'Bag All Player Cards 15bb07/Card Parallel Fates 47bdba.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ikiaq (3) 9d7d4a.yaml'
@ -667,7 +708,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Quick Thinking 99989c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dark Insight f08934.yaml'
- !include 'Bag All Player Cards 15bb07/Card Defiance (2) bf3dd1.yaml'
- !include 'Bag All Player Cards 15bb07/Card .35 Winchester (Taboo) 41e560.yaml'
- !include 'Bag All Player Cards 15bb07/Card Chuck Fergus (5) 0e72b6.yaml'
- !include 'Bag All Player Cards 15bb07/Card Physical Training (2) d708d9.yaml'
- !include 'Bag All Player Cards 15bb07/Card Occult Evidence 3586e6.yaml'
@ -694,7 +734,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Madame Labranche 1ee492.yaml'
- !include 'Bag All Player Cards 15bb07/Card In the Know (1) 7b42b6.yaml'
- !include 'Bag All Player Cards 15bb07/Card Occult Invocation 010509.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Necronomicon (5) (Taboo) 9fa2a5.yaml'
- !include 'Bag All Player Cards 15bb07/Card .25 Automatic (2) 4425b5.yaml'
- !include 'Bag All Player Cards 15bb07/Card Peter Sylvestre ffdeb5.yaml'
- !include 'Bag All Player Cards 15bb07/Card Grotesque Statue (2) 6b2e97.yaml'
@ -742,14 +781,13 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Wither (4) f57a6f.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Hungering Blade (1) 2d94ed.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hypnotic Gaze (2) e2bc49.yaml'
- !include 'Bag All Player Cards 15bb07/Card Scrapper (3) (Taboo) fcffa3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hot Streak (2) f2508d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Double or Nothing (Taboo) f98f6f.yaml'
- !include 'Bag All Player Cards 15bb07/Card Monster Slayer (5) e21854.yaml'
- !include 'Bag All Player Cards 15bb07/Card Justify the Means (3) 025ed2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Waveworn Idol 591284.yaml'
- !include 'Bag All Player Cards 15bb07/Card Take Heart cc6e4d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Olive McBride 9683d0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Olive McBride (2) 9683d2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Counterpunch 20645e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Harmony Restored (2) 7885cf.yaml'
- !include 'Bag All Player Cards 15bb07/Card Glory 273584.yaml'
@ -835,7 +873,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Hypnotic Therapy 7f1b48.yaml'
- !include 'Bag All Player Cards 15bb07/Card Practice Makes Perfect 1ac667.yaml'
- !include 'Bag All Player Cards 15bb07/Card Lesson Learned (2) 037b2e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hallow (3) (Taboo) 3a85c4.yaml'
- !include 'Bag All Player Cards 15bb07/Card Surprising Find (1) ff59dd.yaml'
- !include 'Bag All Player Cards 15bb07/Card Tristan Botley (2) 1fd630.yaml'
- !include 'Bag All Player Cards 15bb07/Card Serpents of Yig 678391.yaml'
@ -868,7 +905,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Blood-Rite eafd12.yaml'
- !include 'Bag All Player Cards 15bb07/Card I''m done runnin''! d8a324.yaml'
- !include 'Bag All Player Cards 15bb07/Card Calling in Favors 9b9e8b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Higher Education (3) (Taboo) 833501.yaml'
- !include 'Bag All Player Cards 15bb07/Card Tooth of Eztli c1a687.yaml'
- !include 'Bag All Player Cards 15bb07/Card .35 Winchester c32e40.yaml'
- !include 'Bag All Player Cards 15bb07/Card Summoned Nightgaunt cf96b9.yaml'
@ -884,8 +920,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Dream Diary (3) e5f9cb.yaml'
- !include 'Bag All Player Cards 15bb07/Card Unspeakable Oath (Bloodthirst) a5be8b.yaml'
- !include 'Bag All Player Cards 15bb07/Card First Aid (3) bc80ab.yaml'
- !include 'Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) a2136a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) a2136a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hard Knocks (2) 15643b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Slip Away cf1d4e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Oops! 59d89b.yaml'
@ -904,13 +938,10 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Bait and Switch (3) f9a232.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hard Knocks (4) 9565f0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Scavenging 1b76c9.yaml'
- !include 'Bag All Player Cards 15bb07/Card Springfield M1903 (4) (Taboo) 21664c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) 5839e4.yaml'
- !include 'Bag All Player Cards 15bb07/Card Solemn Vow ef7c11.yaml'
- !include 'Bag All Player Cards 15bb07/Card Higher Education (3) d48b25.yaml'
- !include 'Bag All Player Cards 15bb07/Card Shrivelling (5) 7a33b2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dreaded End 1a94ad.yaml'
- !include 'Bag All Player Cards 15bb07/Card Key of Ys (5) (Taboo) 244d61.yaml'
- !include 'Bag All Player Cards 15bb07/Card Nightmare Bauble (3) d6f6f1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Forewarned (1) c17f2c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Banish (1) a00fca.yaml'
@ -919,7 +950,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Pet Oozeling 26398a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Armageddon 3feff1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Strange Solution (4) d96e4b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Eucatastrophe (3) (Taboo) b2ccf8.yaml'
- !include 'Bag All Player Cards 15bb07/Card Suggestion (1) 0ec9bf.yaml'
- !include 'Bag All Player Cards 15bb07/Card Unexpected Courage acb83a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Perseverance 0a390e.yaml'
@ -928,7 +958,6 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Nothing Left to Lose (3) f0389b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Eat lead! a2c7ef.yaml'
- !include 'Bag All Player Cards 15bb07/Card Zeal 695bb7.yaml'
- !include 'Bag All Player Cards 15bb07/Card Flamethrower (5) (Taboo) 8f170b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Recharge (2) e27b3c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Combat Training (1) bd3ecc.yaml'
- !include 'Bag All Player Cards 15bb07/Card Directive 07e7bd.yaml'
@ -1060,6 +1089,7 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Discipline 3247da.yaml'
- !include 'Bag All Player Cards 15bb07/Card Shrewd Dealings c70129.yaml'
- !include 'Bag All Player Cards 15bb07/Card Buried Secrets 28080d.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Buried Secrets 28080e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Mechanic''s Wrench 598ba0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Fend Off (3) 0c2449.yaml'
- !include 'Bag All Player Cards 15bb07/Card Join the Caravan (1) 6367dd.yaml'
@ -1124,6 +1154,9 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Preston Fairmont 5e6298.yaml'
- !include 'Bag All Player Cards 15bb07/Card Diana Stanley 32b091.yaml'
- !include 'Bag All Player Cards 15bb07/Card Zoey Samaras 98a0e1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Zoey Samaras (Parallel) 98a0e2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Zoey Samaras (Parallel Back) 98a0e4.yaml'
- !include 'Bag All Player Cards 15bb07/Card Zoey Samaras (Parallel Front) 98a0e3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Jim Culver ca079b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Joe Diamond 6dc626.yaml'
- !include 'Bag All Player Cards 15bb07/Card Agnes Baker (Parallel Back) 909f30.yaml'
@ -1204,6 +1237,7 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Tidal Memento b4f9ee.yaml'
- !include 'Bag All Player Cards 15bb07/Card Jacob Morrison (3) aa38d0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Trusty Bullwhip ca9a60.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Trusty Bullwhip ca9a61.yaml'
- !include 'Bag All Player Cards 15bb07/Card Mob Goons fc1506.yaml'
- !include 'Bag All Player Cards 15bb07/Card Guard Dog 001ae8.yaml'
- !include 'Bag All Player Cards 15bb07/Card First Aid (3) 3c7eb1.yaml'
@ -1308,24 +1342,7 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Mob Enforcer b239d7.yaml'
- !include 'Bag All Player Cards 15bb07/Card Silver Twilight Acolyte 16a89d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Paranoia c17498.yaml'
- !include 'Bag All Player Cards 15bb07/Card Black Market (2) (Taboo) 8e4d23.yaml'
- !include 'Bag All Player Cards 15bb07/Card Strange Solution (4) (Taboo) e95ddb.yaml'
- !include 'Bag All Player Cards 15bb07/Card Signum Crucis (2) (Taboo) 119880.yaml'
- !include 'Bag All Player Cards 15bb07/Card Rite of Equilibrium (5) (Taboo) d45a81.yaml'
- !include 'Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) (Taboo) 213e21.yaml'
- !include 'Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) (Taboo) 669c4e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Cyclopean Hammer (5) (Taboo) a39c3b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Counterspell (2) (Taboo) 118264.yaml'
- !include 'Bag All Player Cards 15bb07/Card Eon Chart (1) (Taboo) 4d4ffb.yaml'
- !include "Bag All Player Cards 15bb07/Card Gen\xE9 Beauregard (3) (Taboo) ab32db.yaml"
- !include 'Bag All Player Cards 15bb07/Card Eon Chart (4) (Taboo) b925cf.yaml'
- !include 'Bag All Player Cards 15bb07/Card Jeremiah Kirby (Taboo) 71e4a0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ritual Candles (Taboo) e99e75.yaml'
- !include 'Bag All Player Cards 15bb07/Card Voice of Ra (Taboo) 77f7f3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dark Prophecy (Taboo) 94cdf6.yaml'
- !include 'Bag All Player Cards 15bb07/Card David Renfield (Taboo) 7a73c4.yaml'
- !include 'Bag All Player Cards 15bb07/Card Charlie Kane 95fb5e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Crisis of Identity (Taboo) 55be9c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Kymani Jones d3d7fb.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Summoned Servitor d187dd.yaml'
- !include 'Bag All Player Cards 15bb07/Card Vincent Lee 43ad8a.yaml'
@ -1353,13 +1370,9 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Selfless to a Fault 07dd55.yaml'
- !include 'Bag All Player Cards 15bb07/Card Wounded Bystander fb54d3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Grappling Hook 09f1a2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Mr. Rook (Taboo) 7fe728.yaml'
- !include 'Bag All Player Cards 15bb07/Card Darrell Simmons 5d3d67.yaml'
- !include 'Bag All Player Cards 15bb07/Card Kymani Jones 9a9830.yaml'
- !include 'Bag All Player Cards 15bb07/Card Prophesiae Profana (5) (Taboo) 3c2561.yaml'
- !include 'Bag All Player Cards 15bb07/Card Carson Sinclair dc96d1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Lola Hayes (Taboo) 475460.yaml'
- !include 'Bag All Player Cards 15bb07/Card Mandy Thompson (Taboo) 754b0a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Underprepared 709a54.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ectoplasmic Horror 379582.yaml'
- !include 'Bag All Player Cards 15bb07/Card Pay Your Due 5b6c9f.yaml'
@ -1398,7 +1411,7 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Moonlight Ritual (2) ad3efc.yaml'
- !include 'Bag All Player Cards 15bb07/Card Elle Rubash (2) 43c3e0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Astral Mirror (2) b5d894.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ghastly Possession 63282f.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ghastly Possession (1) 63282f.yaml'
- !include 'Bag All Player Cards 15bb07/Card Binder''s Jar (1) c72750.yaml'
- !include 'Bag All Player Cards 15bb07/Card String of Curses 046b16.yaml'
- !include 'Bag All Player Cards 15bb07/Card Explosive Ward f86c67.yaml'
@ -1471,7 +1484,7 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/CardCustom Pocket Multi Tool Upgrade Sheet
d706e7.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Makeshift Trap Upgrade Sheet 64dfce.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Living Link Upgrade Sheet 19a05b.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Living Ink Upgrade Sheet 19a05b.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Hyperphysical Shotcaster Upgrade
Sheet a4eec2.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Hunter''s Armor Upgrade Sheet d2d01b.yaml'
@ -1491,13 +1504,17 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Astronomical Atlas (3) 804397.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ancestral Knowledge (3) 7b7d14.yaml'
- !include 'Bag All Player Cards 15bb07/Card Rex Murphy 4271cb.yaml'
- !include 'Bag All Player Cards 15bb07/Card Rex Murphy (Taboo) 9724b7.yaml'
- !include 'Bag All Player Cards 15bb07/Card Rex Murphy 9ba3f0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Duke 876557.yaml'
- !include 'Bag All Player Cards 15bb07/Card Sophie 4f46ad.yaml'
- !include 'Bag All Player Cards 15bb07/Card Amina Zidane 458edc.yaml'
- !include 'Bag All Player Cards 15bb07/Card Amina Zidane 4c2a3d.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Hypnotic Gaze (2) (Taboo) e2bc50.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Old Keyring (3) (Taboo) e7d989.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Pay Day (1) (Taboo) 9f0b35.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Scavenging (2) (Taboo) ff4aeb.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Scavenging (Taboo) 1b76c8.yaml'
- !include 'Bag All Player Cards 15bb07/Card Deck of Possibilities fefdfa.yaml'
- !include "Bag All Player Cards 15bb07/Card Isamara Ordo\xF1ez 860cd7.yaml"
- !include 'Bag All Player Cards 15bb07/Card Jenny Barnes 48b174.yaml'
@ -1526,6 +1543,194 @@ ContainedObjects:
- !include 'Bag All Player Cards 15bb07/Card Paradimensional Understanding 3c3dfa.yaml'
- !include 'Bag All Player Cards 15bb07/Card Inspector Flint 8247a5.yaml'
- !include 'Bag All Player Cards 15bb07/Card Agent Ari Quinn d61c6a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Deck of Possibilities fefdfa.yaml'
- !include "Bag All Player Cards 15bb07/Card Isamara Ordo\xF1ez 860cd7.yaml"
- !include 'Bag All Player Cards 15bb07/Card Mandy Thompson (Taboo) 4f3637.yaml'
- !include 'Bag All Player Cards 15bb07/Card Trish Scarborough (Taboo) 2ce76d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Lola Hayes (Taboo) 52956d.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Rex Murphy (Taboo) 0a5491.yaml'
- !include 'Bag All Player Cards 15bb07/Card Runic Axe Upgrade Sheet (Taboo) 4d729b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Power Word Upgrade Sheet (Taboo) ebce85.yaml'
- !include 'Bag All Player Cards 15bb07/Card Prophesiae Profana (5) (Taboo) 957c32.yaml'
- !include 'Bag All Player Cards 15bb07/Card Daredevil (Taboo) cd1e54.yaml'
- !include 'Bag All Player Cards 15bb07/Card Burn After Reading (1) (Taboo) 2ced40.yaml'
- !include 'Bag All Player Cards 15bb07/Card Interrogate (Taboo) a6726e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Quick Thinking (Taboo) 4a49ea.yaml'
- !include 'Bag All Player Cards 15bb07/Card Double or Nothing (Taboo) 9aa0de.yaml'
- !include 'Bag All Player Cards 15bb07/Card Shed a Light (Taboo) 44292c.yaml'
- !include 'Bag All Player Cards 15bb07/Card A Watchful Peace (3) (Taboo) 25b73a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Cyclopean Hammer (5) (Taboo) 42336b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Research Notes (Taboo) 085c08.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ace in the Hole (3) (Taboo) e92f21.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dark Prophecy (Taboo) 448db7.yaml'
- !include 'Bag All Player Cards 15bb07/Card .35 Winchester (Taboo) 22d821.yaml'
- !include 'Bag All Player Cards 15bb07/Card Knowledge is Power (Taboo) 0dd658.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ancient Covenant (2) (Taboo) e01cc7.yaml'
- !include 'Bag All Player Cards 15bb07/Card Eucatastrophe (3) (Taboo) 8be540.yaml'
- !include 'Bag All Player Cards 15bb07/Card Voice of Ra (Taboo) b06042.yaml'
- !include 'Bag All Player Cards 15bb07/Card David Renfield (Taboo) 4c7c54.yaml'
- !include 'Bag All Player Cards 15bb07/Card Crisis of Identity (Taboo) 17cab7.yaml'
- !include 'Bag All Player Cards 15bb07/Card All In (5) (Taboo) 5db655.yaml'
- !include 'Bag All Player Cards 15bb07/Card Drawing Thin (Taboo) 49361a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Sharpshooter (3) (Taboo) 77b1e7.yaml'
- !include 'Bag All Player Cards 15bb07/Card Runic Axe (Taboo) 3e3b99.yaml'
- !include 'Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) (Taboo) 453fd1.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Necronomicon (5) (Taboo) 4b7a8e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Elusive (Taboo) 3c046a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Power Word (Taboo) dc1962.yaml'
- !include 'Bag All Player Cards 15bb07/Card Persuasion (Taboo) 821d99.yaml'
- !include 'Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) b383b8.yaml'
- !include 'Bag All Player Cards 15bb07/Card Counterspell (2) (Taboo) 9c9177.yaml'
- !include 'Bag All Player Cards 15bb07/Card Eon Chart (1) (Taboo) 389610.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ritual Candles (Taboo) 7dc746.yaml'
- !include 'Bag All Player Cards 15bb07/Card Telescopic Sight (3) (Taboo) 43cb9f.yaml'
- !include 'Bag All Player Cards 15bb07/Card Pathfinder (1) (Taboo) 305e37.yaml'
- !include 'Bag All Player Cards 15bb07/Card Key of Ys (5) (Taboo) 9451ee.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dr. Milan Christopher (Taboo) 2a6fd1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Black Market (2) (Taboo) 4d085b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Signum Crucis (2) (Taboo) 750b7a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Mr. Rook (Taboo) 522279.yaml'
- !include 'Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) c127f1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Strange Solution (4) (Taboo) 1be7f1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Rite of Equilibrium (5) (Taboo) 2286b4.yaml'
- !include 'Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) (Taboo) 5f4d1c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Jeremiah Kirby (Taboo) a03cd7.yaml'
- !include 'Bag All Player Cards 15bb07/Card Geared Up (Taboo) 83af5e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Pendant of the Queen (Taboo) 02b9b9.yaml'
- !include 'Bag All Player Cards 15bb07/Card Delve Too Deep (Taboo) ca5603.yaml'
- !include "Bag All Player Cards 15bb07/Card Gen\xE9 Beauregard (3) (Taboo) d300bf.yaml"
- !include 'Bag All Player Cards 15bb07/Card Banish (1) (Taboo) 1a3b10.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hypnotic Gaze (Taboo) 47d782.yaml'
- !include 'Bag All Player Cards 15bb07/Card Springfield M1903 (4) (Taboo) 23f8ec.yaml'
- !include 'Bag All Player Cards 15bb07/Card Flamethrower (5) (Taboo) 62ceb5.yaml'
- !include 'Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) 84a7df.yaml'
- !include 'Bag All Player Cards 15bb07/Card Three Aces (1) (Taboo) baa553.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hallow (3) (Taboo) 175810.yaml'
- !include 'Bag All Player Cards 15bb07/Card Eon Chart (4) (Taboo) 41c449.yaml'
- !include 'Bag All Player Cards 15bb07/Card Sleight of Hand (Taboo) 0d84b2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Long Shot dc8c4d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Chemistry Set da9727.yaml'
- !include 'Bag All Player Cards 15bb07/Card Pushed to the Limit e0f396.yaml'
- !include 'Bag All Player Cards 15bb07/Card Uncanny Growth 6543e6.yaml'
- !include 'Bag All Player Cards 15bb07/Card Microscope 48be49.yaml'
- !include 'Bag All Player Cards 15bb07/Card Well-Funded 96fbfa.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dr. Charles West III 72efed.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ravenous Myconid 0aa967.yaml'
- !include 'Bag All Player Cards 15bb07/Card Stall for Time 7b6ed1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Wrong Place, Right Time d5944e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Sparrow Mask 975d79.yaml'
- !include 'Bag All Player Cards 15bb07/Card Pitchfork 45a724.yaml'
- !include 'Bag All Player Cards 15bb07/Card Jim''s Trumpet 7dfd5f.yaml'
- !include 'Bag All Player Cards 15bb07/Card Jim Culver (Parallel) 72bf31.yaml'
- !include 'Bag All Player Cards 15bb07/Card Jim Culver (Parallel Front) c5fc80.yaml'
- !include 'Bag All Player Cards 15bb07/Card Vengeful Shade 73bc8e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Final Rhapsody 561775.yaml'
- !include 'Bag All Player Cards 15bb07/Card Jim Culver (Parallel Back) aba863.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom The Beyond 37ab47.yaml'
- !include 'Bag All Player Cards 15bb07/Card Devil (2) 2a0ba5.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Alessandra Zorzi cea425.yaml'
- !include 'Bag All Player Cards 15bb07/Card Alessandra Zorzi 54eaa5.yaml'
- !include 'Bag All Player Cards 15bb07/Card Zamacona 541ba9.yaml'
- !include 'Bag All Player Cards 15bb07/Card Wicked Athame c9fb1f.yaml'
- !include 'Bag All Player Cards 15bb07/Card Wolf Mask 975d89.yaml'
- !include 'Bag All Player Cards 15bb07/Card Beguile 019526.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ofuda 860c1e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Providential (2) 2cf42a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Vamp add232.yaml'
- !include 'Bag All Player Cards 15bb07/Card I''ll Pay You Back! 40e1ca.yaml'
- !include 'Bag All Player Cards 15bb07/Card Occult Reliquary (3) acd0c2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Grift df75d7.yaml'
- !include 'Bag All Player Cards 15bb07/Card Guided by Faith aef282.yaml'
- !include 'Bag All Player Cards 15bb07/CardCustom Hank Samson 3764cc.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hank Samson 3764cd.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hank Samson (Assistant) 3764ce.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hank Samson (Warden) 3764cf.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hold Up aef182.yaml'
- !include 'Bag All Player Cards 15bb07/Card Pelt Shipment aa11bc.yaml'
- !include 'Bag All Player Cards 15bb07/Card Stir the Pot (5) add252.yaml'
- !include 'Bag All Player Cards 15bb07/Card Snitch (2) add242.yaml'
- !include 'Bag All Player Cards 15bb07/Card Where''s Pa 9aba43.yaml'
- !include 'Bag All Player Cards 15bb07/Card Persistence (1) 2cf51.yaml'
- !include 'Bag All Player Cards 15bb07/Card Stouthearted 265ad2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Control Variable 133868.yaml'
- !include 'Bag All Player Cards 15bb07/Card Blackmail File de456d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Speak to the Dead c763aa.yaml'
- !include 'Bag All Player Cards 15bb07/Card Accursed e91c5e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Throw the Book at Them! d617ab.yaml'
- !include 'Bag All Player Cards 15bb07/Card Fox Mask 4144cd.yaml'
- !include 'Bag All Player Cards 15bb07/Card Mouse Mask 32ad21.yaml'
- !include 'Bag All Player Cards 15bb07/Card Task Force a5c06a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Microscope (4) fbd296.yaml'
- !include 'Bag All Player Cards 15bb07/Card Back Injury f6c482.yaml'
- !include 'Bag All Player Cards 15bb07/Card Lightfooted fe1fb6.yaml'
- !include 'Bag All Player Cards 15bb07/Card Bewitching (3) db335c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Flurry of Blows (5) 9e7bc8.yaml'
- !include 'Bag All Player Cards 15bb07/Card British Bull Dog (2) 7b7050.yaml'
- !include 'Bag All Player Cards 15bb07/Card Bianca Die Katz 897a94.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dirty Deeds (3) aa2d6a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Esoteric Method (1) 9250e1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Katana f5beb5.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ethereal Weaving (3) 697efd.yaml'
- !include 'Bag All Player Cards 15bb07/Card Putrescent Rot 2d1e60.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ravenous Myconid (4) df93ca.yaml'
- !include 'Bag All Player Cards 15bb07/Card Second Wind (2) c3c979.yaml'
- !include 'Bag All Player Cards 15bb07/Card Fire Axe (2) 326ec3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Stir the Pot c25479.yaml'
- !include 'Bag All Player Cards 15bb07/Card Keeper of the Key 014086.yaml'
- !include 'Bag All Player Cards 15bb07/Card Bide Your Time 24d3b3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Thorough Inquiry c6b644.yaml'
- !include 'Bag All Player Cards 15bb07/Card Steady-Handed (1) 9181f7.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dawn Star (1) 8b15d7.yaml'
- !include 'Bag All Player Cards 15bb07/Card Seal of the Elders (5) d2b649.yaml'
- !include 'Bag All Player Cards 15bb07/Card Keep Faith (2) 73e4ee.yaml'
- !include 'Bag All Player Cards 15bb07/Card Mariner''s Compass (2) 596053.yaml'
- !include 'Bag All Player Cards 15bb07/Card Bank Job c4dfa2.yaml'
- !include 'Bag All Player Cards 15bb07/Card Abyssal Rot bbeac6.yaml'
- !include 'Bag All Player Cards 15bb07/Card Maimed Hand cb14d3.yaml'
- !include 'Bag All Player Cards 15bb07/Card Testing Sprint a4846b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Blade of Yoth c61a83.yaml'
- !include 'Bag All Player Cards 15bb07/Card Call the Beyond (2) 0dd070.yaml'
- !include 'Bag All Player Cards 15bb07/Card Gabriel Carillo (1) 7e1088.yaml'
- !include 'Bag All Player Cards 15bb07/Card Diabolical Luck 1fea59.yaml'
- !include 'Bag All Player Cards 15bb07/Card Cleaning Kit d07668.yaml'
- !include 'Bag All Player Cards 15bb07/Card Evanescent Ascension 9e763b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Matchbox b533db.yaml'
- !include 'Bag All Player Cards 15bb07/Card British Bull Dog 9b76a0.yaml'
- !include 'Bag All Player Cards 15bb07/Card Twilight Diadem a2f8f8.yaml'
- !include 'Bag All Player Cards 15bb07/Card Rod of Carnamagos 66ec64.yaml'
- !include 'Bag All Player Cards 15bb07/Card Spectral Razor (2) b38ded.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ethereal Form (2) e58c7b.yaml'
- !include 'Bag All Player Cards 15bb07/Card Cleaning Kit (3) 94c3e1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ravenous Myconid (4) ab2752.yaml'
- !include 'Bag All Player Cards 15bb07/Card Rod of Carnamagos (2) d8ef99.yaml'
- !include 'Bag All Player Cards 15bb07/Card Fake Credentials (4) 7ebb67.yaml'
- !include 'Bag All Player Cards 15bb07/Card Hunting Jacket (2) 5355fa.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dark Horse (5) d00e4d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Antediluvian Hymn ba4746.yaml'
- !include 'Bag All Player Cards 15bb07/Card Aember Rot 3e6219.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Silver Moth 2c6dc1.yaml'
- !include 'Bag All Player Cards 15bb07/Card Scarlet Rot fe476c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Eyes of Valusia (4) e7bfbe.yaml'
- !include 'Bag All Player Cards 15bb07/Card Mesmeric Influence (1) b13946.yaml'
- !include 'Bag All Player Cards 15bb07/Card Blessed Blade (4) 9401f4.yaml'
- !include 'Bag All Player Cards 15bb07/Card Miracle Wish (5) d78d4a.yaml'
- !include 'Bag All Player Cards 15bb07/Card Vow of Drzytelech c4bc35.yaml'
- !include 'Bag All Player Cards 15bb07/Card Virescent Rot 2edbdd.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ravenous Myconid (4) baa926.yaml'
- !include 'Bag All Player Cards 15bb07/Card Broken Diadem (5) b6d35d.yaml'
- !include 'Bag All Player Cards 15bb07/Card Bianca Die Katz 992ccd.yaml'
- !include 'Bag All Player Cards 15bb07/Card Servant of Brass 06bc7e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Read the Signs (2) 5ce4d4.yaml'
- !include 'Bag All Player Cards 15bb07/Card Elaborate Distraction d1422e.yaml'
- !include 'Bag All Player Cards 15bb07/Card Dr. Rosa Marquez 62d5a6.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Pearl Diary 34a7b5.yaml'
- !include 'Bag All Player Cards 15bb07/Card Ajax f8a7c6.yaml'
- !include 'Bag All Player Cards 15bb07/Card Corn Husk Doll 3602f5.yaml'
- !include 'Bag All Player Cards 15bb07/Card The Hemlock Curse 0d0a2c.yaml'
- !include 'Bag All Player Cards 15bb07/Card Worry Rock 5e5dc6.yaml'
- !include 'Bag All Player Cards 15bb07/Card Little Sylvie 153a42.yaml'
- !include 'Bag All Player Cards 15bb07/Card Prismatic Shard 27fe24.yaml'
- !include 'Bag All Player Cards 15bb07/Card Helen Peters 33bfa1.yaml'
Description: ''
DragSelectable: true
GMNotes: ''
@ -1548,8 +1753,8 @@ Snap: true
Sticky: true
Tooltip: true
Transform:
posX: 77.89
posY: 1.04
posX: 78
posY: 0.96
posZ: 27.03
rotX: 0
rotY: 0

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'5508':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/
NumHeight: 7
NumWidth: 10
@ -19,11 +19,11 @@ CustomDeck:
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"60522\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n
\ \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n
\ \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\":
3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\":
\"Investigator Packs\"\n}"
GMNotes: "{\n \"id\": \"60522\",\n \"type\": \"Asset\",\n \"slot\": \"Hand\",\n
\ \"class\": \"Survivor\",\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item.
Weapon. Firearm. Illicit.\",\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\":
[\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n
\ }\n ],\n \"cycle\": \"Investigator Packs\"\n}"
GUID: f8a977
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'5508':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/
NumHeight: 7
NumWidth: 10
@ -19,11 +19,11 @@ CustomDeck:
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"60505\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n
\ \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n
\ \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\":
\"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator
Packs\"\n}"
GMNotes: "{\n \"id\": \"60505\",\n \"type\": \"Asset\",\n \"slot\": \"Hand\",\n
\ \"class\": \"Survivor\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item.
Weapon. Firearm. Illicit.\",\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\":
2,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\":
\"Investigator Packs\"\n}"
GUID: 101a41
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'5894':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1807607979163972370/50A45AE585D6404E677DFCA597A0F5FE13346B97/
NumHeight: 4
NumWidth: 5
@ -19,11 +19,11 @@ CustomDeck:
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"07305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n
\ \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n
\ \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\":
4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\":
\"The Innsmouth Conspiracy\"\n}"
GMNotes: "{\n \"id\": \"07305\",\n \"type\": \"Asset\",\n \"slot\": \"Hand\",\n
\ \"class\": \"Rogue\",\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Item.
Weapon. Firearm. Illicit.\",\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\":
[\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n
\ }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}"
GUID: 4425b5
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'5872':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/
NumHeight: 7
NumWidth: 10
@ -19,11 +19,11 @@ CustomDeck:
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"07025\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n
\ \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n
\ \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\":
\"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth
Conspiracy\"\n}"
GMNotes: "{\n \"id\": \"07025\",\n \"type\": \"Asset\",\n \"slot\": \"Hand\",\n
\ \"class\": \"Rogue\",\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item.
Weapon. Firearm. Illicit.\",\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\":
4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\":
\"The Innsmouth Conspiracy\"\n}"
GUID: a5087b
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'4409':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/
NumHeight: 7
NumWidth: 10
@ -19,10 +19,11 @@ CustomDeck:
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"52001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n
\ \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"combatIcons\":
2,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Ammo\",\n \"token\":
\"resource\"\n }\n ],\n \"cycle\": \"Return to the Path to Carcosa\"\n}"
GMNotes: "{\n \"id\": \"52001\",\n \"type\": \"Asset\",\n \"slot\": \"Hand\",\n
\ \"class\": \"Guardian\",\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item.
Weapon. Firearm.\",\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\":
6,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\":
\"Return to the Path to Carcosa\"\n}"
GUID: c026c9
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'2263':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/
NumHeight: 7
NumWidth: 10
@ -19,10 +19,11 @@ CustomDeck:
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"03020\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n
\ \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"combatIcons\":
1,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Ammo\",\n \"token\":
\"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}"
GMNotes: "{\n \"id\": \"03020\",\n \"type\": \"Asset\",\n \"slot\": \"Hand\",\n
\ \"class\": \"Guardian\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item.
Weapon. Firearm.\",\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\":
6,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\":
\"The Path to Carcosa\"\n}"
GUID: b0f851
Grid: true
GridProjection: false

View File

@ -3,17 +3,17 @@ AltLookAngle:
y: 0
z: 0
Autoraise: true
CardID: 450624
CardID: 301
ColorDiffuse:
b: 0.71324
g: 0.71324
r: 0.71324
CustomDeck:
'4506':
'3':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/
NumHeight: 7
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2115061845812962486/A68B8BF7E4862F21369DAC4A37D813EC664EAC34/
NumHeight: 6
NumWidth: 10
Type: 0
UniqueBack: false
@ -23,7 +23,7 @@ GMNotes: "{\n \"id\": \"06195-t\",\n \"type\": \"Asset\",\n \"class\": \"Guar
\ \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"agilityIcons\":
1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\":
\"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}"
GUID: 41e560
GUID: 22d821
Grid: true
GridProjection: false
Hands: true
@ -44,11 +44,11 @@ Tags:
- PlayerCard
Tooltip: true
Transform:
posX: 9.13
posY: 5.1
posZ: -16.72
posX: -13.42
posY: 3.45
posZ: -31.51
rotX: 0
rotY: 270
rotY: 180
rotZ: 0
scaleX: 1
scaleY: 1

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'5832':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1697276627309509299/3B0E32939EB4599CCE3596975637C90FE4EE1DD6/
NumHeight: 5
NumWidth: 6
@ -19,10 +19,11 @@ CustomDeck:
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"06195\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n
\ \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"agilityIcons\":
1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\":
\"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}"
GMNotes: "{\n \"id\": \"06195\",\n \"type\": \"Asset\",\n \"slot\": \"Hand x2\",\n
\ \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item.
Weapon. Firearm.\",\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\":
5,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\":
\"The Dream-Eaters\"\n}"
GUID: c32e40
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'3152':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/
NumHeight: 7
NumWidth: 10
@ -20,10 +20,11 @@ CustomDeck:
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"03234\",\n \"alternate_ids\": [\n \"01688\"\n ],\n \"type\":
\"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 2,\n \"traits\":
\"Item. Weapon. Firearm. Illicit.\",\n \"combatIcons\": 1,\n \"agilityIcons\":
1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"token\":
\"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}"
\"Asset\",\n \"slot\": \"Hand\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\":
2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"combatIcons\": 1,\n
\ \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\":
\"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to
Carcosa\"\n}"
GUID: f57af7
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'3686':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/
NumHeight: 7
NumWidth: 10
@ -20,10 +20,10 @@ CustomDeck:
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"01047\",\n \"alternate_ids\": [\n \"01547\"\n ],\n \"type\":
\"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\":
\"Item. Weapon. Firearm. Illicit.\",\n \"combatIcons\": 1,\n \"uses\": [\n {\n
\ \"count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n
\ }\n ],\n \"cycle\": \"Core\"\n}"
\"Asset\",\n \"slot\": \"Hand\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\":
0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"combatIcons\": 1,\n
\ \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"token\":
\"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}"
GUID: fe2db3
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'2263':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/
NumHeight: 7
NumWidth: 10
@ -19,11 +19,11 @@ CustomDeck:
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"03190\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n
\ \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"combatIcons\":
1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\":
\"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to
Carcosa\"\n}"
GMNotes: "{\n \"id\": \"03190\",\n \"type\": \"Asset\",\n \"slot\": \"Hand\",\n
\ \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Item.
Weapon. Firearm.\",\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\":
[\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n
\ }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}"
GUID: fe0cc0
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'2263':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/
NumHeight: 7
NumWidth: 10
@ -20,10 +20,10 @@ CustomDeck:
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"01016\",\n \"alternate_ids\": [\n \"01516\"\n ],\n \"type\":
\"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\": 0,\n \"traits\":
\"Item. Weapon. Firearm.\",\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\":
4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\":
\"Core\"\n}"
\"Asset\",\n \"slot\": \"Hand\",\n \"class\": \"Guardian\",\n \"cost\": 4,\n
\ \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"agilityIcons\":
1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\":
\"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}"
GUID: 12660b
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'2928':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/
NumHeight: 7
NumWidth: 10
@ -19,11 +19,11 @@ CustomDeck:
UniqueBack: false
Description: Guardian
DragSelectable: true
GMNotes: "{\n \"id\": \"05186\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n
\ \"cost\": 6,\n \"level\": 3,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n
\ \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 5,\n \"type\":
\"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle
Undone\"\n}"
GMNotes: "{\n \"id\": \"05186\",\n \"type\": \"Asset\",\n \"slot\": \"Hand x2\",\n
\ \"class\": \"Guardian\",\n \"cost\": 6,\n \"level\": 3,\n \"traits\": \"Item.
Weapon. Firearm. Illicit.\",\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\":
5,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\":
\"The Circle Undone\"\n}"
GUID: b492cb
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'2929':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/
NumHeight: 7
NumWidth: 10
@ -19,11 +19,11 @@ CustomDeck:
UniqueBack: false
Description: Rogue
DragSelectable: true
GMNotes: "{\n \"id\": \"05187\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n
\ \"cost\": 5,\n \"level\": 3,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n
\ \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\":
5,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\":
\"The Circle Undone\"\n}"
GMNotes: "{\n \"id\": \"05187\",\n \"type\": \"Asset\",\n \"slot\": \"Hand x2\",\n
\ \"class\": \"Rogue\",\n \"cost\": 5,\n \"level\": 3,\n \"traits\": \"Item.
Weapon. Firearm. Illicit.\",\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\":
[\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n
\ }\n ],\n \"cycle\": \"The Circle Undone\"\n}"
GUID: d4dbc7
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'2776':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/
NumHeight: 7
NumWidth: 10
@ -19,11 +19,11 @@ CustomDeck:
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"05115\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue\",\n
\ \"cost\": 6,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n
\ \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\":
\"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle
Undone\"\n}"
GMNotes: "{\n \"id\": \"05115\",\n \"type\": \"Asset\",\n \"slot\": \"Hand x2\",\n
\ \"class\": \"Guardian|Rogue\",\n \"cost\": 6,\n \"level\": 0,\n \"traits\":
\"Item. Weapon. Firearm. Illicit.\",\n \"combatIcons\": 1,\n \"uses\": [\n {\n
\ \"count\": 5,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n
\ }\n ],\n \"cycle\": \"The Circle Undone\"\n}"
GUID: 2c6509
Grid: true
GridProjection: false

View File

@ -11,8 +11,8 @@ ColorDiffuse:
CustomDeck:
'3790':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126491470/A7FAFA92C08268717F79B2B1C83F8C23DFA6C534/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430578722/34A938F2AE5FCEDEF07D645346F9A6570FFF98E4/
NumHeight: 7
NumWidth: 10
Type: 0

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'3688':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/
NumHeight: 7
NumWidth: 10

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'3688':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/
NumHeight: 7
NumWidth: 10

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'4477':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/
NumHeight: 7
NumWidth: 10

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'3688':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/
NumHeight: 7
NumWidth: 10

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'5508':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/
NumHeight: 7
NumWidth: 10

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'5508':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298038335/2CA532D7F0EED2B2B40E47709AC56D85C4613A33/
NumHeight: 7
NumWidth: 10

View File

@ -3,18 +3,18 @@ AltLookAngle:
y: 0
z: 0
Autoraise: true
CardID: 585500
CardID: 332
ColorDiffuse:
b: 0.71324
g: 0.71324
r: 0.71324
CustomDeck:
'5855':
'3':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1697277388086984548/E61F3E847797C2C9231829611E0D92BA6376FA67/
NumHeight: 4
NumWidth: 4
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2115061845812962486/A68B8BF7E4862F21369DAC4A37D813EC664EAC34/
NumHeight: 6
NumWidth: 10
Type: 0
UniqueBack: false
Description: ''
@ -22,7 +22,7 @@ DragSelectable: true
GMNotes: "{\n \"id\": \"07269-t\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n
\ \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spirit. Blessed.\",\n \"willpowerIcons\":
2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}"
GUID: 125f13
GUID: 25b73a
Grid: true
GridProjection: false
Hands: true
@ -42,9 +42,9 @@ Tags:
- PlayerCard
Tooltip: true
Transform:
posX: 9.12
posY: 3.88
posZ: -16.72
posX: -13.42
posY: 3.45
posZ: -45.05
rotX: 0
rotY: 270
rotZ: 0

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'4496':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1747933191220177818/637923621F747375066D4DA39BEA3BA9C26086A5/
NumHeight: 3
NumWidth: 7

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'5872':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1856052392800079019/C6B0ADB01750372B73B2281CFFDFA5F6F87C2C9E/
NumHeight: 3
NumWidth: 7

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'3751':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/
NumHeight: 7
NumWidth: 10

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'5360':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1849293764610861313/38FA9E4802C3B8E8FC2DB16E94E65A3FD60D92B9/
NumHeight: 2
NumWidth: 2
@ -20,7 +20,7 @@ CustomDeck:
Description: Advanced
DragSelectable: true
GMNotes: "{\n \"id\": \"90040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n
\ \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Standalone\"\n}"
\ \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Red Tide Rising\"\n}"
GUID: 89fe92
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'40':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/
NumHeight: 7
NumWidth: 10

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'4488':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/
NumHeight: 7
NumWidth: 10
@ -19,9 +19,10 @@ CustomDeck:
UniqueBack: false
Description: Library Intern
DragSelectable: true
GMNotes: "{\n \"id\": \"06324\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
\ \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Ally. Miskatonic.\",\n \"intellectIcons\":
1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}"
GMNotes: "{\n \"id\": \"06324\",\n \"type\": \"Asset\",\n \"slot\": \"Ally\",\n
\ \"class\": \"Seeker\",\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Ally.
Miskatonic.\",\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The
Dream-Eaters\"\n}"
GUID: 97e9ce
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'2746':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/
NumHeight: 7
NumWidth: 10

View File

@ -0,0 +1,55 @@
AltLookAngle:
x: 0
y: 0
z: 0
Autoraise: true
CardID: 917316
ColorDiffuse:
b: 0.71324
g: 0.71324
r: 0.71324
CustomDeck:
'9173':
BackIsHidden: true
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
NumHeight: 7
NumWidth: 10
Type: 0
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"10024\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n
\ \"level\": 0,\n \"traits\": \"Spell. Blessed.\",\n \"willpowerIcons\": 2,\n
\ \"cycle\": \"The Feast of Hemlock Vale\"\n}"
GUID: aef183
Grid: true
GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''
MeasureMovement: false
Name: Card
Nickname: Absolution
SidewaysCard: false
Snap: true
Sticky: true
Tags:
- PlayerCard
Tooltip: true
Transform:
posX: 13.08
posY: 3.55
posZ: 6.5
rotX: 0
rotY: 270
rotZ: 0
scaleX: 1
scaleY: 1
scaleZ: 1
Value: 0
XmlUI: ''

View File

@ -0,0 +1,54 @@
AltLookAngle:
x: 0
y: 0
z: 0
Autoraise: true
CardID: 917408
ColorDiffuse:
b: 0.71324
g: 0.71324
r: 0.71324
CustomDeck:
'9174':
BackIsHidden: true
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632751/4F8200D4B672882FF609D4B1B9D438C61AF20447/
NumHeight: 7
NumWidth: 10
Type: 0
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"10086\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n
\ \"traits\": \"Spell. Rot. Cursed.\",\n \"cycle\": \"The Feast of Hemlock Vale\"\n}"
GUID: bbeac6
Grid: true
GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''
MeasureMovement: false
Name: Card
Nickname: Abyssal Rot
SidewaysCard: false
Snap: true
Sticky: true
Tags:
- PlayerCard
Tooltip: true
Transform:
posX: 58.47
posY: 3.67
posZ: -15.26
rotX: 0
rotY: 270
rotZ: 0
scaleX: 1
scaleY: 1
scaleZ: 1
Value: 0
XmlUI: ''

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'2321':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1655600400212405700/559F1F3EF87BDF7F067F9B7011EDC3A6ACE71259/
NumHeight: 5
NumWidth: 5
@ -19,9 +19,10 @@ CustomDeck:
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"07159\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n
\ \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\":
1,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}"
GMNotes: "{\n \"id\": \"07159\",\n \"type\": \"Asset\",\n \"slot\": \"Hand\",\n
\ \"class\": \"Mystic\",\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item.
Tome.\",\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth
Conspiracy\"\n}"
GUID: a2d392
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'5376':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/
NumHeight: 7
NumWidth: 10

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'5833':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320664132663842/9B2F50595A754585A4DF12D6D48DC2561DC0E2C9/
NumHeight: 7
NumWidth: 10

View File

@ -0,0 +1,55 @@
AltLookAngle:
x: 0
y: 0
z: 0
Autoraise: true
CardID: 917417
ColorDiffuse:
b: 0.71324
g: 0.71324
r: 0.71324
CustomDeck:
'9174':
BackIsHidden: true
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632751/4F8200D4B672882FF609D4B1B9D438C61AF20447/
NumHeight: 7
NumWidth: 10
Type: 0
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"10095\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n
\ \"level\": 0,\n \"traits\": \"Innate. Cursed.\",\n \"wildIcons\": 1,\n \"cycle\":
\"The Feast of Hemlock Vale\"\n}"
GUID: e91c5e
Grid: true
GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''
MeasureMovement: false
Name: Card
Nickname: Accursed
SidewaysCard: false
Snap: true
Sticky: true
Tags:
- PlayerCard
Tooltip: true
Transform:
posX: 13.08
posY: 3.55
posZ: 6.5
rotX: 0
rotY: 270
rotZ: 0
scaleX: 1
scaleY: 1
scaleZ: 1
Value: 0
XmlUI: ''

View File

@ -3,26 +3,27 @@ AltLookAngle:
y: 0
z: 0
Autoraise: true
CardID: 450617
CardID: 321
ColorDiffuse:
b: 0.71324
g: 0.71324
r: 0.71324
CustomDeck:
'4506':
'3':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/
NumHeight: 7
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2115061845812962486/A68B8BF7E4862F21369DAC4A37D813EC664EAC34/
NumHeight: 6
NumWidth: 10
Type: 0
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"02266-t\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n
\ \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"cycle\": \"The Dunwich
Legacy\"\n}"
GUID: e5d5f0
\ \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"uses\": [\n {\n
\ \"count\": 3,\n \"type\": \"Universal\",\n \"token\": \"universalActionAbility\"\n
\ }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}"
GUID: e92f21
Grid: true
GridProjection: false
Hands: true
@ -42,9 +43,9 @@ Tags:
- PlayerCard
Tooltip: true
Transform:
posX: 9.13
posY: 3.9
posZ: -16.72
posX: -19.75
posY: 3.45
posZ: -54.08
rotX: 0
rotY: 270
rotZ: 0

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'3152':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/
NumHeight: 7
NumWidth: 10
@ -20,8 +20,9 @@ CustomDeck:
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"02266\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n
\ \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"cycle\": \"The Dunwich
Legacy\"\n}"
\ \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"uses\": [\n {\n
\ \"count\": 3,\n \"type\": \"Universal\",\n \"token\": \"universalActionAbility\"\n
\ }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}"
GUID: 074858
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'3187':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/
NumHeight: 7
NumWidth: 10
@ -19,9 +19,9 @@ CustomDeck:
UniqueBack: false
Description: The Fateful Step
DragSelectable: true
GMNotes: "{\n \"id\": \"05040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n
\ \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"cycle\": \"The Circle
Undone\"\n}"
GMNotes: "{\n \"id\": \"05040\",\n \"type\": \"Asset\",\n \"slot\": \"Tarot\",\n
\ \"class\": \"Neutral\",\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n
\ \"cycle\": \"The Circle Undone\"\n}"
GUID: 52a677
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'4310':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/
NumHeight: 7
NumWidth: 10
@ -19,9 +19,9 @@ CustomDeck:
UniqueBack: false
Description: Let Your Arrow Fly True
DragSelectable: true
GMNotes: "{\n \"id\": \"05023\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n
\ \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"cycle\": \"The Circle
Undone\"\n}"
GMNotes: "{\n \"id\": \"05023\",\n \"type\": \"Asset\",\n \"slot\": \"Tarot\",\n
\ \"class\": \"Guardian\",\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n
\ \"cycle\": \"The Circle Undone\"\n}"
GUID: c4d436
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'2329':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/
NumHeight: 7
NumWidth: 10

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'2746':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/
NumHeight: 7
NumWidth: 10

View File

@ -0,0 +1,55 @@
AltLookAngle:
x: 0
y: 0
z: 0
Autoraise: true
CardID: 917300
ColorDiffuse:
b: 0.71324
g: 0.71324
r: 0.71324
CustomDeck:
'9173':
BackIsHidden: true
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
NumHeight: 7
NumWidth: 10
Type: 0
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"10002\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n
\ \"cost\": 2,\n \"traits\": \"Improvised. Upgrade.\",\n \"wildIcons\": 2,\n \"cycle\":
\"The Feast of Hemlock Vale\"\n}"
GUID: c9fb2f
Grid: true
GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''
MeasureMovement: false
Name: Card
Nickname: Ad Hoc
SidewaysCard: false
Snap: true
Sticky: true
Tags:
- PlayerCard
Tooltip: true
Transform:
posX: 13.08
posY: 3.55
posZ: -7.16
rotX: 0
rotY: 270
rotZ: 0
scaleX: 1
scaleY: 1
scaleZ: 1
Value: 0
XmlUI: ''

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'3152':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/
NumHeight: 7
NumWidth: 10

View File

@ -0,0 +1,54 @@
AltLookAngle:
x: 0
y: 0
z: 0
Autoraise: true
CardID: 917409
ColorDiffuse:
b: 0.71324
g: 0.71324
r: 0.71324
CustomDeck:
'9174':
BackIsHidden: true
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632751/4F8200D4B672882FF609D4B1B9D438C61AF20447/
NumHeight: 7
NumWidth: 10
Type: 0
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"10087\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n
\ \"traits\": \"Spell. Rot. Cursed.\",\n \"cycle\": \"The Feast of Hemlock Vale\"\n}"
GUID: 3e6219
Grid: true
GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''
MeasureMovement: false
Name: Card
Nickname: Aember Rot
SidewaysCard: false
Snap: true
Sticky: true
Tags:
- PlayerCard
Tooltip: true
Transform:
posX: 52.14
posY: 3.67
posZ: -17.53
rotX: 0
rotY: 270
rotZ: 0
scaleX: 1
scaleY: 1
scaleZ: 1
Value: 0
XmlUI: ''

View File

@ -0,0 +1,55 @@
AltLookAngle:
x: 0
y: 0
z: 0
Autoraise: true
CardID: 917303
ColorDiffuse:
b: 0.71324
g: 0.71324
r: 0.71324
CustomDeck:
'9173':
BackIsHidden: true
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
NumHeight: 7
NumWidth: 10
Type: 0
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"10007\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n
\ \"cost\": 0,\n \"traits\": \"Science.\",\n \"agilityIcons\": 1,\n \"cycle\":
\"The Feast of Hemlock Vale\"\n}"
GUID: 84ad64
Grid: true
GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''
MeasureMovement: false
Name: Card
Nickname: Aetheric Current (Yoth)
SidewaysCard: false
Snap: true
Sticky: true
Tags:
- PlayerCard
Tooltip: true
Transform:
posX: 13.08
posY: 3.55
posZ: -7.16
rotX: 0
rotY: 270
rotZ: 0
scaleX: 1
scaleY: 1
scaleZ: 1
Value: 0
XmlUI: ''

View File

@ -0,0 +1,55 @@
AltLookAngle:
x: 0
y: 0
z: 0
Autoraise: true
CardID: 917302
ColorDiffuse:
b: 0.71324
g: 0.71324
r: 0.71324
CustomDeck:
'9173':
BackIsHidden: true
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
NumHeight: 7
NumWidth: 10
Type: 0
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"10006\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n
\ \"cost\": 0,\n \"traits\": \"Science.\",\n \"combatIcons\": 1,\n \"cycle\":
\"The Feast of Hemlock Vale\"\n}"
GUID: 84ad65
Grid: true
GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''
MeasureMovement: false
Name: Card
Nickname: Aetheric Current (Yuggoth)
SidewaysCard: false
Snap: true
Sticky: true
Tags:
- PlayerCard
Tooltip: true
Transform:
posX: 13.08
posY: 3.55
posZ: -7.16
rotX: 0
rotY: 270
rotZ: 0
scaleX: 1
scaleY: 1
scaleZ: 1
Value: 0
XmlUI: ''

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'3688':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/
NumHeight: 7
NumWidth: 10

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'3786':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/
NumHeight: 7
NumWidth: 10
@ -19,9 +19,10 @@ CustomDeck:
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"05274\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n
\ \"cost\": 7,\n \"level\": 5,\n \"traits\": \"Ally. Agency.\",\n \"willpowerIcons\":
1,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}"
GMNotes: "{\n \"id\": \"05274\",\n \"type\": \"Asset\",\n \"slot\": \"Ally\",\n
\ \"class\": \"Guardian\",\n \"cost\": 7,\n \"level\": 5,\n \"traits\": \"Ally.
Agency.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"combatIcons\":
1,\n \"cycle\": \"The Circle Undone\"\n}"
GUID: d6eda3
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'5886':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1941643328387688196/FE8468C5066E61AB3C228A48639F47D0226DFCF6/
NumHeight: 2
NumWidth: 5

View File

@ -11,8 +11,8 @@ ColorDiffuse:
CustomDeck:
'3790':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2021606446230201640/A992318B1957FC69EB36B5E6FC87D226AAC5EC21/
NumHeight: 7
NumWidth: 10
Type: 0

View File

@ -21,7 +21,15 @@ Description: The Waitress
DragSelectable: true
GMNotes: "{\n \"id\": \"01004-pb\",\n \"type\": \"Investigator\",\n \"class\":
\"Mystic\",\n \"traits\": \"Sorcerer.\",\n \"willpowerIcons\": 5,\n \"intellectIcons\":
2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Core\"\n}"
2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Bad Blood\",\n
\ \"extraToken\": \"Reaction\",\n \"deck_requirements\": {\n \"size\": 30,\n
\ \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"01012\":
1,\n \"90018\": 1\n },\n {\n \"01013\": 1,\n \"90019\":
1\n }\n ]\n },\n \"deck_options\": [\n {\n \"faction\": [\n \"mystic\",\n
\ \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
5\n }\n },\n {\n \"faction\": [\n \"spell\",\n \"occult\"\n
\ ],\n \"level\": {\n \"min\": 0,\n \"max\": 3\n }\n
\ }\n ]\n}"
GUID: 909f30
Grid: true
GridProjection: false

View File

@ -21,7 +21,14 @@ Description: The Waitress
DragSelectable: true
GMNotes: "{\n \"id\": \"01004-pf\",\n \"type\": \"Investigator\",\n \"class\":
\"Mystic\",\n \"traits\": \"Sorcerer.\",\n \"willpowerIcons\": 5,\n \"intellectIcons\":
2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Core\"\n}"
2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Bad Blood\",\n
\ \"extraToken\": \"Reaction\",\n \"deck_requirements\": {\n \"size\": 30,\n
\ \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"01012\":
1,\n \"90018\": 1\n },\n {\n \"01013\": 1,\n \"90019\":
1\n }\n ]\n },\n \"deck_options\": [\n {\n \"faction\": [\n \"mystic\",\n
\ \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
5\n }\n },\n {\n \"faction\": [\n \"survivor\"\n ],\n
\ \"level\": {\n \"min\": 0,\n \"max\": 2\n }\n }\n ]\n}"
GUID: 02db0a
Grid: true
GridProjection: false

View File

@ -21,7 +21,15 @@ Description: The Waitress
DragSelectable: true
GMNotes: "{\n \"id\": \"01004-p\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n
\ \"traits\": \"Sorcerer.\",\n \"willpowerIcons\": 5,\n \"intellectIcons\": 2,\n
\ \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Core\"\n}"
\ \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\": \"Bad Blood\",\n \"extraToken\":
\"None\",\n \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
1,\n \"signatures\": [\n {\n \"01012\": 1,\n \"90018\": 1\n
\ },\n {\n \"01013\": 1,\n \"90019\": 1\n }\n ]\n
\ },\n \"deck_options\": [\n {\n \"faction\": [\n \"mystic\",\n
\ \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
5\n }\n },\n {\n \"faction\": [\n \"spell\",\n \"occult\"\n
\ ],\n \"level\": {\n \"min\": 0,\n \"max\": 3\n }\n
\ }\n ]\n}"
GUID: 01b6ef
Grid: true
GridProjection: false

View File

@ -22,7 +22,13 @@ DragSelectable: true
GMNotes: "{\n \"id\": \"01004\",\n \"alternate_ids\": [\n \"01504\"\n ],\n \"type\":
\"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\",\n \"willpowerIcons\":
5,\n \"intellectIcons\": 2,\n \"combatIcons\": 2,\n \"agilityIcons\": 3,\n \"cycle\":
\"Core\"\n}"
\"Core\",\n \"extraToken\": \"Reaction\",\n \"deck_requirements\": {\n \"size\":
30,\n \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"01012\":
1,\n \"90018\": 1\n },\n {\n \"01013\": 1,\n \"90019\":
1\n }\n ]\n },\n \"deck_options\": [\n {\n \"faction\": [\n \"mystic\",\n
\ \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
5\n }\n },\n {\n \"faction\": [\n \"survivor\"\n ],\n
\ \"level\": {\n \"min\": 0,\n \"max\": 2\n }\n }\n ]\n}"
GUID: 25e2db
Grid: true
GridProjection: false
@ -64,7 +70,15 @@ States:
GMNotes: "{\r\n \"id\": \"01004\",\r\n \"alternate_ids\": [\r\n \"01504\"\r\n
\ ],\r\n \"type\": \"Investigator\",\r\n \"class\": \"Mystic\",\r\n \"traits\":
\"Sorcerer.\",\r\n \"willpowerIcons\": 5,\r\n \"intellectIcons\": 2,\r\n \"combatIcons\":
2,\r\n \"agilityIcons\": 3,\r\n \"cycle\": \"Core\"\r\n}\r"
2,\r\n \"agilityIcons\": 3,\r\n \"cycle\": \"Core\",\r\n \"extraToken\":
\"Reaction\", \r\n \"deck_requirements\": {\r\n \"size\": 30,\r\n \"randomBasicWeaknessCount\":
1,\r\n \"signatures\": [\r\n {\r\n \"01012\": 1,\r\n \"90018\":
1\r\n },\r\n {\r\n \"01013\": 1,\r\n \"90019\": 1\r\n
\ }\r\n ]\r\n },\r\n \"deck_options\": [\r\n {\r\n \"faction\":
[\r\n \"mystic\",\r\n \"neutral\"\r\n ],\r\n \"level\":
{\r\n \"min\": 0,\r\n \"max\": 5\r\n }\r\n },\r\n {\r\n
\ \"faction\": [\r\n \"survivor\"\r\n ],\r\n \"level\":
{\r\n \"min\": 0,\r\n \"max\": 2\r\n }\r\n }\r\n ]\r\n}\r\n"
GUID: 6797bb
Grid: true
GridProjection: false

View File

@ -81,12 +81,12 @@ States:
- Minicard
Tooltip: true
Transform:
posX: 40.7253036
posY: 1.29860592
posZ: 66.7765656
rotX: 1.697304e-07
rotY: 270.0102
rotZ: 2.00479718e-07
posX: 40
posY: 1.3
posZ: 66
rotX: 0
rotY: 270
rotZ: 0
scaleX: 0.6
scaleY: 1
scaleZ: 0.6

View File

@ -0,0 +1,56 @@
AltLookAngle:
x: 0
y: 0
z: 0
Autoraise: true
CardID: 537606
ColorDiffuse:
b: 0.71324
g: 0.71324
r: 0.71324
CustomDeck:
'5376':
BackIsHidden: true
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2453969772006056023/3B1E7D4CD84213ED69594B15606531799383F4AA/
NumHeight: 3
NumWidth: 9
Type: 0
UniqueBack: false
Description: Faithful Steed
DragSelectable: true
GMNotes: "{\n \"id\": \"10642\",\n \"type\": \"Asset\",\n \"slot\": \"Ally\",\n
\ \"class\": \"Neutral\",\n \"cost\": 2,\n \"traits\": \"Ally. Creature.\",\n
\ \"cycle\": \"The Feast of Hemlock Vale\"\n}"
GUID: f8a7c6
Grid: true
GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''
MeasureMovement: false
Name: Card
Nickname: Ajax
SidewaysCard: false
Snap: true
Sticky: true
Tags:
- Asset
- PlayerCard
Tooltip: true
Transform:
posX: 31.17
posY: 3.67
posZ: 11.69
rotX: 0
rotY: 270
rotZ: 0
scaleX: 1
scaleY: 1
scaleZ: 1
Value: 0
XmlUI: ''

View File

@ -21,7 +21,15 @@ Description: The Shaman
DragSelectable: true
GMNotes: "{\n \"id\": \"03004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n
\ \"traits\": \"Sorcerer.\",\n \"willpowerIcons\": 5,\n \"intellectIcons\": 2,\n
\ \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"The Path to Carcosa\"\n}"
\ \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"The Path to Carcosa\",\n
\ \"extraToken\": \"None\",\n \"deck_requirements\": {\n \"size\": 30,\n \"randomBasicWeaknessCount\":
1,\n \"signatures\": [\n {\n \"03014\": 1\n },\n {\n \"03015\":
1\n }\n ]\n },\n \"deck_options\": [\n {\n \"faction\": [\n \"mystic\",\n
\ \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
5\n }\n },\n {\n \"uses\": [\n \"charge\"\n ],\n \"level\":
{\n \"min\": 0,\n \"max\": 4\n }\n },\n {\n \"trait\":
[\n \"occult\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
0\n }\n }\n ]\n}"
GUID: 452ed8
Grid: true
GridProjection: false

View File

@ -11,35 +11,36 @@ ColorDiffuse:
CustomDeck:
'3790':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2021606446230201640/A992318B1957FC69EB36B5E6FC87D226AAC5EC21/
NumHeight: 7
NumWidth: 10
Type: 0
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"09040\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
\ \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Science.\",\n \"willpowerIcons\":
1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\":
\"resource\"\n }\n ],\n \"customizations\": [\n {\n \"name\": \"Mending
GMNotes: "{\n \"id\": \"09040\",\n \"type\": \"Asset\",\n \"slot\": \"Hand\",\n
\ \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item.
Science.\",\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n
\ \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"customizations\":
[\n {\n \"name\": \"Mending Distillate\",\n \"xp\": 1,\n \"text\":
\"Add this option: \u201C\u27D0 Heal 2 damage.\u201D\"\n },\n {\n \"name\":
\"Calming Distillate\",\n \"xp\": 1,\n \"text\": \"Add this option: \u201C\u27D0
Heal 2 horror.\u201D\"\n },\n {\n \"name\": \"Enlightening Distillate\",\n
\ \"xp\": 1,\n \"text\": \"Add this option: \u201C\u27D0 Place 1 charge
or secret on an asset you control.\u201D\"\n },\n {\n \"name\": \"Quickening
Distillate\",\n \"xp\": 1,\n \"text\": \"Add this option: \u201C\u27D0
Heal 2 damage.\u201D\"\n },\n {\n \"name\": \"Calming Distillate\",\n
\ \"xp\": 1,\n \"text\": \"Add this option: \u201C\u27D0 Heal 2 horror.\u201D\"\n
\ },\n {\n \"name\": \"Enlightening Distillate\",\n \"xp\": 1,\n
\ \"text\": \"Add this option: \u201C\u27D0 Place 1 charge or secret on an asset
you control.\u201D\"\n },\n {\n \"name\": \"Quickening Distillate\",\n
\ \"xp\": 1,\n \"text\": \"Add this option: \u201C\u27D0 Move up to 2 times.\u201D\"\n
\ },\n {\n \"name\": \"Refined\",\n \"xp\": 2,\n \"text\": \"Alchemical
Distillation enters play with 2 additional supplies on it.\",\n \"replaces\":
{\n \"uses\": [\n {\n \"count\": 5,\n \"type\":
\"Supply\",\n \"token\": \"resource\"\n }\n ]\n }\n
\ },\n {\n \"name\": \"Empowered\",\n \"xp\": 4,\n \"text\":
\"When you initiate this skill test, you may increase its difficulty by 2. If you
do, increase the value of the effect granted by each option by 1 for this test.\"\n
\ },\n {\n \"name\": \"Perfected\",\n \"xp\": 5,\n \"text\":
\"If you succeed by 2 or more, the chosen investigator may perform two different
options instead of one.\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}"
Move up to 2 times.\u201D\"\n },\n {\n \"name\": \"Refined\",\n \"xp\":
2,\n \"text\": \"Alchemical Distillation enters play with 2 additional supplies
on it.\",\n \"replaces\": {\n \"uses\": [\n {\n \"count\":
5,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n
\ ]\n }\n },\n {\n \"name\": \"Empowered\",\n \"xp\":
4,\n \"text\": \"When you initiate this skill test, you may increase its difficulty
by 2. If you do, increase the value of the effect granted by each option by 1 for
this test.\"\n },\n {\n \"name\": \"Perfected\",\n \"xp\": 5,\n
\ \"text\": \"If you succeed by 2 or more, the chosen investigator may perform
two different options instead of one.\"\n }\n ],\n \"cycle\": \"The Scarlet
Keys\"\n}"
GUID: 502a4d
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'4440':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/
NumHeight: 7
NumWidth: 10
@ -19,11 +19,11 @@ CustomDeck:
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"52007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n
\ \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"willpowerIcons\":
1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\":
\"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to
the Path to Carcosa\"\n}"
GMNotes: "{\n \"id\": \"52007\",\n \"type\": \"Asset\",\n \"slot\": \"Arcane\",\n
\ \"class\": \"Mystic\",\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spell.\",\n
\ \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\":
4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\":
\"Return to the Path to Carcosa\"\n}"
GUID: 283e54
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'2303':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/
NumHeight: 7
NumWidth: 10
@ -19,10 +19,11 @@ CustomDeck:
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"03032\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n
\ \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"willpowerIcons\":
1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\":
\"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}"
GMNotes: "{\n \"id\": \"03032\",\n \"type\": \"Asset\",\n \"slot\": \"Arcane\",\n
\ \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spell.\",\n
\ \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\":
\"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path
to Carcosa\"\n}"
GUID: 54832d
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'2356':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/
NumHeight: 7
NumWidth: 10

View File

@ -0,0 +1,63 @@
AltLookAngle:
x: 0
y: 0
z: 0
Autoraise: true
CardID: 117303
ColorDiffuse:
b: 0.71324
g: 0.71324
r: 0.71324
CustomDeck:
'1173':
BackIsHidden: true
BackURL: http://cloud-3.steamusercontent.com/ugc/2424696374430631817/A15FFE0907238AB578CFEB119974545A4408E3A1/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430631996/4C0628EA8BAEB615CBF9575C1B2F0389EED9C4B7/
NumHeight: 2
NumWidth: 4
Type: 0
UniqueBack: true
Description: The Countess
DragSelectable: true
GMNotes: "{\n \"id\": \"10009\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n
\ \"traits\": \"Drifter. Socialite.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\":
4,\n \"combatIcons\": 2,\n \"agilityIcons\": 4,\n \"cycle\": \"The Feast of Hemlock
Vale\",\n \"extraToken\": \"Parley\",\n \"deck_requirements\": {\n \"size\":
30,\n \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"10010\":
3\n },\n {\n \"10011\": 1\n }\n ]\n },\n \"deck_options\":
[\n {\n \"faction\": [\n \"rogue\",\n \"neutral\"\n ],\n
\ \"level\": {\n \"min\": 0,\n \"max\": 5\n }\n },\n {\n
\ \"special\": [\n \"parley\"\n ],\n \"level\": {\n \"min\":
0,\n \"max\": 5\n }\n }\n ]\n}"
GUID: 54eaa5
Grid: true
GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''
MeasureMovement: false
Name: Card
Nickname: Alessandra Zorzi
SidewaysCard: true
Snap: true
Sticky: true
Tags:
- Investigator
- PlayerCard
Tooltip: true
Transform:
posX: 9.23
posY: 3.55
posZ: 2.42
rotX: 0
rotY: 180
rotZ: 0
scaleX: 1.15
scaleY: 1
scaleZ: 1.15
Value: 0
XmlUI: ''

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'2780':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/
NumHeight: 7
NumWidth: 10
@ -19,9 +19,9 @@ CustomDeck:
UniqueBack: false
Description: Fearless Flatfoot
DragSelectable: true
GMNotes: "{\n \"id\": \"05151\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n
\ \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Detective. Police.\",\n \"intellectIcons\":
1,\n \"cycle\": \"The Circle Undone\"\n}"
GMNotes: "{\n \"id\": \"05151\",\n \"type\": \"Asset\",\n \"slot\": \"Ally\",\n
\ \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally.
Detective. Police.\",\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}"
GUID: ae20e0
Grid: true
GridProjection: false

View File

@ -3,17 +3,17 @@ AltLookAngle:
y: 0
z: 0
Autoraise: true
CardID: 450620
CardID: 325
ColorDiffuse:
b: 0.71324
g: 0.71324
r: 0.71324
CustomDeck:
'4506':
'3':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1656721113609569419/60B1DFC7C68C406C34641A1F53078F46D610821C/
NumHeight: 7
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2115061845812962486/A68B8BF7E4862F21369DAC4A37D813EC664EAC34/
NumHeight: 6
NumWidth: 10
Type: 0
UniqueBack: false
@ -22,7 +22,7 @@ DragSelectable: true
GMNotes: "{\n \"id\": \"04309-t\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n
\ \"level\": 5,\n \"traits\": \"Fortune.\",\n \"wildIcons\": 2,\n \"cycle\":
\"The Forgotten Age\"\n}"
GUID: ff1dfe
GUID: 5db655
Grid: true
GridProjection: false
Hands: true
@ -42,9 +42,9 @@ Tags:
- PlayerCard
Tooltip: true
Transform:
posX: 9.12
posY: 4.01
posZ: -16.72
posX: -19.75
posY: 3.45
posZ: -24.74
rotX: 0
rotY: 270
rotZ: 0

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'2655':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/
NumHeight: 7
NumWidth: 10

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'5452':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/
NumHeight: 7
NumWidth: 10

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'3688':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/
NumHeight: 7
NumWidth: 10

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'2303':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/
NumHeight: 7
NumWidth: 10
@ -19,9 +19,9 @@ CustomDeck:
UniqueBack: false
Description: Speaker to the Dead
DragSelectable: true
GMNotes: "{\n \"id\": \"02232\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n
\ \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Sorcerer.\",\n \"intellectIcons\":
1,\n \"cycle\": \"The Dunwich Legacy\"\n}"
GMNotes: "{\n \"id\": \"02232\",\n \"type\": \"Asset\",\n \"slot\": \"Ally\",\n
\ \"class\": \"Mystic\",\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally.
Sorcerer.\",\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}"
GUID: 53867b
Grid: true
GridProjection: false

View File

@ -22,7 +22,14 @@ DragSelectable: true
GMNotes: "{\n \"id\": \"07002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n
\ \"traits\": \"Miskatonic. Scholar.\",\n \"willpowerIcons\": 2,\n \"intellectIcons\":
2,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"The Innsmouth
Conspiracy\"\n}"
Conspiracy\",\n \"extraToken\": \"None\",\n \"deck_requirements\": {\n \"size\":
30,\n \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"07008\":
1\n },\n {\n \"07009\": 1\n }\n ]\n \n },\n \"deck_options\":
[\n {\n \"faction\": [\n \"seeker\",\n \"neutral\"\n ],\n
\ \"level\": {\n \"min\": 0,\n \"max\": 5\n }\n },\n {\n
\ \"trait\": [\n \"practiced\"\n ],\n \"type\": [\n \"skill\"\n
\ ],\n \"level\": {\n \"min\": 0,\n \"max\": 3\n }\n
\ }\n ]\n}"
GUID: 05b950
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'2263':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/
NumHeight: 7
NumWidth: 10

View File

@ -21,7 +21,14 @@ Description: The Operator
DragSelectable: true
GMNotes: "{\n \"id\": \"09011\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n
\ \"traits\": \"Chosen. Cursed.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\":
3,\n \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"The Scarlet Keys\"\n}"
3,\n \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"The Scarlet Keys\",\n
\ \"extraToken\": \"Reaction\",\n \"deck_requirements\": {\n \"size\": 30,\n
\ \"randomBasicWeaknessCount\": 1,\n \"signatures\": [\n {\n \"09012\":
1,\n \"09013\": 1\n },\n {\n \"09014\": 1\n }\n ]\n
\ },\n \"deck_options\": [\n {\n \"faction\": [\n \"mystic\",\n
\ \"neutral\"\n ],\n \"level\": {\n \"min\": 0,\n \"max\":
5\n }\n },\n {\n \"trait\": [\n \"charm\"\n ],\n \"level\":
{\n \"min\": 0,\n \"max\": 4\n }\n }\n ]\n}"
GUID: 4c2a3d
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'5274':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/
NumHeight: 7
NumWidth: 10

View File

@ -0,0 +1,238 @@
-- Bundled by luabundle {"version":"1.6.0"}
local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire)
local loadingPlaceholder = {[{}] = true}
local register
local modules = {}
local require
local loaded = {}
register = function(name, body)
if not modules[name] then
modules[name] = body
end
end
require = function(name)
local loadedModule = loaded[name]
if loadedModule then
if loadedModule == loadingPlaceholder then
return nil
end
else
if not modules[name] then
if not superRequire then
local identifier = type(name) == 'string' and '\"' .. name .. '\"' or tostring(name)
error('Tried to require ' .. identifier .. ', but no such module has been registered')
else
return superRequire(name)
end
end
loaded[name] = loadingPlaceholder
loadedModule = modules[name](require, loaded, register, modules)
loaded[name] = loadedModule
end
return loadedModule
end
return require, loaded, register, modules
end)(nil)
__bundle_register("playercards/CardsWithHelper", function(require, _LOADED, __bundle_register, __bundle_modules)
--[[ Library for cards that have helpers
This file is used to share code between cards with helpers.
It syncs the visibility of the helper with the option panel and
makes sure the card has the respective tag.
Additionally, it will call 'initiliaze()' and 'shutOff()'
in the parent file if they are present.
Instructions:
1) Define the global variables before requiring this file:
hasXML = true (whether the card has an XML display)
isHelperEnabled = false (default state of the helper, should be 'false')
2) In 'onLoad()'', call 'syncDisplayWithOptionPanel()'
----------------------------------------------------------]]
local optionPanelApi = require("core/OptionPanelApi")
-- if the respective option is enabled in onLoad(), enable the helper
function syncDisplayWithOptionPanel()
self.addTag("CardWithHelper")
local options = optionPanelApi.getOptions()
if options.enableCardHelpers then
setHelperState(true)
else
updateDisplay()
end
end
-- forces a new state
function setHelperState(newState)
isHelperEnabled = newState
updateSave()
updateDisplay()
end
-- toggles the current state
function toggleHelper()
isHelperEnabled = not isHelperEnabled
updateSave()
updateDisplay()
end
-- updates the visibility and calls events (after a small delay to allow XML being set)
function updateDisplay()
Wait.frames(actualDisplayUpdate, 5)
end
function actualDisplayUpdate()
if isHelperEnabled then
self.clearContextMenu()
self.addContextMenuItem("Disable Helper", toggleHelper)
if hasXML then self.UI.show("Helper") end
if initialize then initialize() end
else
self.clearContextMenu()
self.addContextMenuItem("Enable Helper", toggleHelper)
if hasXML then self.UI.hide("Helper") end
if shutOff then shutOff() end
end
end
end)
__bundle_register("core/OptionPanelApi", function(require, _LOADED, __bundle_register, __bundle_modules)
do
local OptionPanelApi = {}
-- loads saved options
---@param options table Set a new state for the option table
OptionPanelApi.loadSettings = function(options)
return Global.call("loadSettings", options)
end
---@return any: Table of option panel state
OptionPanelApi.getOptions = function()
return Global.getTable("optionPanel")
end
return OptionPanelApi
end
end)
__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules)
require("playercards/cards/Analysis")
end)
__bundle_register("playercards/cards/Analysis", function(require, _LOADED, __bundle_register, __bundle_modules)
require("playercards/CardsWithHelper")
require("playercards/CardsThatRedrawTokens")
end)
__bundle_register("playercards/CardsThatRedrawTokens", function(require, _LOADED, __bundle_register, __bundle_modules)
--[[ Library for cards that return and redraw tokens
This file is used to add an XML button to a card, turned on via context menu.
Valid options modify the appearance of the XML button, as well as the
behavior of the return and redraw function. Set options before requiring this file.
Parameters for the return and redraw functions. Typically set VALID_TOKENS or INVALID_TOKENS, not both.
If there are no restrictions on which tokens can be redrawn (e.g. Wendy Adams), keep both empty.
* VALID_TOKENS --@type table
- keyed table which lists all tokens that can be redrawn by the card
- example usage: "False Covenant"
> VALID_TOKENS = {
> ["Curse"] = true
> }
* INVALID_TOKENS --@type table
- keyed table which lists all tokens that cannot be redrawn by the card
- example usage: "Custom Ammunition"
> INVALID_TOKENS = {
> ["Auto-fail"] = true
> }
* DRAW_SPECIFIC_TOKEN --@type string (name of token or nil)
- if set, will attempt to draw that specific token
* RETURN_TO_POOL --@type string
- allows for the name of the card to be passed onto Global for any special handling
The following parameters modify the appearence of the XML button and are not listed as part of a table.
- buttonHeight (default is 450)
- buttonWidth (default is 1400)
- buttonPosition (default is "0 -55 -22")
- buttonFontSize (default is 250)
- buttonRotation (change if button is placed on an investigator cards)
- buttonLabel (default is "Redraw Token")
- buttonIcon (to add an icon to the right)
- buttonColor (default is "#77674DE6")
----------------------------------------------------------
EXAMPLE: Claypool's Furs
This card can only redraw the Frost token, and is replaced with a random token from the bag.
As a nice reminder the XML button takes on the Frost color and icon with the text "Cancel".
> buttonValue = "Cancel"
> buttonIcon = "token-frost"
> buttonColor = "#404450E6"
> buttonFontSize = 300
> VALID_TOKENS = {
> ["Frost"] = true
> }
>
> require...
----------------------------------------------------------]]
-- intentionally global
hasXML = true
isHelperEnabled = false
function updateSave()
self.script_state = JSON.encode({ isHelperEnabled = isHelperEnabled })
end
function onLoad(savedData)
if savedData and savedData ~= "" then
local loadedData = JSON.decode(savedData)
isHelperEnabled = loadedData.isHelperEnabled
end
createHelperXML()
syncDisplayWithOptionPanel()
end
function createHelperXML()
local xmlTable = { {
tag = "Button",
attributes = {
active = "false",
id = "Helper",
height = buttonHeight or 450,
width = buttonWidth or 1400,
rotation = buttonRotation or "0 0 180",
scale = "0.1 0.1 1",
position = buttonPosition or "0 -55 -22",
padding = "50 50 50 50",
font = "font_teutonic-arkham",
fontSize = buttonFontSize or 250,
onClick = "triggerXMLTokenLabelCreation",
color = buttonColor or "#77674DE6",
textColor = "White"
},
value = buttonLabel or "Redraw Token"
} }
if buttonIcon then
xmlTable[1].attributes.iconWidth = "400"
xmlTable[1].attributes.iconAlignment = "Right"
xmlTable[1].attributes.icon = buttonIcon
end
self.UI.setXmlTable(xmlTable)
end
function triggerXMLTokenLabelCreation()
Global.call("activeRedrawEffect", {
VALID_TOKENS = VALID_TOKENS,
INVALID_TOKENS = INVALID_TOKENS,
RETURN_TO_POOL = RETURN_TO_POOL
})
end
end)
return __bundle_require("__root")

View File

@ -11,8 +11,8 @@ ColorDiffuse:
CustomDeck:
'3790':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1814412497119438903/90145E036353C9A97F52096A369A70BF7073BFB6/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2021606446230201640/A992318B1957FC69EB36B5E6FC87D226AAC5EC21/
NumHeight: 7
NumWidth: 10
Type: 0
@ -30,7 +30,7 @@ HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScript: !include 'Card Analysis 80285f.ttslua'
LuaScriptState: ''
MeasureMovement: false
Name: Card

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'3745':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/
NumHeight: 7
NumWidth: 10

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'3684':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/
NumHeight: 7
NumWidth: 10

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'5892':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1807607979163972370/50A45AE585D6404E677DFCA597A0F5FE13346B97/
NumHeight: 4
NumWidth: 5

View File

@ -0,0 +1,57 @@
AltLookAngle:
x: 0
y: 0
z: 0
Autoraise: true
CardID: 917311
ColorDiffuse:
b: 0.71324
g: 0.71324
r: 0.71324
CustomDeck:
'9173':
BackIsHidden: true
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632272/9A953338B599473C1631AA82F75004CE941DA8B0/
NumHeight: 7
NumWidth: 10
Type: 0
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"10019\",\n \"type\": \"Asset\",\n \"slot\": \"Accessory\",\n
\ \"class\": \"Guardian\",\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item.
Charm. Blessed.\",\n \"willpowerIcons\": 1,\n \"cycle\": \"The Feast of Hemlock
Vale\"\n}"
GUID: c1fb1f
Grid: true
GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''
MeasureMovement: false
Name: Card
Nickname: Ancestral Token
SidewaysCard: false
Snap: true
Sticky: true
Tags:
- Asset
- PlayerCard
Tooltip: true
Transform:
posX: 13.08
posY: 3.55
posZ: -7.16
rotX: 0
rotY: 270
rotZ: 0
scaleX: 1
scaleY: 1
scaleZ: 1
Value: 0
XmlUI: ''

View File

@ -0,0 +1,56 @@
AltLookAngle:
x: 0
y: 0
z: 0
Autoraise: true
CardID: 330
ColorDiffuse:
b: 0.71324
g: 0.71324
r: 0.71324
CustomDeck:
'3':
BackIsHidden: true
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2115061845812962486/A68B8BF7E4862F21369DAC4A37D813EC664EAC34/
NumHeight: 6
NumWidth: 10
Type: 0
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"07122-t\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n
\ \"startsInPlay\": true,\n \"level\": 2,\n \"traits\": \"Covenant. Blessed.\",\n
\ \"permanent\": true,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}"
GUID: e01cc7
Grid: true
GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''
MeasureMovement: false
Name: Card
Nickname: Ancient Covenant (2) (Taboo)
SidewaysCard: false
Snap: true
Sticky: true
Tags:
- Asset
- PlayerCard
Tooltip: true
Transform:
posX: -16.59
posY: 3.45
posZ: -42.8
rotX: 0
rotY: 270
rotZ: 0
scaleX: 1
scaleY: 1
scaleZ: 1
Value: 0
XmlUI: ''

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'4306':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/
NumHeight: 7
NumWidth: 10
@ -19,9 +19,9 @@ CustomDeck:
UniqueBack: false
Description: Unidentified
DragSelectable: true
GMNotes: "{\n \"id\": \"04022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
\ \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"intellectIcons\":
1,\n \"cycle\": \"The Forgotten Age\"\n}"
GMNotes: "{\n \"id\": \"04022\",\n \"type\": \"Asset\",\n \"slot\": \"Hand\",\n
\ \"class\": \"Seeker\",\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Item.
Relic.\",\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}"
GUID: 9bc46e
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'5452':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/
NumHeight: 7
NumWidth: 10
@ -19,9 +19,11 @@ CustomDeck:
UniqueBack: false
Description: Transient Thoughts
DragSelectable: true
GMNotes: "{\n \"id\": \"53004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
\ \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"agilityIcons\":
2,\n \"cycle\": \"Return to the Forgotten Age\"\n}"
GMNotes: "{\n \"id\": \"53004\",\n \"type\": \"Asset\",\n \"slot\": \"Hand\",\n
\ \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item.
Relic.\",\n \"agilityIcons\": 2,\n \"uses\": [\n {\n \"count\": 0,\n \"type\":
\"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to
the Forgotten Age\"\n}"
GUID: 3289b0
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'2622':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/
NumHeight: 7
NumWidth: 10
@ -19,9 +19,11 @@ CustomDeck:
UniqueBack: false
Description: Knowledge of the Elders
DragSelectable: true
GMNotes: "{\n \"id\": \"04230\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
\ \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"intellectIcons\":
2,\n \"cycle\": \"The Forgotten Age\"\n}"
GMNotes: "{\n \"id\": \"04230\",\n \"type\": \"Asset\",\n \"slot\": \"Hand\",\n
\ \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item.
Relic.\",\n \"intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 0,\n
\ \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\":
\"The Forgotten Age\"\n}"
GUID: 863f91
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'2622':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/
NumHeight: 7
NumWidth: 10
@ -19,9 +19,11 @@ CustomDeck:
UniqueBack: false
Description: Minds in Harmony
DragSelectable: true
GMNotes: "{\n \"id\": \"04231\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n
\ \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\":
2,\n \"cycle\": \"The Forgotten Age\"\n}"
GMNotes: "{\n \"id\": \"04231\",\n \"type\": \"Asset\",\n \"slot\": \"Hand\",\n
\ \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item.
Relic.\",\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n \"count\": 0,\n
\ \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\":
\"The Forgotten Age\"\n}"
GUID: 9c56d3
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'3747':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/
NumHeight: 7
NumWidth: 10

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'3739':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/
NumHeight: 7
NumWidth: 10
@ -19,9 +19,9 @@ CustomDeck:
UniqueBack: false
Description: Mysterious Soothsayer
DragSelectable: true
GMNotes: "{\n \"id\": \"05283\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n
\ \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Ally. Clairvoyant.\",\n \"wildIcons\":
1,\n \"cycle\": \"The Circle Undone\"\n}"
GMNotes: "{\n \"id\": \"05283\",\n \"type\": \"Asset\",\n \"slot\": \"Ally\",\n
\ \"class\": \"Neutral\",\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Ally.
Clairvoyant.\",\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}"
GUID: 03a4de
Grid: true
GridProjection: false

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'3780':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/
NumHeight: 7
NumWidth: 10

View File

@ -0,0 +1,56 @@
AltLookAngle:
x: 0
y: 0
z: 0
Autoraise: true
CardID: 917415
ColorDiffuse:
b: 0.71324
g: 0.71324
r: 0.71324
CustomDeck:
'9174':
BackIsHidden: true
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430632751/4F8200D4B672882FF609D4B1B9D438C61AF20447/
NumHeight: 7
NumWidth: 10
Type: 0
UniqueBack: false
Description: ''
DragSelectable: true
GMNotes: "{\n \"id\": \"10093\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n
\ \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Augury. Double.\",\n \"willpowerIcons\":
1,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Feast of
Hemlock Vale\"\n}"
GUID: ba4746
Grid: true
GridProjection: false
Hands: true
HideWhenFaceDown: true
IgnoreFoW: false
LayoutGroupSortIndex: 0
Locked: false
LuaScript: ''
LuaScriptState: ''
MeasureMovement: false
Name: Card
Nickname: Antediluvian Hymn
SidewaysCard: false
Snap: true
Sticky: true
Tags:
- PlayerCard
Tooltip: true
Transform:
posX: 48.98
posY: 3.67
posZ: -24.36
rotX: 0
rotY: 270
rotZ: 0
scaleX: 1
scaleY: 1
scaleZ: 1
Value: 0
XmlUI: ''

View File

@ -3,7 +3,7 @@ AltLookAngle:
y: 0
z: 0
Autoraise: true
CardID: 378962
CardID: 378953
ColorDiffuse:
b: 0.71324
g: 0.71324
@ -11,8 +11,8 @@ ColorDiffuse:
CustomDeck:
'3789':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1625226898126493809/0EE7F5B9B916B56425CAC1C46F7FCEF9DBF55112/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/2424696374430579575/1F73F1B9316F11895AAD6A82B9AF2E2398FAD2F6/
NumHeight: 7
NumWidth: 10
Type: 0

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'5386':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1626320456298037683/22C99DD745DFF65ECC72FD32EFA9C9D0F0C12862/
NumHeight: 7
NumWidth: 10

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'4523':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/1858293462583875023/F146A60AEF1FBC9B5FC96189BC1894C468C1E811/
NumHeight: 2
NumWidth: 5

View File

@ -11,7 +11,7 @@ ColorDiffuse:
CustomDeck:
'3688':
BackIsHidden: true
BackURL: https://i.imgur.com/EcbhVuh.jpg/
BackURL: http://cloud-3.steamusercontent.com/ugc/2342503777940352139/A2D42E7E5C43D045D72CE5CFC907E4F886C8C690/
FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/
NumHeight: 7
NumWidth: 10
@ -20,8 +20,9 @@ CustomDeck:
Description: The Forgotten Daughter
DragSelectable: true
GMNotes: "{\n \"id\": \"01082\",\n \"alternate_ids\": [\n \"01582\"\n ],\n \"type\":
\"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 5,\n \"level\": 1,\n \"traits\":
\"Ally.\",\n \"willpowerIcons\": 1,\n \"cycle\": \"Core\"\n}"
\"Asset\",\n \"slot\": \"Ally\",\n \"class\": \"Survivor\",\n \"cost\": 5,\n
\ \"level\": 1,\n \"traits\": \"Ally.\",\n \"willpowerIcons\": 1,\n \"cycle\":
\"Core\"\n}"
GUID: 9393ec
Grid: true
GridProjection: false

Some files were not shown because too many files have changed in this diff Show More