diff --git a/unpacked.ttslua b/unpacked.ttslua index 1c8f735ce..0ecb75e83 100644 --- a/unpacked.ttslua +++ b/unpacked.ttslua @@ -1,106 +1,133 @@ ---[[ Lua code. See documentation: http://berserk-games.com/knowledgebase/scripting/ --]] --- Card size used for autodealing -- +-- Bundled by luabundle {"version":"1.6.0"} +local __bundle_require, __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire) + local loadingPlaceholder = {[{}] = true} --- global position constants -ENCOUNTER_DECK_POS = {-3.8, 1, 5.7} -ENCOUNTER_DECK_SPAWN_POS = {-3.8, 3, 5.7} -ENCOUNTER_DECK_DISCARD_POSITION = {-3.8, 0.5, 10.5} -g_cardWith=2.30; -g_cardHeigth=3.40; + local register + local modules = {} -containerId = 'fea079' -tokenDataId = '708279' + local require + local loaded = {} + register = function(name, body) + if not modules[name] then + modules[name] = body + end + end -maxSquid = 0 + require = function(name) + local loadedModule = loaded[name] -CACHE = { - object = {}, - data = {} + 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/Global") +end) +__bundle_register("core/Global", function(require, _LOADED, __bundle_register, __bundle_modules) +--------------------------------------------------------- +-- general setup +--------------------------------------------------------- + +ENCOUNTER_DECK_POS = {-3.93, 1, 5.76} +ENCOUNTER_DECK_DISCARD_POSITION = {-3.85, 1, 10.38} + +-- GUID of data helper +DATA_HELPER_GUID = "708279" + +-- GUIDs that will not be interactable (e.g. parts of the table) +local NOT_INTERACTABLE = { + "6161b4", + "721ba2", + "9f334f", + "23a43c", + "5450cc", + "463022", + "9487a4", + "91dd9b", + "f182ee", + "7bff34" } ---[[ The OnLoad function. This is called after everything in the game save finishes loading. -Most of your script code goes here. --]] -function onload() - --Player.White.changeColor('Yellow') - tokenplayerone = { - damageone = "http://cloud-3.steamusercontent.com/ugc/1758068501357115146/903D11AAE7BD5C254C8DC136E9202EE516289DEA/", - damagethree = "http://cloud-3.steamusercontent.com/ugc/1758068501357113055/8A45F27B2838FED09DEFE492C9C40DD82781613A/", - horrorone = "http://cloud-3.steamusercontent.com/ugc/1758068501357163535/6D9E0756503664D65BDB384656AC6D4BD713F5FC/", - horrorthree = "http://cloud-3.steamusercontent.com/ugc/1758068501357162977/E5D453CC14394519E004B4F8703FC425A7AE3D6C/", - resource = "http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/", - resourcethree = "https://i.imgur.com/1GZsDTt.png", - doom = "https://i.imgur.com/EoL7yaZ.png", - clue = "http://cloud-3.steamusercontent.com/ugc/1758068501357164917/1D06F1DC4D6888B6F57124BD2AFE20D0B0DA15A8/" - } +local chaosTokens = {} +local chaosTokensLastMat = nil +local IS_RESHUFFLING = false - TOKEN_DATA = { - clue = {image = tokenplayerone.clue, scale = {0.15, 0.15, 0.15}}, - resource = {image = tokenplayerone.resource, scale = {0.17, 0.17, 0.17}}, - doom = {image = tokenplayerone.doom, scale = {0.17, 0.17, 0.17}}, - damage = {image = tokenplayerone.damageone, scale = {0.17, 0.17, 0.17}}, - horror = {image = tokenplayerone.horrorone, scale = {0.17, 0.17, 0.17}} - } +--------------------------------------------------------- +-- data for tokens +--------------------------------------------------------- - getObjectFromGUID("6161b4").interactable=false - getObjectFromGUID("721ba2").interactable=false - getObjectFromGUID("9f334f").interactable=false - getObjectFromGUID("23a43c").interactable=false - getObjectFromGUID("5450cc").interactable=false - getObjectFromGUID("463022").interactable=false - getObjectFromGUID("9487a4").interactable=false - getObjectFromGUID("91dd9b").interactable=false - getObjectFromGUID("f182ee").interactable=false - getObjectFromGUID("7bff34").interactable=false +TOKEN_DATA = { + damage = {image = "http://cloud-3.steamusercontent.com/ugc/1758068501357115146/903D11AAE7BD5C254C8DC136E9202EE516289DEA/", scale = {0.17, 0.17, 0.17}}, + horror = {image = "http://cloud-3.steamusercontent.com/ugc/1758068501357163535/6D9E0756503664D65BDB384656AC6D4BD713F5FC/", scale = {0.17, 0.17, 0.17}}, + resource = {image = "http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/", scale = {0.17, 0.17, 0.17}}, + doom = {image = "https://i.imgur.com/EoL7yaZ.png", scale = {0.17, 0.17, 0.17}}, + clue = {image = "http://cloud-3.steamusercontent.com/ugc/1758068501357164917/1D06F1DC4D6888B6F57124BD2AFE20D0B0DA15A8/", scale = {0.15, 0.15, 0.15}} +} -end +IMAGE_TOKEN_MAP = { + ["https://i.imgur.com/nEmqjmj.png"] = "Elder Sign", + ["https://i.imgur.com/uIx8jbY.png"] = "+1", + ["https://i.imgur.com/btEtVfd.png"] = "0", + ["https://i.imgur.com/w3XbrCC.png"] = "-1", + ["https://i.imgur.com/bfTg2hb.png"] = "-2", + ["https://i.imgur.com/yfs8gHq.png"] = "-3", + ["https://i.imgur.com/qrgGQRD.png"] = "-4", + ["https://i.imgur.com/3Ym1IeG.png"] = "-5", + ["https://i.imgur.com/c9qdSzS.png"] = "-6", + ["https://i.imgur.com/4WRD42n.png"] = "-7", + ["https://i.imgur.com/9t3rPTQ.png"] = "-8", + ["https://i.imgur.com/stbBxtx.png"] = "Skull", + ["https://i.imgur.com/VzhJJaH.png"] = "Cultist", + ["https://i.imgur.com/1plY463.png"] = "Tablet", + ["https://i.imgur.com/ttnspKt.png"] = "Elder Thing", + ["https://i.imgur.com/lns4fhz.png"] = "Auto-fail", + ["http://cloud-3.steamusercontent.com/ugc/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/"] = "Bless", + ["http://cloud-3.steamusercontent.com/ugc/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/"] = "Curse", + ["http://cloud-3.steamusercontent.com/ugc/1858293462583104677/195F93C063A8881B805CE2FD4767A9718B27B6AE/"] = "Frost" +} -function onObjectDrop(player, obj) --- local mat = getObjectFromGUID("dsbd0ff4") --- log(mat.positionToLocal(obj.getPosition())) -end +--------------------------------------------------------- +-- data for chaos token stat tracker +--------------------------------------------------------- -function take_callback(object_spawned, mat) - customObject = object_spawned.getCustomObject() - local player = mat.getGUID(); +local maxSquid = 0 - local image = customObject.image - - -- Update global stats - if PULLS[image] == nil then - PULLS[image] = 0 - end - PULLS[image] = PULLS[image] + 1 - -- Update player stats - if PLAYER_PULLS[player][image] == nil then - PLAYER_PULLS[player][image] = 0 - end - PLAYER_PULLS[player][image] = PLAYER_PULLS[player][image] + 1 - -end MAT_GUID_TO_COLOUR = { ["8b081b"] = "White", - -- player 2 conrad ["bd0ff4"] = "Orange", - -- player ["383d8b"] = "Green", - -- playur 4 olivia ["0840d5"] = "Red" } - -PLAYER_PULLS = { - -- player 1 max +local personalStats = { ["8b081b"] = {}, - -- player 2 conrad ["bd0ff4"] = {}, - -- player ["383d8b"] = {}, - -- playur 4 olivia ["0840d5"] = {} } -PULLS = { +local overallStats = { -- cultist ["https://i.imgur.com/VzhJJaH.png"] = 0, -- skull @@ -141,213 +168,33 @@ PULLS = { ["http://cloud-3.steamusercontent.com/ugc/1858293462583104677/195F93C063A8881B805CE2FD4767A9718B27B6AE/"] = 0, } -IMAGE_TOKEN_MAP = { - -- elder sign - ["https://i.imgur.com/nEmqjmj.png"] = "Elder Sign", - -- plus one - ["https://i.imgur.com/uIx8jbY.png"] = "+1", - -- zero - ["https://i.imgur.com/btEtVfd.png"] = "0", - -- minus one - ["https://i.imgur.com/w3XbrCC.png"] = "-1", - -- minus two - ["https://i.imgur.com/bfTg2hb.png"] = "-2", - -- minus three - ["https://i.imgur.com/yfs8gHq.png"] = "-3", - -- minus four - ["https://i.imgur.com/qrgGQRD.png"] = "-4", - -- minus five - ["https://i.imgur.com/3Ym1IeG.png"] = "-5", - -- minus six - ["https://i.imgur.com/c9qdSzS.png"] = "-6", - -- minus seven - ["https://i.imgur.com/4WRD42n.png"] = "-7", - -- minus eight - ["https://i.imgur.com/9t3rPTQ.png"] = "-8", - -- skull - ["https://i.imgur.com/stbBxtx.png"] = "Skull", - -- cultist - ["https://i.imgur.com/VzhJJaH.png"] = "Cultist", - -- tablet - ["https://i.imgur.com/1plY463.png"] = "Tablet", - -- elder thing - ["https://i.imgur.com/ttnspKt.png"] = "Elder Thing", - -- tentacle - ["https://i.imgur.com/lns4fhz.png"] = "Auto-fail", - -- bless - ["http://cloud-3.steamusercontent.com/ugc/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/"] = "Bless", - -- curse - ["http://cloud-3.steamusercontent.com/ugc/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/"] = "Curse", - -- frost - ["http://cloud-3.steamusercontent.com/ugc/1858293462583104677/195F93C063A8881B805CE2FD4767A9718B27B6AE/"] = "Frost" -} +--------------------------------------------------------- +-- general code +--------------------------------------------------------- -function resetStats() - for key,value in pairs(PULLS) do - PULLS[key] = 0 - end - for playerKey, playerValue in pairs(PLAYER_PULLS) do - for key,value in pairs(PULLS) do - PLAYER_PULLS[playerKey][key] = value - end - end - - -end - -function getPlayerName(playerMatGuid) - local playerColour = MAT_GUID_TO_COLOUR[playerMatGuid] - if Player[playerColour].seated then - return Player[playerColour].steam_name - else - return playerColour +function onLoad() + for _, guid in ipairs(NOT_INTERACTABLE) do + getObjectFromGUID(guid).interactable = false end + math.randomseed(os.time()) end -function printStats() - local squidKing = "Nobody" +--------------------------------------------------------- +-- encounter card drawing +--------------------------------------------------------- +function isDeck(x) return x.tag == 'Deck' end - printToAll("\nOverall Game stats\n") - printNonZeroTokenPairs(PULLS) - printToAll("\nIndividual Stats\n") - for playerMatGuid, countTable in pairs(PLAYER_PULLS) do - local playerName = getPlayerName(playerMatGuid) - printToAll(playerName .. " Stats", {r=255,g=0,b=0}) - printNonZeroTokenPairs(PLAYER_PULLS[playerMatGuid]) - playerSquidCount = PLAYER_PULLS[playerMatGuid]["https://i.imgur.com/lns4fhz.png"] - if playerSquidCount ~= nil and playerSquidCount > maxSquid then - squidKing = playerName - maxSquid = playerSquidCount - end - end - printToAll(squidKing .. " is an auto-fail magnet.", {r=255,g=0,b=0}) -end +function isCardOrDeck(x) return x.tag == 'Card' or x.tag == 'Deck' end -function printNonZeroTokenPairs(theTable) - for key,value in pairs(theTable) do - if value ~= 0 then - printToAll(IMAGE_TOKEN_MAP[key] .. '=' .. tostring(value)) - end - end -end - --- Remove comments to enable autorotate cards on hands. --- function onObjectEnterScriptingZone(zone, object) --- Autorotate cards with right side up when entering hand. --- if zone.getGUID() == "c506bf" or -- white --- zone.getGUID() == "cbc751" then -- orange --- object.setRotationSmooth({0,270,0}) --- elseif zone.getGUID() == "67ce9a" then -- green --- object.setRotationSmooth({0,0,0}) --- elseif zone.getGUID() == "57c22c" then -- red --- object.setRotationSmooth({0,180,0}) ---end ---end - -function findInRadiusBy(pos, radius, filter, debug) - local radius = (radius or 1) - local objList = Physics.cast({ - origin = pos, - direction = {0,1,0}, - type = 2, - size = {radius, radius, radius}, - max_distance = 0, - debug = (debug or false) - }) - - local filteredList = {} - for _, obj in ipairs(objList) do - if filter == nil then - table.insert(filteredList, obj.hit_object) - elseif filter and filter(obj.hit_object) then - table.insert(filteredList, obj.hit_object) - end - end - return filteredList -end - -function dealCardsInRows(paramlist) - local currPosition={}; - local numRow=1; - local numCard=0; - local invMultiplier=1; - local allCardsDealed=0; - if paramlist.inverse then - invMultiplier=-1; - end - if paramlist.maxCardsDealed==nil then - - allCardsDealed=0; - paramlist.maxCardsDealed=paramlist.cardDeck.getQuantity() - - elseif paramlist.maxCardsDealed>=paramlist.cardDeck.getQuantity() or paramlist.maxCardsDealed<=0 then - - allCardsDealed=0; - paramlist.maxCardsDealed=paramlist.cardDeck.getQuantity() - - else - - allCardsDealed=1; - - end - - if paramlist.mode=="x" then - currPosition={paramlist.iniPosition[1]+(2*g_cardWith*invMultiplier*allCardsDealed),paramlist.iniPosition[2],paramlist.iniPosition[3]}; - - else - currPosition={paramlist.iniPosition[1],paramlist.iniPosition[2],paramlist.iniPosition[3]+(2*g_cardWith*invMultiplier*allCardsDealed)}; - - end - - for i = 1,paramlist.maxCardsDealed,1 do - - paramlist.cardDeck.takeObject - ({ - position= currPosition, - smooth= true - }); - - numCard=numCard+1; - if numCard>=paramlist.maxCardRow then - - if paramlist.mode=="x" then - currPosition={paramlist.iniPosition[1]+(2*g_cardWith*invMultiplier*allCardsDealed),paramlist.iniPosition[2],paramlist.iniPosition[3]}; - currPosition[3]=currPosition[3]-(numRow*g_cardHeigth*invMultiplier); - else - currPosition={paramlist.iniPosition[1],paramlist.iniPosition[2],paramlist.iniPosition[3]+(2*g_cardWith*invMultiplier*allCardsDealed)}; - currPosition[1]=currPosition[1]+(numRow*g_cardHeigth*invMultiplier); - end - numCard=0; - numRow=numRow+1; - - else - if paramlist.mode=="x" then - currPosition[1]=currPosition[1]+(g_cardWith*invMultiplier); - else - currPosition[3]=currPosition[3]+(g_cardWith*invMultiplier); - end - end - end -end - -function isDeck(x) - return x.tag == 'Deck' -end - -function isCardOrDeck(x) - return x.tag == 'Card' or isDeck(x) -end - -function drawEncountercard(params) --[[ Parameter Table Position, Table Rotation]] +function drawEncountercard(params) local position = params[1] local rotation = params[2] local alwaysFaceUp = params[3] - local faceUpRotation local card local items = findInRadiusBy(ENCOUNTER_DECK_POS, 4, isCardOrDeck) if #items > 0 then - for i, v in ipairs(items) do + for _, v in ipairs(items) do if v.tag == 'Deck' then card = v.takeObject({index = 0}) break @@ -356,10 +203,10 @@ function drawEncountercard(params) --[[ Parameter Table Position, Table Rotation -- we didn't find the deck so just pull the first thing we did find if card == nil then card = items[1] end actualEncounterCardDraw(card, params) - return + else + -- nothing here, time to reshuffle + reshuffleEncounterDeck(params) end --- nothing here, time to reshuffle - reshuffleEncounterDeck(params) end function actualEncounterCardDraw(card, params) @@ -368,102 +215,115 @@ function actualEncounterCardDraw(card, params) local alwaysFaceUp = params[3] local faceUpRotation = 0 if not alwaysFaceUp then - if getObjectFromGUID(tokenDataId).call('checkHiddenCard', card.getName()) then + if getObjectFromGUID(DATA_HELPER_GUID).call('checkHiddenCard', card.getName()) then faceUpRotation = 180 end end card.setPositionSmooth(position, false, false) - card.setRotationSmooth({0,rotation.y,faceUpRotation}, false, false) + card.setRotationSmooth({0, rotation.y, faceUpRotation}, false, false) end -IS_RESHUFFLING = false function reshuffleEncounterDeck(params) -- finishes moving the deck back and draws a card local function move(deck) - deck.setPositionSmooth(ENCOUNTER_DECK_SPAWN_POS, true, false) + deck.setPositionSmooth({ENCOUNTER_DECK_POS[1], ENCOUNTER_DECK_POS[2] + 2, ENCOUNTER_DECK_POS[3]}, false, true) actualEncounterCardDraw(deck.takeObject({index=0}), params) - Wait.time(function() - IS_RESHUFFLING = false - end, 1) + Wait.time(function() IS_RESHUFFLING = false end, 1) end -- bail out if we're mid reshuffle - if IS_RESHUFFLING then - return - end + if IS_RESHUFFLING then return end local discarded = findInRadiusBy(ENCOUNTER_DECK_DISCARD_POSITION, 4, isDeck) if #discarded > 0 then IS_RESHUFFLING = true local deck = discarded[1] - if not deck.is_face_down then - deck.flip() - end + if not deck.is_face_down then deck.flip() end deck.shuffle() Wait.time(|| move(deck), 0.3) else - printToAll("couldn't find encounter discard pile to reshuffle", {1, 0, 0}) + printToAll("Couldn't find encounter discard pile to reshuffle.", {1, 0, 0}) end end -CHAOS_TOKENS = {} -CHAOS_TOKENS_LAST_MAT = nil -function putBackChaosTokens() - local chaosbagposition = chaosbag.getPosition() - for k, token in pairs(CHAOS_TOKENS) do - if token ~= nil then - chaosbag.putObject(token) - token.setPosition({chaosbagposition[1],chaosbagposition[2]+0.5,chaosbagposition[3]}) - end +function findInRadiusBy(pos, radius, filter) + local objList = Physics.cast({ + origin = pos, + direction = {0, 1, 0}, + type = 2, + size = {radius, radius, radius}, + max_distance = 0 + }) + + local filteredList = {} + for _, obj in ipairs(objList) do + if filter and filter(obj.hit_object) then + table.insert(filteredList, obj.hit_object) end - CHAOS_TOKENS = {} end + return filteredList +end + +--------------------------------------------------------- +-- chaos token drawing +--------------------------------------------------------- + +-- checks scripting zone for chaos bag +function findChaosBag() + for _, item in ipairs(getObjectFromGUID("83ef06").getObjects()) do + if item.getDescription() == "Chaos Bag" then chaosbag = item end + end +end + +function returnChaosTokens() + for _, token in pairs(chaosTokens) do + if token ~= nil then chaosbag.putObject(token) end + end + chaosTokens = {} +end function drawChaostoken(params) local mat = params[1] local tokenOffset = params[2] local isRightClick = params[3] - local isSameMat = (CHAOS_TOKENS_LAST_MAT == nil or CHAOS_TOKENS_LAST_MAT == mat) - if not isSameMat then - putBackChaosTokens() + findChaosBag() + + -- return token(s) on other playmat first + if chaosTokensLastMat ~= nil and chaosTokensLastMat ~= mat and #chaosTokens ~= 0 then + returnChaosTokens() + chaosTokensLastMat = nil + return end - CHAOS_TOKENS_LAST_MAT = mat + + chaosTokensLastMat = mat -- if we have left clicked and have no tokens OR if we have right clicked - if isRightClick or #CHAOS_TOKENS == 0 then - local items = getObjectFromGUID("83ef06").getObjects() - for i,v in ipairs(items) do - if items[i].getDescription() == "Chaos Bag" then - chaosbag = getObjectFromGUID(items[i].getGUID()) - break - end - end - -- bail out if we have no tokens - if #chaosbag.getObjects() == 0 then - return - end + if isRightClick or #chaosTokens == 0 then + if #chaosbag.getObjects() == 0 then return end chaosbag.shuffle() + -- add the token to the list, compute new position based on list length - tokenOffset[1] = tokenOffset[1] + (0.17 * #CHAOS_TOKENS) - local toPosition = mat.positionToWorld(tokenOffset) + tokenOffset[1] = tokenOffset[1] + (0.17 * #chaosTokens) local token = chaosbag.takeObject({ index = 0, - position = toPosition, + position = mat.positionToWorld(tokenOffset), rotation = mat.getRotation(), - callback_function = function(obj) take_callback(obj, mat) end + callback_function = function(obj) trackChaosToken(obj, mat.getGUID()) end }) - CHAOS_TOKENS[#CHAOS_TOKENS + 1] = token + chaosTokens[#chaosTokens + 1] = token return else - putBackChaosTokens() + returnChaosTokens() end end +--------------------------------------------------------- +-- token spawning +--------------------------------------------------------- + function spawnToken(params) - -- Position to spawn, - -- rotation vector to apply - -- translation vector to apply - -- token type - local position = params[1] + local position = params[1] local tokenType = params[2] + local rotation = params[3] or {0, 270, 0} local tokenData = TOKEN_DATA[tokenType] + if tokenData == nil then error("no token data found for '" .. tokenType .. "'") end @@ -471,343 +331,293 @@ function spawnToken(params) local token = spawnObject({ type = 'Custom_Token', position = position, - rotation = {x=0, y=270, z=0} + rotation = rotation }) + token.setCustomObject({ image = tokenData['image'], thickness = 0.3, - merge_distance = 5.0, - stackable = true, + merge_distance = 5, + stackable = true }) - token.use_snap_points=false + + token.use_snap_points = false token.scale(tokenData['scale']) return token end -function round(params) -- Parameter (int number, int numberDecimalPlaces) - return tonumber(string.format("%." .. (params[2] or 0) .. "f", params[1])) +--------------------------------------------------------- +-- chaos token stat tracker +--------------------------------------------------------- + +function trackChaosToken(token, matGUID) + local image = token.getCustomObject().image + overallStats[image] = (overallStats[image] or 0) + 1 + personalStats[matGUID][image] = (personalStats[matGUID][image] or 0) + 1 end -function roundposition(params) -- Parameter (Table position) - return {round({params[1], 2}),round({params[2], 2}),round({params[3], 2})} -end - -function isEqual(params) --Parameter (Table table1, Table table2) returns true if the tables are equal - if params[1][1] == params[2][1] and params[1][2] == params[2][2] and params[1][3] == params[2][3] then - return true +function handleStatTrackerClick(_, _, isRightClick) + if isRightClick then + resetChaosTokenStats() else - return false + printChaosTokenStats() end end -function isFaceup(params) --Object object - if params.getRotation()[3] > -5 and params.getRotation()[3] < 5 then - return true - else - return false +function resetChaosTokenStats() + for key, _ in pairs(overallStats) do + overallStats[key] = 0 + end + for playerKey, _ in pairs(personalStats) do + for key, value in pairs(overallStats) do + personalStats[playerKey][key] = value + end end end ---Difficulty selector script +function printChaosTokenStats() + local squidKing = "Nobody" + printToAll("") + printToAll("Overall Stats") + printToAll("------------------------------") + printNonZeroTokenPairs(overallStats) + printToAll("") + printToAll("Individual Stats") + printToAll("------------------------------") + for matGUID, _ in pairs(personalStats) do + local playerColour = MAT_GUID_TO_COLOUR[matGUID] + local playerSquidCount = personalStats[matGUID]["https://i.imgur.com/lns4fhz.png"] or 0 + local playerName = playerColour + if Player[playerColour].seated then + playerName = Player[playerColour].steam_name + end + printToAll(playerName .. " Stats", playerColour) + printNonZeroTokenPairs(personalStats[matGUID]) + + if playerSquidCount > maxSquid then + squidKing = playerName + maxSquid = playerSquidCount + end + end + printToAll(squidKing .. " is an auto-fail magnet.", {255, 0, 0}) +end + +function printNonZeroTokenPairs(theTable) + for key, value in pairs(theTable) do + if value ~= 0 then + printToAll(IMAGE_TOKEN_MAP[key] .. ': ' .. tostring(value)) + end + end +end + +--------------------------------------------------------- +-- Difficulty selector script +--------------------------------------------------------- + +-- called for button creation on the difficulty selectors +---@param object object Usually "self" +---@param key string Name of the scenario function createSetupButtons(args) - local data = getDataValue('modeData', args.key) - if data ~= nil then - local z = -0.15 - if data.easy ~= nil then - args.object.createButton({ - label = 'Easy', - click_function = 'easyClick', - function_owner = args.object, - position = {0, 0.1, z}, - rotation = {0, 0, 0}, - scale = {0.47, 1, 0.47}, - height = 200, - width = 1150, - font_size = 100, - color = {0.87, 0.8, 0.70}, - font_color = {0, 0, 0} - }) - z = z + 0.20 - end - if data.normal ~= nil then - args.object.createButton({ - label = 'Standard', - click_function = 'normalClick', - function_owner = args.object, - position = {0, 0.1, z}, - rotation = {0, 0, 0}, - scale = {0.47, 1, 0.47}, - height = 200, - width = 1150, - font_size = 100, - color = {0.87, 0.8, 0.70}, - font_color = {0, 0, 0} - }) - z = z + 0.20 - end - if data.hard ~= nil then - args.object.createButton({ - label = 'Hard', - click_function = 'hardClick', - function_owner = args.object, - position = {0, 0.1, z}, - rotation = {0, 0, 0}, - scale = {0.47, 1, 0.47}, - height = 200, - width = 1150, - font_size = 100, - color = {0.87, 0.8, 0.70}, - font_color = {0, 0, 0} - }) - z = z + 0.20 - end - if data.expert ~= nil then - args.object.createButton({ - label = 'Expert', - click_function = 'expertClick', - function_owner = args.object, - position = {0, 0.1, z}, - rotation = {0, 0, 0}, - scale = {0.47, 1, 0.47}, - height = 200, - width = 1150, - font_size = 100, - color = {0.87, 0.8, 0.70}, - font_color = {0, 0, 0} - }) - z = z + 0.20 - end - z = z + 0.10 - if data.standalone ~= nil then - args.object.createButton({ - label = 'Standalone', - click_function = 'standaloneClick', - function_owner = args.object, - position = {0, 0.1, z}, - rotation = {0, 0, 0}, - scale = {0.47, 1, 0.47}, - height = 200, - width = 1150, - font_size = 100, - color = {0.87, 0.8, 0.70}, - font_color = {0, 0, 0} - }) - end + local data = getDataValue('modeData', args.key) + if data ~= nil then + local buttonParameters = {} + buttonParameters.function_owner = args.object + buttonParameters.position = {0, 0.1, -0.15} + buttonParameters.scale = {0.47, 1, 0.47} + buttonParameters.height = 200 + buttonParameters.width = 1150 + buttonParameters.color = {0.87, 0.8, 0.7} + + if data.easy ~= nil then + buttonParameters.label = "Easy" + buttonParameters.click_function = "easyClick" + args.object.createButton(buttonParameters) + buttonParameters.position[3] = buttonParameters.position[3] + 0.20 end + + if data.normal ~= nil then + buttonParameters.label = "Standard" + buttonParameters.click_function = "normalClick" + args.object.createButton(buttonParameters) + buttonParameters.position[3] = buttonParameters.position[3] + 0.20 + end + + if data.hard ~= nil then + buttonParameters.label = "Hard" + buttonParameters.click_function = "hardClick" + args.object.createButton(buttonParameters) + buttonParameters.position[3] = buttonParameters.position[3] + 0.20 + end + + if data.expert ~= nil then + buttonParameters.label = "Expert" + buttonParameters.click_function = "expertClick" + args.object.createButton(buttonParameters) + buttonParameters.position[3] = buttonParameters.position[3] + 0.20 + end + + if data.standalone ~= nil then + buttonParameters.label = "Standalone" + buttonParameters.click_function = "standaloneClick" + args.object.createButton(buttonParameters) + end + end end +-- called for adding chaos tokens +---@param object object Usually "self" +---@param key string Name of the scenario +---@param mode string diffculty (e.g. "hard" or "expert") function fillContainer(args) - local container = getObjectCache(containerId) + findChaosBag() - if container ~= nil then - local data = getDataValue('modeData', args.key) - if data == nil then return end + if chaosbag ~= nil then + local data = getDataValue('modeData', args.key) + if data == nil then return end - local value = data[args.mode] - if value == nil or value.token == nil then return end + local value = data[args.mode] + if value == nil or value.token == nil then return end - local pos = container.getPosition() - if args.object ~= nil then - pos = args.object.getPosition() - end - - cleanContainer(container) - - for _, token in ipairs(value.token) do - local obj = spawnToken_2(token, pos) - if obj ~= nil then - container.putObject(obj) - end - end - - if value.append ~= nil then - for _, token in ipairs(value.append) do - local obj = spawnToken_2(token, pos) - if obj ~= nil then - container.putObject(obj) - end - end - end - - if value.random then - local n = #value.random - if n > 0 then - for _, token in ipairs(value.random[getRandomCount(n)]) do - local obj = spawnToken_2(token, pos) - if obj ~= nil then - container.putObject(obj) - end - end - end - end - - if value.message then - broadcastToAll(value.message) - end - if value.warning then - broadcastToAll(value.warning, { 1, 0.5, 0.5 }) - end - end -end - -function spawnToken_2(id, pos) - local url = getImageUrl(id) - if url ~= '' then - local obj = spawnObject({ - type = 'Custom_Tile', - position = {pos.x, pos.y + 3, pos.z}, - rotation = {x = 0, y = 260, z = 0} - }) - obj.setCustomObject({ - type = 2, - image = url, - thickness = 0.10, - }) - obj.scale {0.81, 1, 0.81} - obj.setName(getTokenName({ url=url })) - return obj - end -end - -function getTokenName(params) - local name = IMAGE_TOKEN_MAP[params.url] - if name == nil then name = "" end - return name -end - -function getImageUrl(id) - if id == 'p1' then return 'https://i.imgur.com/uIx8jbY.png' end - if id == '0' then return 'https://i.imgur.com/btEtVfd.png' end - if id == 'm1' then return 'https://i.imgur.com/w3XbrCC.png' end - if id == 'm2' then return 'https://i.imgur.com/bfTg2hb.png' end - if id == 'm3' then return 'https://i.imgur.com/yfs8gHq.png' end - if id == 'm4' then return 'https://i.imgur.com/qrgGQRD.png' end - if id == 'm5' then return 'https://i.imgur.com/3Ym1IeG.png' end - if id == 'm6' then return 'https://i.imgur.com/c9qdSzS.png' end - if id == 'm7' then return 'https://i.imgur.com/4WRD42n.png' end - if id == 'm8' then return 'https://i.imgur.com/9t3rPTQ.png' end - if id == 'skull' then return 'https://i.imgur.com/stbBxtx.png' end - if id == 'cultist' then return 'https://i.imgur.com/VzhJJaH.png' end - if id == 'tablet' then return 'https://i.imgur.com/1plY463.png' end - if id == 'elder' then return 'https://i.imgur.com/ttnspKt.png' end - if id == 'red' then return 'https://i.imgur.com/lns4fhz.png' end - if id == 'blue' then return 'https://i.imgur.com/nEmqjmj.png' end - if id == 'frost' then return 'http://cloud-3.steamusercontent.com/ugc/1858293462583104677/195F93C063A8881B805CE2FD4767A9718B27B6AE/' end - return '' -end - -function cleanContainer(container) - for _, item in ipairs(container.getObjects()) do - destroyObject(container.takeObject({})) - end -end - -function getObjectsInZone(zoneId) - local zoneObject = getObjectCache(zoneId) - - if zoneObject == nil then - return + local pos = chaosbag.getPosition() + if args.object ~= nil then + pos = args.object.getPosition() end - local objectsInZone = zoneObject.getObjects() - local objectsFound = {} - - for i = 1, #objectsInZone do - local object = objectsInZone[i] - if object.tag == 'Bag' then - table.insert(objectsFound, object.guid) - end + -- empty the chaos bag + for _, item in ipairs(chaosbag.getObjects()) do + destroyObject(chaosbag.takeObject({})) end - if #objectsFound > 0 then - return objectsFound + for _, token in ipairs(value.token) do + local obj = spawnChaosToken(token, pos) + if obj ~= nil then + chaosbag.putObject(obj) + end end -end -function getObjectCache(id) - if CACHE.object[id] == nil then - CACHE.object[id] = getObjectFromGUID(id) - end - return CACHE.object[id] -end - -function getDataTable(storage) - if CACHE.data[storage] == nil then - local obj = getObjectCache(tokenDataId) + if value.append ~= nil then + for _, token in ipairs(value.append) do + local obj = spawnChaosToken(token, pos) if obj ~= nil then - CACHE.data[storage] = obj.getTable(storage) + chaosbag.putObject(obj) end + end end - return CACHE.data[storage] + + -- randomly choose tokens for specific Carcosa scenarios in standalone + if value.random then + local n = #value.random + if n > 0 then + for _, token in ipairs(value.random[math.random(1, n)]) do + local obj = spawnChaosToken(token, pos) + if obj ~= nil then + chaosbag.putObject(obj) + end + end + end + end + + if value.message then + broadcastToAll(value.message) + end + + if value.warning then + broadcastToAll(value.warning, { 1, 0.5, 0.5 }) + end + end end function getDataValue(storage, key) - local data = getDataTable(storage) - if data ~= nil then - local value = data[key] - if value ~= nil then - local res = {} - for m, v in pairs(value) do - res[m] = v - if res[m].parent ~= nil then - local parentData = getDataValue(storage, res[m].parent) - if parentData ~= nil and parentData[m] ~= nil and parentData[m].token ~= nil then - res[m].token = parentData[m].token - end - res[m].parent = nil - end - end - return res + local data = getObjectFromGUID(DATA_HELPER_GUID).getTable(storage) + if data ~= nil then + local value = data[key] + if value ~= nil then + local res = {} + for m, v in pairs(value) do + res[m] = v + if res[m].parent ~= nil then + local parentData = getDataValue(storage, res[m].parent) + if parentData ~= nil and parentData[m] ~= nil and parentData[m].token ~= nil then + res[m].token = parentData[m].token + end + res[m].parent = nil end + end + return res end + end end -function getRandomCount(to) - updateRandomSeed() - return math.random(1, to) +function spawnChaosToken(id, pos) + local url = getChaosTokenImageURL(id) + if url ~= '' then + local obj = spawnObject({ + type = 'Custom_Tile', + position = {pos.x, pos.y + 3, pos.z}, + rotation = {0, 260, 0} + }) + obj.setCustomObject({ + type = 2, + image = url, + thickness = 0.1 + }) + obj.scale {0.81, 1, 0.81} + obj.setName(getTokenName({ url=url })) + return obj + end end -function updateRandomSeed() - local chance = math.random(1,10) - if chance == 1 then - math.randomseed(os.time()) - end +-- chaos bag needs this for renaming chaos tokens +function getTokenName(params) + local name = IMAGE_TOKEN_MAP[params.url] + if name == nil then name = "" end + return name end +-- returns the image url for a chaos token (identified by the "id") +function getChaosTokenImageURL(id) + if id == 'p1' then return 'https://i.imgur.com/uIx8jbY.png' end + if id == '0' then return 'https://i.imgur.com/btEtVfd.png' end + if id == 'm1' then return 'https://i.imgur.com/w3XbrCC.png' end + if id == 'm2' then return 'https://i.imgur.com/bfTg2hb.png' end + if id == 'm3' then return 'https://i.imgur.com/yfs8gHq.png' end + if id == 'm4' then return 'https://i.imgur.com/qrgGQRD.png' end + if id == 'm5' then return 'https://i.imgur.com/3Ym1IeG.png' end + if id == 'm6' then return 'https://i.imgur.com/c9qdSzS.png' end + if id == 'm7' then return 'https://i.imgur.com/4WRD42n.png' end + if id == 'm8' then return 'https://i.imgur.com/9t3rPTQ.png' end + if id == 'skull' then return 'https://i.imgur.com/stbBxtx.png' end + if id == 'cultist' then return 'https://i.imgur.com/VzhJJaH.png' end + if id == 'tablet' then return 'https://i.imgur.com/1plY463.png' end + if id == 'elder' then return 'https://i.imgur.com/ttnspKt.png' end + if id == 'red' then return 'https://i.imgur.com/lns4fhz.png' end + if id == 'blue' then return 'https://i.imgur.com/nEmqjmj.png' end + if id == 'frost' then return 'http://cloud-3.steamusercontent.com/ugc/1858293462583104677/195F93C063A8881B805CE2FD4767A9718B27B6AE/' end + return '' +end --- Content Importing - - ---- Loadable Items test +--------------------------------------------------------- +-- Content Importing and XML functions +--------------------------------------------------------- local source_repo = 'https://raw.githubusercontent.com/seth-sced/loadable-objects/main' -local list_url = 'library.json' local library = nil - local request_obj ---- - -function get_source_repo() - return source_repo -end - ---- - function onClick_toggleUi(player, window) toggle_ui(window) end function onClick_refreshList() - local request = WebRequest.get(get_source_repo() .. '/' .. list_url, completed_list_update) + local request = WebRequest.get(source_repo .. '/library.json', completed_list_update) request_obj = request startLuaCoroutine(Global, 'my_coroutine') end function onClick_select(player, params) params = JSON.decode(urldecode(params)) - local url = get_source_repo() .. '/' .. params.url + local url = source_repo .. '/' .. params.url local request = WebRequest.get(url, function (request) complete_obj_download(request, params) end ) request_obj = request startLuaCoroutine(Global, 'my_coroutine') @@ -818,11 +628,6 @@ function onClick_load() UI.hide('load_button') end -function onClick_cancel() -end - ---- - function toggle_ui(title) UI.hide('load_ui') if UI.getValue('title') == title or title == 'Hidden' then @@ -842,7 +647,6 @@ function my_coroutine() return 1 end - function update_list(objects) local ui = UI.getXmlTable() local update_height = find_tag_with_id(ui, 'ui_update_height') @@ -850,17 +654,13 @@ function update_list(objects) update_children.children = {} - for i,v in ipairs(objects) do + for _, v in ipairs(objects) do local s = JSON.encode(v); - --print(s) table.insert(update_children.children, - { - tag = 'Text', + { tag = 'Text', value = v.name, - attributes = { onClick = 'onClick_select('.. urlencode(JSON.encode(v)) ..')', - alignment = 'MiddleLeft' } - } - ) + attributes = { onClick = 'onClick_select(' .. urlencode(JSON.encode(v)) .. ')', alignment = 'MiddleLeft' } + }) end update_height.attributes.height = #(update_children.children) * 24 @@ -868,9 +668,7 @@ function update_list(objects) end function update_window_content(new_title) - if not library then - return - end + if not library then return end if new_title == 'Campaigns' then update_list(library.campaigns) @@ -892,23 +690,25 @@ function complete_obj_download(request, params) if request.is_error or request.response_code ~= 200 then print('error: ' .. request.error) else - if pcall(function () - local replaced_object - pcall(function () - if params.replace then - replaced_object = getObjectFromGUID(params.replace) - end - end) - local json = request.text - if replaced_object then - local pos = replaced_object.getPosition() - local rot = replaced_object.getRotation() - destroyObject(replaced_object) - Wait.frames(function () spawnObjectJSON({json = json, position = pos, rotation = rot}) end, 1) - else - spawnObjectJSON({json = json}) - end - end) then + if pcall(function() + local replaced_object + pcall(function() + if params.replace then + replaced_object = getObjectFromGUID(params.replace) + end + end) + local json = request.text + if replaced_object then + local pos = replaced_object.getPosition() + local rot = replaced_object.getRotation() + destroyObject(replaced_object) + Wait.frames(function() + spawnObjectJSON({json = json, position = pos, rotation = rot}) + end, 1) + else + spawnObjectJSON({json = json}) + end + end) then print('Object loaded.') else print('Error loading object.') @@ -917,12 +717,11 @@ function complete_obj_download(request, params) request_obj = nil UI.setAttribute('download_progress', 'percentage', 100) - end -- the download button on the placeholder objects calls this to directly initiate a download +-- params is a table with url and guid of replacement object, which happens to match what onClick_select wants function placeholder_download(params) - -- params is a table with url and guid of replacement object, which happens to match what onClick_select wants onClick_select(nil, JSON.encode(params)) end @@ -944,13 +743,9 @@ function completed_list_update(request) UI.setAttribute('download_progress', 'percentage', 100) end ---- - function find_tag_with_id(ui, id) - for i,obj in ipairs(ui) do - if obj.attributes and obj.attributes.id and obj.attributes.id == id then - return obj - end + for _, obj in ipairs(ui) do + if obj.attributes and obj.attributes.id and obj.attributes.id == id then return obj end if obj.children then local result = find_tag_with_id(obj.children, id) if result then return result end @@ -960,13 +755,15 @@ function find_tag_with_id(ui, id) end function urlencode(str) - str = string.gsub(str, "([^A-Za-z0-9-_.~])", + local str = string.gsub(str, "([^A-Za-z0-9-_.~])", function (c) return string.format("%%%02X", string.byte(c)) end) return str end function urldecode(str) - str = string.gsub(str, "%%(%x%x)", + local str = string.gsub(str, "%%(%x%x)", function (h) return string.char(tonumber(h, 16)) end) return str -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked.yaml b/unpacked.yaml index 9fed46a78..1d50cec91 100644 --- a/unpacked.yaml +++ b/unpacked.yaml @@ -89,6 +89,26 @@ ComponentTags: normalized: location - displayed: to_be_deleted normalized: to_be_deleted + - displayed: Minicard + normalized: minicard + - displayed: DoomCounter_ignore + normalized: doomcounter_ignore + - displayed: ClassBag_memory_object + normalized: classbag_memory_object + - displayed: SeeBag_memory_object + normalized: seebag_memory_object + - displayed: SurBag_memory_object + normalized: surbag_memory_object + - displayed: NeuBag_memory_object + normalized: neubag_memory_object + - displayed: MysBag_memory_object + normalized: mysbag_memory_object + - displayed: RogBag_memory_object + normalized: rogbag_memory_object + - displayed: aespa_memory_object + normalized: aespa_memory_object + - displayed: Investigator + normalized: investigator CustomUIAssets: - Name: refresh Type: 0 @@ -117,7 +137,7 @@ CustomUIAssets: - Name: OverlaySmall Type: 0 URL: http://cloud-3.steamusercontent.com/ugc/1745699502804112719/CFFC89BF9FB8439204EE19CF94180EC99450CD38/ -Date: 10/15/2022 11:01:52 PM +Date: 12/10/2022 5:11:47 PM DecalPallet: - ImageURL: http://cloud-3.steamusercontent.com/ugc/1474319121424323663/BC5570ECF747F1B30224461B576E8B0FE7FA5F33/ Name: Achivement Checkmark @@ -277,7 +297,7 @@ Decals: scaleX: 11.0497236 scaleY: 5.0 scaleZ: 5.0 -EpochTime: 1665892912 +EpochTime: 1670713907 GameComplexity: '' GameMode: Arkham Horror LCG - Super Complete Edition GameType: '' @@ -357,14 +377,6 @@ MusicPlayer: Item2: Nyarlathotep 2 - Cryo Chamber - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848485973/A65ABDA232410FB64FA0A4BD26431ACDF3E2D46A/ Item2: Nyarlathotep 3 - Cryo Chamber - - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848495368/3236262EB67C1DFE3DC26574452EDE61B825B201/ - Item2: Shub-Niggurath 1 - Cryo Chamber - - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848498833/955B04EC164A2A2DF6AA683A44451A24E6BC3453/ - Item2: Shub-Niggurath 2 - Cryo Chamber - - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848501343/E56987BC93B5E591A7764C29400DC29CCBFDD3DD/ - Item2: Yog-Sothoth 1 - Cryo Chamber - - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848504941/FA9BA511380775C163A0C0F08FA3D1CA033E68E2/ - Item2: Yog-Sothoth 2 - Cryo Chamber - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848530903/E08BB3474D49477CAA9B78D3A8AA54FDC757B351/ Item2: 'The Gargantuan Tower - Atrium Carceri: Metropolis' - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848530379/F1C98200F021A2471E5575DE934C62C927A8FFA4/ @@ -504,7 +516,7 @@ ObjectStates: - !include 'unpacked/Custom_Token Master Clue Counter 4a3aa4.yaml' - !include 'unpacked/Custom_Model_Bag Legacy Assets 7165a9.yaml' - !include 'unpacked/Custom_Model_Bag Weakness decks 750fdd.yaml' -- !include 'unpacked/Custom_Model_Bag Bonded c5261f.yaml' +- !include 'unpacked/Custom_Model Bonded c5261f.yaml' - !include 'unpacked/BlockRectangle b7af15.yaml' - !include 'unpacked/Custom_Token Playarea 721ba2.yaml' - !include 'unpacked/3DText 184810.yaml' @@ -530,7 +542,6 @@ ObjectStates: - !include 'unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38.yaml' - !include 'unpacked/Checker_black UI Builder ddd2eb.yaml' - !include 'unpacked/Checker_black Command Manager a0b1de.yaml' -- !include 'unpacked/Bag Metadata Helper d932ff.yaml' - !include 'unpacked/3DText 8553dc.yaml' - !include 'unpacked/Custom_Model CoreNight of the Zealot 64a613.yaml' - !include 'unpacked/Custom_Model The Dunwich Legacy 2898f6.yaml' @@ -567,7 +578,7 @@ ObjectStates: - !include 'unpacked/Custom_Model The Dream-Eaters a34f34.yaml' - !include 'unpacked/Custom_Model_Bag Chaos Bag fea079.yaml' - !include 'unpacked/Custom_Tile Data Helper 708279.yaml' -- !include 'unpacked/Custom_Token BlessCurse Token Manager 5933fb.yaml' +- !include 'unpacked/Custom_Token BlessCurse Manager 5933fb.yaml' - !include 'unpacked/Notecard d8d357.yaml' - !include 'unpacked/Checker_black Arkham Deck Cutter 445115.yaml' - !include 'unpacked/ScriptingTrigger a2f932.yaml' @@ -575,27 +586,11 @@ ObjectStates: - !include 'unpacked/Custom_Model Edge of the Earth 895eaa.yaml' - !include 'unpacked/Custom_Model The Dream-Eaters a16a1a.yaml' - !include 'unpacked/Custom_Model Return to The Circle Undone 757324.yaml' -- !include 'unpacked/Custom_Token Intellect 0016fc.yaml' - !include 'unpacked/Custom_Tile Playermat 4 Red 0840d5.yaml' -- !include 'unpacked/Custom_Token Agility 181fa2.yaml' -- !include 'unpacked/Custom_Token Combat 19026b.yaml' -- !include 'unpacked/Custom_Token Agility 2c3f8d.yaml' - !include 'unpacked/Custom_Tile Playermat 3 Green 383d8b.yaml' -- !include 'unpacked/Custom_Token Intellect 4ca990.yaml' - !include 'unpacked/Custom_Token Misc. Doom in play 652ff3.yaml' -- !include 'unpacked/Custom_Token Willpower 85a8ed.yaml' - !include 'unpacked/Custom_Tile Playermat 1 White 8b081b.yaml' -- !include 'unpacked/Custom_Token Willpower 8b6743.yaml' -- !include 'unpacked/Custom_Token Combat 9136c6.yaml' -- !include 'unpacked/Custom_Token Combat 93a48b.yaml' -- !include 'unpacked/Custom_Token Agility a0b6df.yaml' -- !include 'unpacked/Custom_Token Willpower afc290.yaml' -- !include 'unpacked/Custom_Token Intellect b4ef12.yaml' -- !include 'unpacked/Custom_Token Combat b661a6.yaml' - !include 'unpacked/Custom_Tile Playermat 2 Orange bd0ff4.yaml' -- !include 'unpacked/Custom_Token Intellect c1fe65.yaml' -- !include 'unpacked/Custom_Token Agility d4df33.yaml' -- !include 'unpacked/Custom_Token Willpower fa6df4.yaml' - !include 'unpacked/Custom_Model Custom Data Helper 2547b3.yaml' - !include 'unpacked/Custom_Tile LolaNeutral 637e17.yaml' - !include 'unpacked/Custom_Tile LolaNeutral e003fe.yaml' @@ -616,18 +611,22 @@ ObjectStates: - !include 'unpacked/Custom_Model The Scarlet Keys a4fd1b.yaml' - !include 'unpacked/3DText 89e0dd.yaml' - !include 'unpacked/Custom_Token Lead Investigator acaa93.yaml' -- !include 'unpacked/Custom_Model_Bag Upgrade Sheets c3c1a7.yaml' +- !include 'unpacked/Custom_Model Upgrade Sheets c3c1a7.yaml' - !include 'unpacked/Custom_Tile ArkhamDB Deck Importer a28140.yaml' - !include 'unpacked/Checker_white Configuration 03804b.yaml' - !include 'unpacked/Custom_Token Drawing Tool 280086.yaml' - !include 'unpacked/Custom_Token Playmat Image Swapper b7b45b.yaml' -- !include 'unpacked/Custom_PDF dfbb48.yaml' -- !include 'unpacked/Custom_Model_Bag Jumanji b46db2.yaml' -- !include 'unpacked/Custom_Model_Bag Battle Goes On dd90c5.yaml' -- !include 'unpacked/Custom_Tile Phase Tracker d0c8fa.yaml' - !include 'unpacked/Bag All Player Cards 15bb07.yaml' +- !include 'unpacked/Custom_Token Investigator Skill Tracker af7ed7.yaml' +- !include 'unpacked/Custom_Token Investigator Skill Tracker e598c2.yaml' +- !include 'unpacked/Custom_Token Investigator Skill Tracker b4a5f7.yaml' +- !include 'unpacked/Custom_Token Investigator Skill Tracker e74881.yaml' +- !include 'unpacked/Custom_Model_Bag The Strange Case of Dr. Jekyll and Mr. Hyde + 695a4d.yaml' +- !include 'unpacked/Custom_Model The Scarlet Keys 300fcc.yaml' - !include 'unpacked/Custom_Token Search-A-Card 24051a.yaml' -- !include 'unpacked/Notecard 2.3.1 Notes - 10152022 268764.yaml' +- !include 'unpacked/Custom_Tile Phase Tracker d0c8fa.yaml' +- !include 'unpacked/Notecard Arkham SCED 2.4.0 Page 1 - 12102022 1dd55c.yaml' PlayArea: 1.0 PlayerCounts: - 0 @@ -635,7 +634,7 @@ PlayerCounts: PlayingTime: - 0 - 0 -SaveName: Arkham SCE - 2.3.1 +SaveName: Arkham SCE - 2.4.0 Sky: Sky_Museum SkyURL: https://i.imgur.com/GkQqaOF.jpg SnapPoints: @@ -644,12 +643,12 @@ SnapPoints: y: 1.59 z: 10.38 Rotation: - x: 359.92 + x: 0.0 y: 270.0 - z: 0.02 + z: 0.0 - Position: - x: -2.72 - y: 1.59 + x: -2.73 + y: 1.58 z: 0.37 - Position: x: -5.32 @@ -664,217 +663,217 @@ SnapPoints: y: 1.58 z: -10.44 Rotation: - x: 359.92 + x: 0.0 y: 270.0 - z: 0.02 + z: 0.0 - Position: x: 1.75 y: 1.57 z: -14.19 Rotation: - x: 0.01 - y: 315.01 - z: 0.02 + x: 0.0 + y: 315.0 + z: 0.0 - Position: x: -43.37 y: 1.65 z: 15.19 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -43.37 y: 1.64 z: 7.57 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -43.37 y: 1.64 z: -0.03 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -43.37 y: 1.64 z: -7.7 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -43.37 y: 1.64 z: -15.28 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -36.77 y: 1.63 z: -15.28 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -36.77 y: 1.63 z: -7.7 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -36.77 y: 1.63 z: -0.03 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -36.77 y: 1.64 z: 7.57 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -36.77 y: 1.64 z: 15.19 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -30.22 y: 1.63 z: 15.19 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -30.22 y: 1.63 z: 7.57 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -30.22 y: 1.62 z: -0.03 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -30.22 y: 1.62 z: -7.7 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -30.22 y: 1.62 z: -15.28 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -23.68 y: 1.61 z: -15.28 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -23.68 y: 1.61 z: -7.7 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -23.68 y: 1.61 z: -0.03 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -23.68 y: 1.62 z: 7.57 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -23.68 y: 1.62 z: 15.19 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -17.12 y: 1.61 z: 15.19 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -17.12 y: 1.61 z: 7.57 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -17.12 y: 1.61 z: -0.03 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -17.12 y: 1.6 z: -7.7 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -17.12 y: 1.6 z: -15.28 Rotation: - x: 359.92 - y: 270.03 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -43.37 y: 1.65 @@ -949,7 +948,7 @@ SnapPoints: z: 3.86 - Position: x: -17.12 - y: 1.61 + y: 1.6 z: -3.83 - Position: x: -17.12 @@ -960,17 +959,17 @@ SnapPoints: y: 1.45 z: -30.87 Rotation: - x: 359.92 - y: 300.01 - z: 359.97 + x: 0.0 + y: 300.0 + z: 0.0 - Position: x: 38.66 y: 1.42 z: -36.01 Rotation: - x: 359.93 - y: 315.01 - z: 359.95 + x: 0.0 + y: 315.0 + z: 0.0 - Position: x: -5.37 y: 1.59 @@ -1049,12 +1048,12 @@ SnapPoints: z: 85.59 - Position: x: -24.45 - y: 1.27 - z: 83.29 + y: 1.26 + z: 83.3 - Position: x: -24.45 y: 1.26 - z: 80.99 + z: 81.0 - Position: x: -24.45 y: 1.26 @@ -1070,11 +1069,11 @@ SnapPoints: - Position: x: -24.45 y: 1.26 - z: 71.79 + z: 71.8 - Position: x: -24.45 y: 1.26 - z: 69.49 + z: 69.5 - Position: x: -24.45 y: 1.26 @@ -1090,7 +1089,7 @@ SnapPoints: - Position: x: -24.45 y: 1.26 - z: 60.29 + z: 60.3 - Position: x: -24.45 y: 1.26 @@ -1098,15 +1097,15 @@ SnapPoints: - Position: x: -24.45 y: 1.26 - z: 55.69 + z: 55.7 - Position: - x: -24.44 + x: -24.45 y: 1.26 z: 51.09 - Position: x: -24.45 y: 1.26 - z: 53.39 + z: 53.4 - Position: x: -20.8 y: 1.27 @@ -1305,7 +1304,7 @@ SnapPoints: z: 67.15 - Position: x: 40.96 - y: 1.29 + y: 1.28 z: 69.45 - Position: x: 40.96 @@ -1473,7 +1472,7 @@ SnapPoints: z: 60.24 - Position: x: 49.56 - y: 1.29 + y: 1.28 z: 57.95 - Position: x: 53.23 @@ -1502,7 +1501,7 @@ SnapPoints: - Position: x: 53.21 y: 1.28 - z: 48.75 + z: 48.74 - Position: x: 49.55 y: 1.28 @@ -1662,7 +1661,7 @@ SnapPoints: - Position: x: -16.64 y: 1.3 - z: -75.71 + z: -75.7 - Position: x: -16.64 y: 1.3 @@ -1677,7 +1676,7 @@ SnapPoints: z: -76.94 - Position: x: -22.62 - y: 1.3 + y: 1.29 z: -76.95 - Position: x: -26.3 @@ -1705,7 +1704,7 @@ SnapPoints: z: -84.82 - Position: x: -16.64 - y: 1.3 + y: 1.29 z: -83.54 - Position: x: 66.32 @@ -1805,7 +1804,7 @@ SnapPoints: z: -86.57 - Position: x: 58.08 - y: 1.29 + y: 1.28 z: -88.86 - Position: x: 58.09 @@ -1825,7 +1824,7 @@ SnapPoints: z: -86.52 - Position: x: 52.94 - y: 1.29 + y: 1.28 z: -84.22 - Position: x: 52.95 @@ -1949,7 +1948,7 @@ SnapPoints: z: -77.31 - Position: x: 49.28 - y: 1.29 + y: 1.28 z: -79.61 - Position: x: 49.28 @@ -1970,7 +1969,7 @@ SnapPoints: - Position: x: 49.26 y: 1.28 - z: -91.1 + z: -91.11 - Position: x: 12.25 y: 1.47 @@ -2009,7 +2008,7 @@ SnapPoints: z: -28.01 - Position: x: 12.25 - y: 1.45 + y: 1.46 z: -36.01 - Position: x: 37.42 @@ -2029,7 +2028,7 @@ SnapPoints: z: 87.85 - Position: x: 33.86 - y: 1.29 + y: 1.28 z: 85.55 - Position: x: 33.86 @@ -2153,7 +2152,7 @@ SnapPoints: z: 53.35 - Position: x: 33.87 - y: 1.28 + y: 1.27 z: 51.06 - Position: x: 37.4 @@ -2213,7 +2212,7 @@ SnapPoints: z: 71.75 - Position: x: 45.98 - y: 1.29 + y: 1.28 z: 69.45 - Position: x: 45.98 @@ -2293,7 +2292,7 @@ SnapPoints: z: -68.11 - Position: x: 45.64 - y: 1.29 + y: 1.28 z: -70.41 - Position: x: 45.64 @@ -2330,33 +2329,33 @@ SnapPoints: - Position: x: 45.62 y: 1.28 - z: -91.1 + z: -91.11 - Position: - x: 32.99 + x: 32.98 y: 1.29 z: -47.41 - Position: - x: 32.99 + x: 32.98 y: 1.29 z: -52.01 - Position: - x: 32.99 + x: 32.98 y: 1.28 z: -56.61 - Position: - x: 32.99 + x: 32.98 y: 1.28 z: -65.81 - Position: - x: 32.99 + x: 32.98 y: 1.28 z: -72.71 - Position: - x: 32.99 + x: 32.98 y: 1.28 z: -79.61 - Position: - x: 32.99 + x: 32.98 y: 1.28 z: -86.51 - Position: @@ -2429,7 +2428,7 @@ SnapPoints: z: -58.92 - Position: x: 40.29 - y: 1.29 + y: 1.28 z: -61.22 - Position: x: 40.29 @@ -2489,30 +2488,30 @@ SnapPoints: z: -91.1 - Position: x: 32.97 - y: 1.28 + y: 1.27 z: -88.8 - Position: - x: 32.99 + x: 32.98 y: 1.28 z: -84.21 - Position: - x: 32.99 + x: 32.98 y: 1.28 z: -81.91 - Position: - x: 32.99 + x: 32.98 y: 1.28 z: -77.31 - Position: - x: 32.99 + x: 32.98 y: 1.28 z: -75.01 - Position: - x: 32.99 + x: 32.98 y: 1.28 z: -70.41 - Position: - x: 32.99 + x: 32.98 y: 1.28 z: -68.11 - Position: @@ -2532,20 +2531,20 @@ SnapPoints: y: 1.28 z: -72.71 - Position: - x: 32.99 + x: 32.98 y: 1.28 z: -63.51 - Position: - x: 32.99 + x: 32.98 y: 1.28 z: -61.21 - Position: - x: 32.99 + x: 32.98 y: 1.28 z: -58.91 - Position: x: 36.62 - y: 1.29 + y: 1.28 z: -58.91 - Position: x: 36.62 @@ -2556,15 +2555,15 @@ SnapPoints: y: 1.29 z: -54.31 - Position: - x: 32.99 - y: 1.29 + x: 32.98 + y: 1.28 z: -54.31 - Position: x: 36.62 y: 1.29 z: -52.01 - Position: - x: 32.99 + x: 32.98 y: 1.29 z: -49.71 - Position: @@ -2577,7 +2576,7 @@ SnapPoints: z: -47.41 - Position: x: 29.34 - y: 1.29 + y: 1.28 z: -49.71 - Position: x: 29.34 @@ -2637,7 +2636,7 @@ SnapPoints: z: -81.91 - Position: x: 29.34 - y: 1.28 + y: 1.27 z: -84.21 - Position: x: 29.34 @@ -2713,7 +2712,7 @@ SnapPoints: z: 57.95 - Position: x: 30.31 - y: 1.28 + y: 1.27 z: 55.65 - Position: x: 30.31 @@ -2746,7 +2745,7 @@ SnapPoints: - Position: x: 58.49 y: 1.4 - z: 0.13 + z: 0.12 - Position: x: 58.53 y: 1.4 @@ -2775,22 +2774,6 @@ SnapPoints: x: 66.9 y: 1.38 z: -27.91 -- Position: - x: 40.02 - y: 1.43 - z: 28.52 -- Position: - x: 40.2 - y: 1.43 - z: 14.5 -- Position: - x: 29.14 - y: 1.45 - z: 28.65 -- Position: - x: 40.27 - y: 1.43 - z: 0.38 - Position: x: -42.71 y: 1.25 @@ -2853,7 +2836,7 @@ SnapPoints: z: 53.41 - Position: x: -42.71 - y: 1.24 + y: 1.25 z: 51.11 - Position: x: -45.11 @@ -2871,122 +2854,118 @@ SnapPoints: x: -46.04 y: 1.25 z: 65.42 -- Position: - x: 29.09 - y: 1.45 - z: 14.5 - Position: x: -22.6 - y: 1.63 + y: 1.64 z: 22.44 Rotation: - x: 359.98 - y: 0.02 - z: 359.92 + x: 0.0 + y: 0.0 + z: 0.0 - Position: x: -25.57 y: 1.64 z: 22.44 Rotation: - x: 359.98 - y: 0.02 - z: 359.92 + x: 0.0 + y: 0.0 + z: 0.0 - Position: - x: -28.49 + x: -28.48 y: 1.64 z: 22.44 Rotation: - x: 359.98 - y: 0.02 - z: 359.92 + x: 0.0 + y: 0.0 + z: 0.0 - Position: x: -31.45 y: 1.65 z: 22.44 Rotation: - x: 359.98 - y: 0.02 - z: 359.92 + x: 0.0 + y: 0.0 + z: 0.0 - Position: x: -50.85 y: 1.64 z: 18.97 Rotation: - x: 359.92 - y: 270.02 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -50.85 - y: 1.63 + y: 1.64 z: 16.03 Rotation: - x: 359.92 - y: 270.02 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -50.85 y: 1.63 z: 13.1 Rotation: - x: 359.92 - y: 270.02 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -50.84 y: 1.63 z: 10.16 Rotation: - x: 359.92 - y: 270.02 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -50.84 y: 1.63 z: 7.02 Rotation: - x: 359.92 - y: 270.02 - z: 0.02 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -50.9 - y: 1.64 + y: 1.65 z: -13.13 Rotation: - x: 0.03 - y: 270.02 - z: 0.06 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -50.9 y: 1.64 z: -16.08 Rotation: - x: 0.03 - y: 270.02 - z: 0.06 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -50.9 y: 1.64 z: -19.01 Rotation: - x: 0.03 - y: 270.02 - z: 0.06 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -50.9 y: 1.64 z: -21.96 Rotation: - x: 0.03 - y: 270.02 - z: 0.06 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -50.9 y: 1.63 z: -25.1 Rotation: - x: 0.03 - y: 270.02 - z: 0.06 + x: 0.0 + y: 270.0 + z: 0.0 - Position: x: -28.51 y: 1.64 @@ -3024,9 +3003,9 @@ SnapPoints: y: 1.65 z: 22.44 Rotation: - x: 359.98 - y: 0.02 - z: 359.92 + x: 0.0 + y: 0.0 + z: 0.0 - Position: x: -16.69 y: 1.64 @@ -3083,14 +3062,42 @@ SnapPoints: x: -31.0 y: 1.65 z: 24.81 -- Position: - x: 36.17 - y: 1.43 - z: -11.38 - Position: x: -62.57 y: 1.57 z: 0.0 +- Position: + x: 45.34 + y: 1.48 + z: 14.5 +- Position: + x: 45.16 + y: 1.48 + z: 28.52 +- Position: + x: 45.41 + y: 1.48 + z: 0.38 +- Position: + x: 45.41 + y: 1.48 + z: -14.35 +- Position: + x: 30.37 + y: 1.48 + z: 28.53 +- Position: + x: 33.99 + y: 1.48 + z: -14.49 +- Position: + x: 34.21 + y: 1.48 + z: 0.36 +- Position: + x: 34.21 + y: 1.48 + z: 14.5 TabStates: '10': body: "Created by Whimsical\n\nAnything that passes over the remover that isn't\ @@ -3283,41 +3290,40 @@ Turns: TurnOrder: [] Type: 0 VersionNumber: v13.2.2 -XmlUI: "\r\n\r\n\r\n\r\ - \n\r\n \r\n \r\n \r\n \r\n \r\ - \n \r\n" +XmlUI: "\n\n\n\n\n \n\ + \ \n \ + \ \n \n\ + \ \n \n" diff --git a/unpacked/3DText 134348.yaml b/unpacked/3DText 134348.yaml index 678337d64..ba89f29cf 100644 --- a/unpacked/3DText 134348.yaml +++ b/unpacked/3DText 134348.yaml @@ -34,9 +34,9 @@ Text: fontSize: 56 Tooltip: true Transform: - posX: 42.41 - posY: 1.5 - posZ: -11.36 + posX: 36.91 + posY: 1.57 + posZ: 28.79 rotX: 90.0 rotY: 90.0 rotZ: 0.0 diff --git a/unpacked/3DText 260e0c.yaml b/unpacked/3DText 260e0c.yaml index 39e6e839e..f455f4bd1 100644 --- a/unpacked/3DText 260e0c.yaml +++ b/unpacked/3DText 260e0c.yaml @@ -34,7 +34,7 @@ Text: fontSize: 64 Tooltip: true Transform: - posX: -26.79 + posX: -26.78 posY: 1.5 posZ: 84.41 rotX: 90.0 diff --git a/unpacked/3DText 6f870e.yaml b/unpacked/3DText 6f870e.yaml index dbd0cc4ca..4d0ab5267 100644 --- a/unpacked/3DText 6f870e.yaml +++ b/unpacked/3DText 6f870e.yaml @@ -38,7 +38,7 @@ Transform: posY: 1.5 posZ: 77.59 rotX: 90.0 - rotY: 89.83 + rotY: 90.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/3DText 778306.yaml b/unpacked/3DText 778306.yaml index 7d15e22ff..984cebd8d 100644 --- a/unpacked/3DText 778306.yaml +++ b/unpacked/3DText 778306.yaml @@ -38,7 +38,7 @@ Transform: posY: 1.5 posZ: 70.71 rotX: 90.0 - rotY: 89.83 + rotY: 90.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/3DText 8553dc.yaml b/unpacked/3DText 8553dc.yaml index b1c32b613..8a8d74604 100644 --- a/unpacked/3DText 8553dc.yaml +++ b/unpacked/3DText 8553dc.yaml @@ -38,7 +38,7 @@ Transform: posY: 1.5 posZ: 70.71 rotX: 90.0 - rotY: 90.17 + rotY: 90.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/3DText 89e0dd.yaml b/unpacked/3DText 89e0dd.yaml index f9eaa5cb2..297346fb9 100644 --- a/unpacked/3DText 89e0dd.yaml +++ b/unpacked/3DText 89e0dd.yaml @@ -38,7 +38,7 @@ Transform: posY: 1.5 posZ: 63.72 rotX: 90.0 - rotY: 90.3 + rotY: 90.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/3DText 9f04cb.yaml b/unpacked/3DText 9f04cb.yaml index 4f59283db..526d3c762 100644 --- a/unpacked/3DText 9f04cb.yaml +++ b/unpacked/3DText 9f04cb.yaml @@ -38,7 +38,7 @@ Transform: posY: 1.5 posZ: 58.09 rotX: 90.0 - rotY: 89.83 + rotY: 90.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/3DText b32e04.yaml b/unpacked/3DText b32e04.yaml index 90b1355e5..239a58a9e 100644 --- a/unpacked/3DText b32e04.yaml +++ b/unpacked/3DText b32e04.yaml @@ -43,7 +43,7 @@ Transform: posY: 1.32 posZ: 59.06 rotX: 90.0 - rotY: 90.52 + rotY: 91.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/3DText ca78c7.yaml b/unpacked/3DText ca78c7.yaml index 9b74ce837..7c7dcc925 100644 --- a/unpacked/3DText ca78c7.yaml +++ b/unpacked/3DText ca78c7.yaml @@ -38,7 +38,7 @@ Transform: posY: 1.5 posZ: 63.72 rotX: 90.0 - rotY: 89.83 + rotY: 90.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/3DText d861ca.yaml b/unpacked/3DText d861ca.yaml index eaf3f5024..0b993235f 100644 --- a/unpacked/3DText d861ca.yaml +++ b/unpacked/3DText d861ca.yaml @@ -34,7 +34,7 @@ Text: fontSize: 64 Tooltip: true Transform: - posX: -17.9 + posX: -17.89 posY: 1.5 posZ: 53.27 rotX: 90.0 diff --git a/unpacked/3DText e51c92.yaml b/unpacked/3DText e51c92.yaml index 448d01ce9..6013c3a81 100644 --- a/unpacked/3DText e51c92.yaml +++ b/unpacked/3DText e51c92.yaml @@ -38,7 +38,7 @@ Transform: posY: 1.5 posZ: 84.58 rotX: 90.0 - rotY: 89.83 + rotY: 90.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/3DText e85ff9.yaml b/unpacked/3DText e85ff9.yaml index 6b84a5f5e..eae261d67 100644 --- a/unpacked/3DText e85ff9.yaml +++ b/unpacked/3DText e85ff9.yaml @@ -39,7 +39,7 @@ Transform: posY: 1.32 posZ: -69.11 rotX: 90.0 - rotY: 90.17 + rotY: 90.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07.ttslua b/unpacked/Bag All Player Cards 15bb07.ttslua index 24ff90234..5cefe3b8c 100644 --- a/unpacked/Bag All Player Cards 15bb07.ttslua +++ b/unpacked/Bag All Player Cards 15bb07.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/AllCardsBag") +end) +__bundle_register("playercards/AllCardsBag", function(require, _LOADED, __bundle_register, __bundle_modules) -- Position to check for weaknesses. Everything with X and Z less -- than these values (down and right on the table) will be checked @@ -322,4 +369,6 @@ function isBasicWeakness(cardMetadata) and cardMetadata.weakness and cardMetadata.basicWeaknessCount ~= nil and cardMetadata.basicWeaknessCount > 0 -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07.yaml b/unpacked/Bag All Player Cards 15bb07.yaml index fa85c5c6e..b382657a4 100644 --- a/unpacked/Bag All Player Cards 15bb07.yaml +++ b/unpacked/Bag All Player Cards 15bb07.yaml @@ -766,8 +766,7 @@ ContainedObjects: - !include 'Bag All Player Cards 15bb07/Card Shell Shock bcf406.yaml' - !include 'Bag All Player Cards 15bb07/Card Yaotl (1) 284bbe.yaml' - !include 'Bag All Player Cards 15bb07/Card Burglary bc3451.yaml' -- !include "Bag All Player Cards 15bb07/Card The Tower \uFFFD\uFFFD\u201A\uFFFD\uFFFD\ - \ XVI d5c93d.yaml" +- !include "Bag All Player Cards 15bb07/Card The Tower \u2219 XVI d5c93d.yaml" - !include 'Bag All Player Cards 15bb07/Card Sharpshooter (3) 7f27d6.yaml' - !include 'Bag All Player Cards 15bb07/Card Segment of Onyx (1) ff9f23.yaml' - !include 'Bag All Player Cards 15bb07/Card Reckless Assault 3ff641.yaml' @@ -775,33 +774,25 @@ ContainedObjects: - !include 'Bag All Player Cards 15bb07/Card Baron Samedi 16ad5d.yaml' - !include 'Bag All Player Cards 15bb07/Card Stand Together 7ec473.yaml' - !include 'Bag All Player Cards 15bb07/Card Chronophobia eeb330.yaml' -- !include "Bag All Player Cards 15bb07/Card The World \uFFFD\uFFFD\u201A\uFFFD\uFFFD\ - \ XXI (3) 372b5b.yaml" -- !include "Bag All Player Cards 15bb07/Card The Fool \uFFFD\uFFFD\u201A\uFFFD\uFFFD\ - \ 0 (3) b74c69.yaml" +- !include "Bag All Player Cards 15bb07/Card The World \u2219 XXI (3) 372b5b.yaml" +- !include "Bag All Player Cards 15bb07/Card The Fool \u2219 0 (3) b74c69.yaml" - !include "Bag All Player Cards 15bb07/Card R\xEDastrad (1) f1f24e.yaml" - !include "Bag All Player Cards 15bb07/Card Coup de Gr\xE2ce 2240f9.yaml" -- !include "Bag All Player Cards 15bb07/Card I've had worse\uFFFD\uFFFD\u201A\uFFFD\ - \uFFFD (2) 76147b.yaml" +- !include 'Bag All Player Cards 15bb07/Card I''ve had worse... (2) 76147b.yaml' - !include "Bag All Player Cards 15bb07/Card D\xE9j\xE0 Vu (5) 719a45.yaml" - !include 'Bag All Player Cards 15bb07/Card Chainsaw (4) d40f4e.yaml' - !include 'Bag All Player Cards 15bb07/Card Farsight (4) b4121c.yaml' -- !include "Bag All Player Cards 15bb07/Card The Star \uFFFD\uFFFD\u201A\uFFFD\uFFFD\ - \ XVII (3) a77ce0.yaml" +- !include "Bag All Player Cards 15bb07/Card The Star \u2219 XVII (3) a77ce0.yaml" - !include 'Bag All Player Cards 15bb07/Card Curiosity 9e5cd2.yaml' - !include 'Bag All Player Cards 15bb07/Card Shortcut (2) 29169e.yaml' - !include 'Bag All Player Cards 15bb07/Card Blood Pact (3) 64e131.yaml' - !include 'Bag All Player Cards 15bb07/Card Twila Katherine Price (3) 9f76ec.yaml' -- !include "Bag All Player Cards 15bb07/Card The Hierophant \uFFFD\uFFFD\u201A\uFFFD\ - \uFFFD V (3) 20c8a9.yaml" +- !include "Bag All Player Cards 15bb07/Card The Hierophant \u2219 V (3) 20c8a9.yaml" - !include 'Bag All Player Cards 15bb07/Card Recharge (4) 591789.yaml' -- !include "Bag All Player Cards 15bb07/Card Death \uFFFD\uFFFD\u201A\uFFFD\uFFFD\ - \ XIII (1) 2e5b03.yaml" +- !include "Bag All Player Cards 15bb07/Card Death \u2219 XIII (1) 2e5b03.yaml" - !include 'Bag All Player Cards 15bb07/Card Sneak By d099f4.yaml' -- !include "Bag All Player Cards 15bb07/Card The Moon \uFFFD\uFFFD\u201A\uFFFD\uFFFD\ - \ XVIII (1) e80bd8.yaml" -- !include "Bag All Player Cards 15bb07/Card The Devil \uFFFD\uFFFD\u201A\uFFFD\uFFFD\ - \ XV 7bcaf3.yaml" +- !include "Bag All Player Cards 15bb07/Card The Moon \u2219 XVIII (1) e80bd8.yaml" +- !include "Bag All Player Cards 15bb07/Card The Devil \u2219 XV 7bcaf3.yaml" - !include 'Bag All Player Cards 15bb07/Card Plucky (1) 86b9c5.yaml' - !include 'Bag All Player Cards 15bb07/Card One-Two Punch (5) 8ffa44.yaml' - !include 'Bag All Player Cards 15bb07/Card Lightning Gun (5) 2d362c.yaml' @@ -1262,8 +1253,7 @@ ContainedObjects: - !include 'Bag All Player Cards 15bb07/Card Extra Ammunition (1) f60263.yaml' - !include 'Bag All Player Cards 15bb07/Card Vicious Blow 889121.yaml' - !include 'Bag All Player Cards 15bb07/Card Police Badge (2) da46e0.yaml' -- !include "Bag All Player Cards 15bb07/Card I've had worse\uFFFD\uFFFD\u201A\uFFFD\ - \uFFFD (4) 3b6834.yaml" +- !include 'Bag All Player Cards 15bb07/Card I''ve had worse (4) 3b6834.yaml' - !include 'Bag All Player Cards 15bb07/Card Machete 86ee68.yaml' - !include 'Bag All Player Cards 15bb07/Card Evidence! 2db518.yaml' - !include 'Bag All Player Cards 15bb07/Card Dynamite Blast 97986a.yaml' @@ -1550,6 +1540,8 @@ ContainedObjects: - !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/Card Deck of Possibilities fefdfa.yaml' +- !include "Bag All Player Cards 15bb07/Card Isamara Ordo\xF1ez 860cd7.yaml" Description: '' DragSelectable: true GMNotes: '' @@ -1575,9 +1567,9 @@ Transform: posX: 77.89 posY: 1.04 posZ: 27.03 - rotX: 0.02 + rotX: 0.0 rotY: 0.0 - rotZ: 359.99 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card .18 Derringer (2) f8a977.yaml b/unpacked/Bag All Player Cards 15bb07/Card .18 Derringer (2) f8a977.yaml index c006a52c0..7849d6aef 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .18 Derringer (2) f8a977.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .18 Derringer (2) f8a977.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550820 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -21,10 +21,9 @@ 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 \"permanent\": false,\n \"weakness\": false,\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}" + ,\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 @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.0 posY: 3.87 - posZ: -16.69 - rotX: 0.39 - rotY: 270.01 - rotZ: 359.9 + posZ: -16.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card .18 Derringer 101a41.yaml b/unpacked/Bag All Player Cards 15bb07/Card .18 Derringer 101a41.yaml index 8628c5a4c..237869afa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .18 Derringer 101a41.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .18 Derringer 101a41.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550803 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -21,9 +21,9 @@ 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 \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - uses\": [\n {\n \"count\": 2,\n \"type\": \"Ammo\",\n \"token\"\ - : \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + ,\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 @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.76 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card .25 Automatic (2) 4425b5.yaml b/unpacked/Bag All Player Cards 15bb07/Card .25 Automatic (2) 4425b5.yaml index ffedde8fc..4b7415708 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .25 Automatic (2) 4425b5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .25 Automatic (2) 4425b5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 589404 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5894': BackIsHidden: true @@ -21,10 +21,9 @@ 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 \"permanent\": false,\n \"weakness\": false,\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}" + ,\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 @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.59 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card .25 Automatic a5087b.yaml b/unpacked/Bag All Player Cards 15bb07/Card .25 Automatic a5087b.yaml index 5a23cf6dd..e6bd2dff8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .25 Automatic a5087b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .25 Automatic a5087b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587219 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5872': BackIsHidden: true @@ -21,9 +21,9 @@ 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 \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"\ - uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\"\ - : \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\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 @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.04 posY: 3.91 posZ: -16.7 - rotX: 359.83 - rotY: 269.96 - rotZ: 0.07 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card .32 Colt (2) c026c9.yaml b/unpacked/Bag All Player Cards 15bb07/Card .32 Colt (2) c026c9.yaml index 5ce455ca6..547be4940 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .32 Colt (2) c026c9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .32 Colt (2) c026c9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 440922 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4409': BackIsHidden: true @@ -21,9 +21,9 @@ 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\ - \ \"permanent\": false,\n \"weakness\": false,\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}" + \ \"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 @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.73 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card .32 Colt b0f851.yaml b/unpacked/Bag All Player Cards 15bb07/Card .32 Colt b0f851.yaml index 922efe461..4da430b9c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .32 Colt b0f851.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .32 Colt b0f851.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226328 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,9 +21,9 @@ 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\ - \ \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 6,\n \"type\": \"Ammo\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\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 @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.76 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card .35 Winchester (Taboo) 41e560.yaml b/unpacked/Bag All Player Cards 15bb07/Card .35 Winchester (Taboo) 41e560.yaml index b7668302e..9c1b33a81 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .35 Winchester (Taboo) 41e560.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .35 Winchester (Taboo) 41e560.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450624 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06195-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\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 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.1 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card .35 Winchester c32e40.yaml b/unpacked/Bag All Player Cards 15bb07/Card .35 Winchester c32e40.yaml index 10344d470..5b1d2e81e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .35 Winchester c32e40.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .35 Winchester c32e40.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 583200 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5832': BackIsHidden: true @@ -19,11 +19,11 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"06195-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ +GMNotes: "{\n \"id\": \"06195\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\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 @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.15 posY: 4.16 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card .41 Derringer (2) f57af7.yaml b/unpacked/Bag All Player Cards 15bb07/Card .41 Derringer (2) f57af7.yaml index e68b01c52..d708d0f55 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .41 Derringer (2) f57af7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .41 Derringer (2) f57af7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315248 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -21,10 +21,10 @@ 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 \"permanent\": false,\n \ - \ \"weakness\": false,\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}" + \ \"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 @@ -42,16 +42,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0.08 - rotY: 269.99 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card .41 Derringer fe2db3.yaml b/unpacked/Bag All Player Cards 15bb07/Card .41 Derringer fe2db3.yaml index 3b4d43a35..3b2500482 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .41 Derringer fe2db3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .41 Derringer fe2db3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368628 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3686': BackIsHidden: true @@ -21,10 +21,9 @@ 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 \"permanent\": false,\n \ - \ \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\"\ - : 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"\ - cycle\": \"Core\"\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 @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0.08 + rotX: 0.0 rotY: 270.0 - rotZ: 0.01 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card .45 Automatic (2) fe0cc0.yaml b/unpacked/Bag All Player Cards 15bb07/Card .45 Automatic (2) fe0cc0.yaml index 01136ce3a..f7c6f2bb3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .45 Automatic (2) fe0cc0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .45 Automatic (2) fe0cc0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226347 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,10 +21,9 @@ 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\ - \ \"permanent\": false,\n \"weakness\": false,\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\ - }" + \ \"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 @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.68 - posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card .45 Automatic 12660b.yaml b/unpacked/Bag All Player Cards 15bb07/Card .45 Automatic 12660b.yaml index 4d809b79a..625288723 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .45 Automatic 12660b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .45 Automatic 12660b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226330 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,10 +21,9 @@ 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 \"permanent\": false,\n \"weakness\"\ - : false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \ - \ \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ - : \"Core\"\n}" + : 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 @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 19.45 posY: 3.37 posZ: -56.62 - rotX: 359.42 - rotY: 270.03 - rotZ: 359.77 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson (3) b492cb.yaml b/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson (3) b492cb.yaml index d18244581..0f7c9cdcc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson (3) b492cb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson (3) b492cb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 292813 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2928': BackIsHidden: true @@ -21,9 +21,9 @@ 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 \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"\ - uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\"\ - : \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}" + ,\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 @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 3.9 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson (3) d4dbc7.yaml b/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson (3) d4dbc7.yaml index 888b7e83a..98845815e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson (3) d4dbc7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson (3) d4dbc7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 292915 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2929': BackIsHidden: true @@ -21,10 +21,9 @@ 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 \"permanent\": false,\n \"weakness\": false,\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}" + ,\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 @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.03 posY: 3.85 posZ: -16.7 - rotX: 359.77 - rotY: 269.99 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson 2c6509.yaml b/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson 2c6509.yaml index 544ff5d26..16fbb72c1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson 2c6509.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card .45 Thompson 2c6509.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 277608 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2776': BackIsHidden: true @@ -21,9 +21,9 @@ 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 \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\"\ - : \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}" + ,\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 @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 5.35 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card 21 or Bust 5210c2.yaml b/unpacked/Bag All Player Cards 15bb07/Card 21 or Bust 5210c2.yaml index b777cfd4e..b0ae29323 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card 21 or Bust 5210c2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card 21 or Bust 5210c2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379038 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08048\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Fortune. Gambit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Fortune. Gambit.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 5210c2 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.2 posY: 2.07 posZ: -16.74 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card A Chance Encounter (2) 0edef1.yaml b/unpacked/Bag All Player Cards 15bb07/Card A Chance Encounter (2) 0edef1.yaml index a2025c2ac..66c135393 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card A Chance Encounter (2) 0edef1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card A Chance Encounter (2) 0edef1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368844 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03238\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 2,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The\ - \ Path to Carcosa\"\n}" + ,\n \"level\": 2,\n \"traits\": \"Fortune.\",\n \"willpowerIcons\": 1,\n \"\ + intellectIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 0edef1 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.0 posY: 3.71 posZ: -16.69 - rotX: 359.95 - rotY: 270.01 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card A Chance Encounter 3f3488.yaml b/unpacked/Bag All Player Cards 15bb07/Card A Chance Encounter 3f3488.yaml index 02ed9b79f..d0a3c8917 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card A Chance Encounter 3f3488.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card A Chance Encounter 3f3488.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368812 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02270\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 3f3488 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.01 posY: 3.72 posZ: -16.7 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card A Glimmer of Hope f21109.yaml b/unpacked/Bag All Player Cards 15bb07/Card A Glimmer of Hope f21109.yaml index 2ec058f9b..ae60f3682 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card A Glimmer of Hope f21109.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card A Glimmer of Hope f21109.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 447733 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4477': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06245\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Blessed. Fortune.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Blessed. Fortune.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: f21109 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.04 posY: 3.93 posZ: -16.7 - rotX: 359.81 - rotY: 269.96 - rotZ: 0.09 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card A Test of Will (1) 4cfcc7.yaml b/unpacked/Bag All Player Cards 15bb07/Card A Test of Will (1) 4cfcc7.yaml index 70ea1316c..e67c48774 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card A Test of Will (1) 4cfcc7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card A Test of Will (1) 4cfcc7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368837 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03156\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 4cfcc7 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 78.51 posY: 1.06 posZ: 27.14 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card A Test of Will (2) 71a760.yaml b/unpacked/Bag All Player Cards 15bb07/Card A Test of Will (2) 71a760.yaml index 5859ca1f8..adcd358cb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card A Test of Will (2) 71a760.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card A Test of Will (2) 71a760.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550821 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60523\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 71a760 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 78.51 posY: 1.06 posZ: 27.14 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card A Test of Will 48e516.yaml b/unpacked/Bag All Player Cards 15bb07/Card A Test of Will 48e516.yaml index 4958a9cdc..0c132eccc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card A Test of Will 48e516.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card A Test of Will 48e516.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550811 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60513\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 48e516 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 78.51 posY: 1.06 posZ: 27.14 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card A Watchful Peace (3) (Taboo) 125f13.yaml b/unpacked/Bag All Player Cards 15bb07/Card A Watchful Peace (3) (Taboo) 125f13.yaml index 3bc631cc5..5e18a92a3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card A Watchful Peace (3) (Taboo) 125f13.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card A Watchful Peace (3) (Taboo) 125f13.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 585500 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5855': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07269-t\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spirit. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Innsmouth\ - \ Conspiracy\"\n}" + ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spirit. Blessed.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 125f13 Grid: true GridProjection: false @@ -43,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.13 + posX: 9.12 posY: 3.88 posZ: -16.72 - rotX: 0.17 - rotY: 269.81 - rotZ: 359.87 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card A Watchful Peace (3) 176836.yaml b/unpacked/Bag All Player Cards 15bb07/Card A Watchful Peace (3) 176836.yaml index d8835c06c..72e7c8c81 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card A Watchful Peace (3) 176836.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card A Watchful Peace (3) 176836.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449608 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4496': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07269\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spirit. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Innsmouth\ - \ Conspiracy\"\n}" + ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spirit. Blessed.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: '176836' Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.71 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 35a7e9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 35a7e9.yaml index 4bc1a9e2f..edcba4810 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 35a7e9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 35a7e9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587214 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5872': BackIsHidden: true @@ -20,8 +20,7 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"01515\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"Core\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Core\"\n}" GUID: 35a7e9 Grid: true GridProjection: false @@ -45,9 +44,9 @@ Transform: posX: 47.53 posY: 1.99 posZ: -99.22 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 79b4af.yaml b/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 79b4af.yaml index d2f670b9d..d8c3240a5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 79b4af.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 79b4af.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 375129 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3751': BackIsHidden: true @@ -20,8 +20,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"Core\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Core\"\n}" GUID: 79b4af Grid: true GridProjection: false @@ -45,8 +44,8 @@ Transform: posX: 8.99 posY: 3.79 posZ: -16.69 - rotX: 359.99 - rotY: 270.01 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 89fe92.yaml b/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 89fe92.yaml index 0aabf049b..591dc47d2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 89fe92.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Abandoned and Alone 89fe92.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 536002 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5360': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Advanced DragSelectable: true GMNotes: "{\n \"id\": \"90040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"Standalone\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Standalone\"\ + \n}" GUID: 89fe92 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 78.69 posY: 3.33 posZ: 7.65 - rotX: 359.81 + rotX: 0.0 rotY: 270.0 - rotZ: 0.43 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Abbess Allegria Di Biase a4b514.yaml b/unpacked/Bag All Player Cards 15bb07/Card Abbess Allegria Di Biase a4b514.yaml index 685a1a363..2430a7a0c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Abbess Allegria Di Biase a4b514.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Abbess Allegria Di Biase a4b514.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 4000 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '40': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Ally. Believer. DragSelectable: true GMNotes: "{\n \"id\": \"82022\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 4,\n \"traits\": \"Ally. Believer.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"\ - wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 4,\n \"traits\": \"Ally. Believer.\",\n \"willpowerIcons\": 1,\n\ + \ \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}" GUID: a4b514 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 - posY: 5.19 + posY: 5.18 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Abigail Foreman (4) 97e9ce.yaml b/unpacked/Bag All Player Cards 15bb07/Card Abigail Foreman (4) 97e9ce.yaml index 861fead8c..5f1f5b269 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Abigail Foreman (4) 97e9ce.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Abigail Foreman (4) 97e9ce.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448839 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4488': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: 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 \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\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 @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.55 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Able Bodied 051742.yaml b/unpacked/Bag All Player Cards 15bb07/Card Able Bodied 051742.yaml index 65ef2c91f..fd05a5ef3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Able Bodied 051742.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Able Bodied 051742.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 274606 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2746': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05038\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"combatIcons\": 1,\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: '051742' Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 3.79 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Abyssal Tome (2) a2d392.yaml b/unpacked/Bag All Player Cards 15bb07/Card Abyssal Tome (2) a2d392.yaml index 87e55eccd..b54f1536a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Abyssal Tome (2) a2d392.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Abyssal Tome (2) a2d392.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232107 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2321': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07159\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\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 @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.1 posY: 3.68 posZ: -16.71 - rotX: 359.91 - rotY: 269.87 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Accursed Fate 85e7d9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Accursed Fate 85e7d9.yaml index d93d41bb3..6dd348f05 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Accursed Fate 85e7d9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Accursed Fate 85e7d9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 537608 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"04041\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \ - \ \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"traits\": \"Curse.\",\n \"weakness\": true,\n \"cycle\": \"The Forgotten\ + \ Age\"\n}" GUID: 85e7d9 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 4.21 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Accursed Follower ef91a9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Accursed Follower ef91a9.yaml index 393b17a08..c5c718bd9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Accursed Follower ef91a9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Accursed Follower ef91a9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 583332 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5833': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"07038\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Humanoid. Cultist. Cursed.\",\n \"permanent\": false,\n \"\ - weakness\": true,\n \"basicWeaknessCount\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\ - \n}" + ,\n \"traits\": \"Humanoid. Cultist. Cursed.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: ef91a9 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.01 posY: 3.74 posZ: -16.7 - rotX: 0.78 - rotY: 270.01 - rotZ: 359.81 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ace in the Hole (3) (Taboo) e5d5f0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ace in the Hole (3) (Taboo) e5d5f0.yaml index 580ee4de5..00187eef7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ace in the Hole (3) (Taboo) e5d5f0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ace in the Hole (3) (Taboo) e5d5f0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450617 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02266-t\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"cycle\": \"The\ + \ Dunwich Legacy\"\n}" GUID: e5d5f0 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 3.9 posZ: -16.72 - rotX: 0.18 - rotY: 269.8 - rotZ: 359.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ace in the Hole (3) 074858.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ace in the Hole (3) 074858.yaml index 098f0a33a..a711248cc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ace in the Hole (3) 074858.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ace in the Hole (3) 074858.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315252 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02266\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"cycle\": \"The\ + \ Dunwich Legacy\"\n}" GUID: 074858 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 4.01 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ace of Rods (1) 52a677.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ace of Rods (1) 52a677.yaml index 81f323d1d..a0e9ff7a9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ace of Rods (1) 52a677.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ace of Rods (1) 52a677.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 318703 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3187': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: 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 \"permanent\":\ - \ false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"cycle\": \"The\ + \ Circle Undone\"\n}" GUID: 52a677 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 5.27 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ace of Swords (1) c4d436.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ace of Swords (1) c4d436.yaml index c426c1b0b..5a0d7baf5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ace of Swords (1) c4d436.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ace of Swords (1) c4d436.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 431009 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4310': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: 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 \"permanent\":\ - \ false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"cycle\": \"The\ + \ Circle Undone\"\n}" GUID: c4d436 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.18 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Across Space and Time fb943f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Across Space and Time fb943f.yaml index a1070e74f..67850acdc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Across Space and Time fb943f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Across Space and Time fb943f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232941 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2329': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Madness. DragSelectable: true GMNotes: "{\n \"id\": \"02178\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\"\ + : \"The Dunwich Legacy\"\n}" GUID: fb943f Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.04 posY: 3.93 posZ: -16.7 - rotX: 359.81 - rotY: 269.96 - rotZ: 0.09 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Act of Desperation 0bea17.yaml b/unpacked/Bag All Player Cards 15bb07/Card Act of Desperation 0bea17.yaml index e47bdf8ea..6e54d9091 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Act of Desperation 0bea17.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Act of Desperation 0bea17.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 274607 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2746': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05037\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Tactic. Gambit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Tactic. Gambit.\",\n \"combatIcons\"\ + : 2,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 0bea17 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.02 posY: 4.0 posZ: -16.7 - rotX: 359.83 + rotX: 0.0 rotY: 270.0 - rotZ: 0.04 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Adaptable (1) 731d2a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Adaptable (1) 731d2a.yaml index e9851ab82..a348ecf61 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Adaptable (1) 731d2a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Adaptable (1) 731d2a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315232 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02110\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 1,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"level\": 1,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"The Dunwich Legacy\"\n}" GUID: 731d2a Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.68 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Against All Odds (2) c077bf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Against All Odds (2) c077bf.yaml index d86ac022a..86b0e2214 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Against All Odds (2) c077bf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Against All Odds (2) c077bf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368850 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04202\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten\ + \ Age\"\n}" GUID: c077bf Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 9.14 posY: 3.7 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Agency Backup (5) d6eda3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Agency Backup (5) d6eda3.yaml index 7c038fc51..dd96afe5e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Agency Backup (5) d6eda3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Agency Backup (5) d6eda3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378618 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3786': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05274\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 7,\n \"level\": 5,\n \"traits\": \"Ally. Agency.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" + ,\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 @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.22 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Agent Fletcher 95b0cf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Agent Fletcher 95b0cf.yaml index c3392eeb9..8c3261aa5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Agent Fletcher 95b0cf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Agent Fletcher 95b0cf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379006 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09010\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Humanoid. Coterie. Detective.\",\n \"permanent\": false,\n \ - \ \"weakness\": true,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"traits\": \"Humanoid. Coterie. Detective.\",\n \"weakness\": true,\n \"\ + cycle\": \"The Scarlet Keys\"\n}" GUID: 95b0cf Grid: true GridProjection: false @@ -39,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- ScenarioCard +- PlayerCard Tooltip: true Transform: posX: 17.48 posY: 2.21 posZ: 60.19 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel Back) 909f30.yaml b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel Back) 909f30.yaml index 18d9759e1..2a89c156c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel Back) 909f30.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel Back) 909f30.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 535906 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5359': BackIsHidden: true @@ -39,17 +39,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 - posY: 1.53 + posY: 1.52 posZ: -73.09 - rotX: 359.77 + rotX: 0.0 rotY: 180.0 - rotZ: 0.07 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel Front) 02db0a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel Front) 02db0a.yaml index 34685c1cd..eb1c0ed5f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel Front) 02db0a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel Front) 02db0a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 535905 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5359': BackIsHidden: true @@ -39,17 +39,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 87.05 posY: 2.12 posZ: -78.51 - rotX: 355.43 + rotX: 355.0 rotY: 180.0 rotZ: 0.0 - scaleX: 1.1 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel) 01b6ef.yaml b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel) 01b6ef.yaml index ac4a79c1f..6e5cd8673 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel) 01b6ef.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker (Parallel) 01b6ef.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 535904 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5359': BackIsHidden: true @@ -39,17 +39,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.29 posZ: -73.09 - rotX: 0.02 - rotY: 179.99 - rotZ: 359.98 - scaleX: 1.1 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker 25e2db.yaml b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker 25e2db.yaml index af27edc70..0198e4df7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker 25e2db.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker 25e2db.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 535603 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5356': BackIsHidden: true @@ -40,6 +40,7 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: @@ -49,8 +50,8 @@ Transform: rotX: 0.0 rotY: 180.0 rotZ: 0.0 - scaleX: 1.1 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker 6797bb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker 6797bb.yaml index c13617a83..fcaa9dfb1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker 6797bb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker 6797bb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587403 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5874': BackIsHidden: true @@ -19,7 +19,7 @@ CustomDeck: UniqueBack: true Description: The Waitress DragSelectable: true -GMNotes: "{\n \"id\": \"01004-r\",\n \"type\": \"Investigator\",\n \"class\": \"\ +GMNotes: "{\n \"id\": \"01504\",\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}" GUID: 6797bb @@ -39,17 +39,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 45.75 posY: 1.99 posZ: -116.88 - rotX: 0.02 - rotY: 179.96 - rotZ: 359.98 - scaleX: 1.0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.0 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker 8c997c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker 8c997c.yaml index 9cde2f02b..402c28a23 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker 8c997c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker 8c997c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587103 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5871': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"01004-revised-m\",\n \"type\": \"Minicard\",\n \"traits\"\ - : \"\"\n}" +GMNotes: "{\n \"id\": \"01504-m\",\n \"type\": \"Minicard\"\n}" GUID: 8c997c Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 45.32 posY: 1.99 posZ: -105.18 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker e53693.yaml b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker e53693.yaml index f625b5762..871de43ef 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker e53693.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Agnes Baker e53693.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 258803 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2588': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"01004-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"01004-m\",\n \"type\": \"Minicard\"\n}" GUID: e53693 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 29.14 posY: 3.37 posZ: -59.35 - rotX: 0.31 - rotY: 269.98 - rotZ: 1.49 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Akachi Onyele 452ed8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Akachi Onyele 452ed8.yaml index d901e3ae9..a786bf1ac 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Akachi Onyele 452ed8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Akachi Onyele 452ed8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 271013 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2710': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.88 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Akachi Onyele 6a9578.yaml b/unpacked/Bag All Player Cards 15bb07/Card Akachi Onyele 6a9578.yaml index f2e0de0de..2291663bb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Akachi Onyele 6a9578.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Akachi Onyele 6a9578.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 259813 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2598': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"03004-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"03004-m\",\n \"type\": \"Minicard\"\n}" GUID: 6a9578 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.68 posZ: -18.15 - rotX: 359.91 - rotY: 269.95 - rotZ: 0.09 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Alchemical Distillation 502a4d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Alchemical Distillation 502a4d.yaml index 5daa9097e..78ee1e158 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Alchemical Distillation 502a4d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Alchemical Distillation 502a4d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379033 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,29 +20,27 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09040\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Science.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\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: \uFFFD\u20AC\uFFFD? Heal\ - \ 2 damage.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Calming Distillate\"\ - ,\n \"xp\": 1,\n \"text\": \"Add this option: \uFFFD\u20AC\uFFFD? Heal\ - \ 2 horror.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Enlightening Distillate\"\ - ,\n \"xp\": 1,\n \"text\": \"Add this option: \uFFFD\u20AC\uFFFD? Place\ - \ 1 charge or secret on an asset you control.\uFFFD\u20AC?\"\n },\n {\n \ - \ \"name\": \"Quickening Distillate\",\n \"xp\": 1,\n \"text\": \"\ - Add this option: \uFFFD\u20AC\uFFFD? Move up to 2 times.\uFFFD\u20AC?\"\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}" + ,\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 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 @@ -67,9 +65,9 @@ Transform: posX: 16.67 posY: 3.34 posZ: 65.93 - rotX: 356.74 - rotY: 270.11 - rotZ: 356.46 + rotX: 357.0 + rotY: 270.0 + rotZ: 356.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Alchemical Transmutation (2) 283e54.yaml b/unpacked/Bag All Player Cards 15bb07/Card Alchemical Transmutation (2) 283e54.yaml index 216fe4ee2..409165c0f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Alchemical Transmutation (2) 283e54.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Alchemical Transmutation (2) 283e54.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 444020 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4440': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"52007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\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}" + ,\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 @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 3.97 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Alchemical Transmutation 54832d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Alchemical Transmutation 54832d.yaml index 01387ad0e..51b14c165 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Alchemical Transmutation 54832d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Alchemical Transmutation 54832d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230320 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03032\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\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 @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.05 posY: 3.72 - posZ: -16.71 - rotX: 359.74 - rotY: 269.95 - rotZ: 0.13 + posZ: -16.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Alejandro Vela c49b4b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Alejandro Vela c49b4b.yaml index ed2d687bf..2588337ce 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Alejandro Vela c49b4b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Alejandro Vela c49b4b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 235600 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2356': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: Renowned Historian DragSelectable: true GMNotes: "{\n \"id\": \"04051\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"\ - wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Ally. Wayfarer.\",\n \"willpowerIcons\": 1,\n\ + \ \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\ + \n}" GUID: c49b4b Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.69 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Alice Luxley ae20e0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Alice Luxley ae20e0.yaml index 6d8ad9f17..a9e479676 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Alice Luxley ae20e0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Alice Luxley ae20e0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 278010 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2780': BackIsHidden: true @@ -21,8 +21,7 @@ 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\ - \ \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"\ - cycle\": \"The Circle Undone\"\n}" + \ \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: ae20e0 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.68 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card All In (5) (Taboo) ff1dfe.yaml b/unpacked/Bag All Player Cards 15bb07/Card All In (5) (Taboo) ff1dfe.yaml index 034d1c452..3e73b79dc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card All In (5) (Taboo) ff1dfe.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card All In (5) (Taboo) ff1dfe.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450620 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04309-t\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 5,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"level\": 5,\n \"traits\": \"Fortune.\",\n \"wildIcons\": 2,\n \"cycle\"\ + : \"The Forgotten Age\"\n}" GUID: ff1dfe Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.12 posY: 4.01 posZ: -16.72 - rotX: 0.1 - rotY: 269.82 - rotZ: 359.91 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card All In (5) 7d3a27.yaml b/unpacked/Bag All Player Cards 15bb07/Card All In (5) 7d3a27.yaml index 54dea5694..5e37d379e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card All In (5) 7d3a27.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card All In (5) 7d3a27.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 265502 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2655': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04309\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 5,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"level\": 5,\n \"traits\": \"Fortune.\",\n \"wildIcons\": 2,\n \"cycle\"\ + : \"The Forgotten Age\"\n}" GUID: 7d3a27 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 4.71 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Alter Fate (1) 9e4e11.yaml b/unpacked/Bag All Player Cards 15bb07/Card Alter Fate (1) 9e4e11.yaml index 9c418d09d..4cc96eb3c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Alter Fate (1) 9e4e11.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Alter Fate (1) 9e4e11.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545208 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5452': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"53009\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Return to the Forgotten Age\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Spell. Blessed.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Return to the Forgotten Age\"\n}" GUID: 9e4e11 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.01 posY: 3.67 posZ: -16.7 - rotX: 359.93 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Alter Fate (3) 83c86b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Alter Fate (3) 83c86b.yaml index cd903e6ff..ec0f5521e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Alter Fate (3) 83c86b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Alter Fate (3) 83c86b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368856 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04313\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spell. Blessed.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 83c86b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.2 posY: 2.81 posZ: -16.73 - rotX: 0.02 - rotY: 269.8 - rotZ: 359.46 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Alyssa Graham 53867b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Alyssa Graham 53867b.yaml index 713ad689c..59637b881 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Alyssa Graham 53867b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Alyssa Graham 53867b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230330 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: 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 \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\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 @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.03 posY: 3.85 posZ: -16.7 - rotX: 359.77 - rotY: 269.99 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Amanda Sharpe 05b950.yaml b/unpacked/Bag All Player Cards 15bb07/Card Amanda Sharpe 05b950.yaml index 16b847074..710dd508f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Amanda Sharpe 05b950.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Amanda Sharpe 05b950.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449600 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4496': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.85 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Amanda Sharpe 155746.yaml b/unpacked/Bag All Player Cards 15bb07/Card Amanda Sharpe 155746.yaml index 94f0ccd0d..46fb0b5a4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Amanda Sharpe 155746.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Amanda Sharpe 155746.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553201 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5532': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"07002-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"07002-m\",\n \"type\": \"Minicard\"\n}" GUID: '155746' Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.89 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ambush (1) a1fd61.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ambush (1) a1fd61.yaml index d27c7434c..514354b74 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ambush (1) a1fd61.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ambush (1) a1fd61.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226338 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03148\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: a1fd61 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.12 posY: 4.07 posZ: -16.72 - rotX: 0.06 - rotY: 269.82 - rotZ: 359.93 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Amina Zidane 458edc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Amina Zidane 458edc.yaml index bb54c34e8..098d59728 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Amina Zidane 458edc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Amina Zidane 458edc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 846103 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8461': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09011-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"09011-m\",\n \"type\": \"Minicard\"\n}" GUID: 458edc Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 78.27 posY: 1.06 posZ: 26.81 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Amina Zidane 4c2a3d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Amina Zidane 4c2a3d.yaml index c99b3b08a..045fb8ebd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Amina Zidane 4c2a3d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Amina Zidane 4c2a3d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 843403 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8434': BackIsHidden: true @@ -21,7 +21,8 @@ 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}" + : 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 3,\n \"cycle\": \"The Scarlet\ + \ Keys\"\n}" GUID: 4c2a3d Grid: true GridProjection: false @@ -39,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 78.65 posY: 3.32 posZ: 36.17 - rotX: 0.28 - rotY: 180.01 - rotZ: 359.82 - scaleX: 1.0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.0 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Amnesia 2210c1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Amnesia 2210c1.yaml index 46d1ad60e..587fa66cf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Amnesia 2210c1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Amnesia 2210c1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527400 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5274': BackIsHidden: true @@ -21,8 +21,7 @@ Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"01096\",\n \"alternate_ids\": [\n \"01596\"\n ],\n \ \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2,\n\ - \ \"cycle\": \"Core\"\n}" + ,\n \"weakness\": true,\n \"basicWeaknessCount\": 2,\n \"cycle\": \"Core\"\n}" GUID: 2210c1 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 78.78 posY: 3.32 posZ: 26.97 - rotX: 359.54 - rotY: 269.99 - rotZ: 359.46 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Analysis 80285f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Analysis 80285f.yaml index a12cc2c3f..e2ebaaf07 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Analysis 80285f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Analysis 80285f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379042 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09049\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"wildIcons\": 1\n}" + ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"wildIcons\": 1,\n \"cycle\"\ + : \"The Scarlet Keys\"\n}" GUID: 80285f Grid: true GridProjection: false @@ -43,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 16.67 - posY: 3.39 + posY: 3.38 posZ: 65.93 - rotX: 358.78 - rotY: 270.02 - rotZ: 358.67 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Analytical Mind 7b6ab5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Analytical Mind 7b6ab5.yaml index 5397cdc55..d3a1ebe8c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Analytical Mind 7b6ab5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Analytical Mind 7b6ab5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 374532 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3745': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Talent.\",\n \"wildIcons\": 2,\n \"cycle\"\ + : \"The Path to Carcosa\"\n}" GUID: 7b6ab5 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.58 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Anatomical Diagrams a8e495.yaml b/unpacked/Bag All Player Cards 15bb07/Card Anatomical Diagrams a8e495.yaml index 64bec8b2b..030dfe71c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Anatomical Diagrams a8e495.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Anatomical Diagrams a8e495.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368409 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03108\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: a8e495 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.01 posY: 3.85 posZ: -16.7 - rotX: 359.9 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ancestral Knowledge (3) 7b7d14.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ancestral Knowledge (3) 7b7d14.yaml index b0f458fda..a562cb41a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ancestral Knowledge (3) 7b7d14.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ancestral Knowledge (3) 7b7d14.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 589202 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5892': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07303\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"The Innsmouth Conspiracy\"\n}" GUID: 7b7d14 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 78.51 posY: 1.06 posZ: 27.14 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ancient Ankh 0ce113.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ancient Ankh 0ce113.yaml index 3b51c7c7e..5f4f30219 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ancient Ankh 0ce113.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ancient Ankh 0ce113.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 454741 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4547': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Item. Relic. DragSelectable: true GMNotes: "{\n \"id\": \"83056\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\": 1,\n \ + \ \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\"\ + : 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n\ + \ \"cycle\": \"Standalone\"\n}" GUID: 0ce113 Grid: true GridProjection: false @@ -41,15 +41,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.15 posY: 3.99 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (1) 9bc46e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (1) 9bc46e.yaml index 41b2e590c..e559f0e92 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (1) 9bc46e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (1) 9bc46e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430639 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: 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 \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\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 @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.16 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 3289b0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 3289b0.yaml index 874df2bcf..eaa5034e7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 3289b0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 3289b0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545203 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5452': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: 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 \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"Return\ - \ to the Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"agilityIcons\"\ + : 2,\n \"cycle\": \"Return to the Forgotten Age\"\n}" GUID: 3289b0 Grid: true GridProjection: false @@ -40,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.09 posY: 3.72 posZ: -16.71 - rotX: 359.94 - rotY: 269.88 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 863f91.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 863f91.yaml index 5293d9c32..d1d915d85 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 863f91.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 863f91.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 262202 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2622': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: 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 \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 863f91 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.33 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 9c56d3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 9c56d3.yaml index ee4130351..6bf5071e8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 9c56d3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ancient Stone (4) 9c56d3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 262201 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2622': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: 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 \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 9c56d3 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.11 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Angered Spirits d8705c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Angered Spirits d8705c.yaml index 82ad9a1ca..bd19db737 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Angered Spirits d8705c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Angered Spirits d8705c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 374717 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3747': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - cycle\": \"The Path to Carcosa\"\n}" + ,\n \"traits\": \"Task.\",\n \"weakness\": true,\n \"cycle\": \"The Path to Carcosa\"\ + \n}" GUID: d8705c Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.16 posY: 3.43 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.94 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Anna Kaslow (4) 03a4de.yaml b/unpacked/Bag All Player Cards 15bb07/Card Anna Kaslow (4) 03a4de.yaml index 3ac5fe06b..e3c3a53d9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Anna Kaslow (4) 03a4de.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Anna Kaslow (4) 03a4de.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 373910 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3739': BackIsHidden: true @@ -21,8 +21,7 @@ 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 \"\ - permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"\ - The Circle Undone\"\n}" + wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 03a4de Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.99 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Another Day, Another Dollar (3) 006d44.yaml b/unpacked/Bag All Player Cards 15bb07/Card Another Day, Another Dollar (3) 006d44.yaml index 418d8f8d2..82d82e4dc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Another Day, Another Dollar (3) 006d44.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Another Day, Another Dollar (3) 006d44.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378017 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3780': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05278\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"The Circle Undone\"\n}" GUID: 006d44 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.75 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Antiquary (3) 452db2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Antiquary (3) 452db2.yaml index 08963e9d5..96d78574a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Antiquary (3) 452db2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Antiquary (3) 452db2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378962 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08124\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue|Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \ - \ \"count\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"wildIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 2,\n \"replenish\": 2,\n \ + \ \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ + : \"Edge of the Earth\"\n}" GUID: 452db2 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.94 posZ: -16.73 - rotX: 359.91 - rotY: 269.8 - rotZ: 0.08 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Anything You Can Do, Better 2c563c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Anything You Can Do, Better 2c563c.yaml index f10ae783b..387e9c502 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Anything You Can Do, Better 2c563c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Anything You Can Do, Better 2c563c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538600 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60302\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 6,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"traits\": \"Innate. Developed.\",\n \"wildIcons\": 6,\n \"cycle\": \"Investigator\ + \ Packs\"\n}" GUID: 2c563c Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 3.81 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Anyu 1bf025.yaml b/unpacked/Bag All Player Cards 15bb07/Card Anyu 1bf025.yaml index 8d650106f..33522d30a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Anyu 1bf025.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Anyu 1bf025.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 452308 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4523': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Faithful Companion DragSelectable: true GMNotes: "{\n \"id\": \"08738\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Ally. Creature.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"Edge of the Earth\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Ally. Creature.\",\n \"agilityIcons\": 1,\n\ + \ \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 1bf025 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 78.59 posY: 3.33 posZ: 7.55 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.6 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Aquinnah (1) 9393ec.yaml b/unpacked/Bag All Player Cards 15bb07/Card Aquinnah (1) 9393ec.yaml index 840476156..18efbc205 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Aquinnah (1) 9393ec.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Aquinnah (1) 9393ec.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368841 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,8 @@ 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 \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"cycle\": \"Core\"\n}" + : 1,\n \"traits\": \"Ally.\",\n \"willpowerIcons\": 1,\n \"cycle\": \"Core\"\n\ + }" GUID: 9393ec Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 269.99 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Aquinnah (3) fb9dbb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Aquinnah (3) fb9dbb.yaml index df67dc47f..d04c0ad5d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Aquinnah (3) fb9dbb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Aquinnah (3) fb9dbb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368861 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,9 +21,8 @@ Description: The Forgotten Daughter DragSelectable: true GMNotes: "{\n \"id\": \"02308\",\n \"alternate_ids\": [\n \"01691\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 4,\n \"level\"\ - : 3,\n \"traits\": \"Ally.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\ - \n}" + : 3,\n \"traits\": \"Ally.\",\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n\ + \ \"cycle\": \"The Dunwich Legacy\"\n}" GUID: fb9dbb Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 + rotX: 0.0 rotY: 270.0 - rotZ: 0.01 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arbiter of Fates 4fbdb2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arbiter of Fates 4fbdb2.yaml index 7821de69f..9b4966cc2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arbiter of Fates 4fbdb2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arbiter of Fates 4fbdb2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538700 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60402\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Talent.\",\n \"willpowerIcons\": 1,\n \"agilityIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 4fbdb2 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: - posX: 9.02 + posX: 9.03 posY: 3.88 posZ: -16.7 - rotX: 359.78 - rotY: 269.99 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arcane Enlightenment e69708.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arcane Enlightenment e69708.yaml index 81b0d9c71..393de27eb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arcane Enlightenment e69708.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arcane Enlightenment e69708.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538803 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60205\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ritual.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"Investigator Packs\"\n}" GUID: e69708 Grid: true GridProjection: false @@ -40,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.72 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arcane Initiate (3) 65b30d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arcane Initiate (3) 65b30d.yaml index acbb6c441..e379d403b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arcane Initiate (3) 65b30d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arcane Initiate (3) 65b30d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230349 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,12 +20,11 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03271\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 1,\n \"type\": \"Doom\",\n \"\ - token\": \"doom\"\n },\n {\n \"count\": 2,\n \"type\": \"Horror\"\ - ,\n \"token\": \"horror\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\ - \n}" + ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Ally. Sorcerer.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 1,\n \"\ + type\": \"Doom\",\n \"token\": \"doom\"\n },\n {\n \"count\": 2,\n\ + \ \"type\": \"Horror\",\n \"token\": \"horror\"\n }\n ],\n \"cycle\"\ + : \"The Path to Carcosa\"\n}" GUID: 65b30d Grid: true GridProjection: false @@ -43,16 +42,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.75 posZ: -16.69 - rotX: 359.95 - rotY: 270.01 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arcane Initiate 7307c4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arcane Initiate 7307c4.yaml index 480dc6319..065303d96 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arcane Initiate 7307c4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arcane Initiate 7307c4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230318 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01063\",\n \"alternate_ids\": [\n \"01563\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 0,\n\ - \ \"traits\": \"Ally. Sorcerer.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 1,\n \"type\"\ - : \"Doom\",\n \"token\": \"doom\"\n }\n ],\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Ally. Sorcerer.\",\n \"willpowerIcons\": 1,\n \"uses\": [\n \ + \ {\n \"count\": 1,\n \"type\": \"Doom\",\n \"token\": \"doom\"\ + \n }\n ],\n \"cycle\": \"Core\"\n}" GUID: 7307c4 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 32.98 - posY: 3.32 + posY: 3.33 posZ: -47.41 - rotX: 1.14 - rotY: 270.01 - rotZ: 1.69 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arcane Insight (4) 536b52.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arcane Insight (4) 536b52.yaml index 5fb14c0bb..d8c1f9ebb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arcane Insight (4) 536b52.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arcane Insight (4) 536b52.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430659 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03266\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\ - \n}" + ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \ + \ \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ + : \"The Path to Carcosa\"\n}" GUID: 536b52 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 - posY: 4.87 + posY: 4.88 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arcane Research e425d0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arcane Research e425d0.yaml index 509f09fda..451dff0f3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arcane Research e425d0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arcane Research e425d0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230315 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04109\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"The Forgotten Age\"\n}" GUID: e425d0 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 5.03 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies (2) 644af9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies (2) 644af9.yaml index 30a7d1002..b8349fbba 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies (2) 644af9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies (2) 644af9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230340 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"50007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"intellectIcons\"\ - : 2,\n \"cycle\": \"Return to the Night of the Zealot\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 2,\n \"intellectIcons\": 2,\n \"cycle\": \"Return to the Night of the Zealot\"\ + \n}" GUID: 644af9 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.1 posY: 3.71 posZ: -16.72 - rotX: 0.04 - rotY: 269.86 - rotZ: 359.94 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies (4) ca23d4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies (4) ca23d4.yaml index bc90f6f3e..f78ef31f1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies (4) ca23d4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies (4) ca23d4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538726 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60428\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"intellectIcons\"\ - : 2,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Resource\",\n\ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\ - \n}" + ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 2,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \ + \ \"replenish\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\ + \n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" GUID: ca23d4 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.06 posY: 3.92 posZ: -16.71 - rotX: 0.25 - rotY: 269.93 - rotZ: 359.81 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies 9e4505.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies 9e4505.yaml index 93f614b3f..de0ddda9f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies 9e4505.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arcane Studies 9e4505.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230324 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01062\",\n \"alternate_ids\": [\n \"01562\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 2,\n \"level\": 0,\n\ - \ \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \ - \ \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Talent.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n\ + \ \"cycle\": \"Core\"\n}" GUID: 9e4505 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 32.98 - posY: 3.32 + posY: 3.33 posZ: -47.41 - rotX: 1.15 - rotY: 270.01 - rotZ: 1.7 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) 3d35aa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) 3d35aa.yaml index be9d0a8fb..fb2be1925 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) 3d35aa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) 3d35aa.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430653 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: Prophecy Foretold DragSelectable: true GMNotes: "{\n \"id\": \"03193\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\ - \n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"\ + type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + The Path to Carcosa\"\n}" GUID: 3d35aa Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.08 posY: 3.69 posZ: -16.71 - rotX: 0.01 - rotY: 269.9 - rotZ: 359.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) 66d5a3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) 66d5a3.yaml index 526df86ac..f8aa3d8c9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) 66d5a3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) 66d5a3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 441024 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4410': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: Markings of Isis DragSelectable: true GMNotes: "{\n \"id\": \"52004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the Path to Carcosa\"\ - \n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"\ + type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + Return to the Path to Carcosa\"\n}" GUID: 66d5a3 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.1 posY: 3.73 posZ: -16.72 - rotX: 0.08 - rotY: 269.85 - rotZ: 359.91 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) a14a11.yaml b/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) a14a11.yaml index 7f4edb3e0..5c76b1bb8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) a14a11.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs (3) a14a11.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430652 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: Guiding Stones DragSelectable: true GMNotes: "{\n \"id\": \"03192\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\ - \n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \ + \ \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ + : \"The Path to Carcosa\"\n}" GUID: a14a11 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.53 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs cbfc12.yaml b/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs cbfc12.yaml index 65c566842..e87e0146f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs cbfc12.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Archaic Glyphs cbfc12.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368420 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -21,8 +21,7 @@ Description: Untranslated DragSelectable: true GMNotes: "{\n \"id\": \"03025\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Item. Occult. Tome.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\"\ - : \"The Path to Carcosa\"\n}" + intellectIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: cbfc12 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.75 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 098132.yaml b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 098132.yaml index e38042453..e47287c24 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 098132.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 098132.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379034 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Gateway to Paradise DragSelectable: true GMNotes: "{\n \"id\": \"08044\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"wildIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Leyline\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"willpowerIcons\"\ + : 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\"\ + : \"Leyline\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge\ + \ of the Earth\"\n}" GUID: 098132 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.07 posZ: -16.74 - rotX: 359.94 - rotY: 269.8 - rotZ: 359.93 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 1fdf4c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 1fdf4c.yaml index b266a4553..174a66923 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 1fdf4c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 1fdf4c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379031 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Gateway to Tindalos DragSelectable: true GMNotes: "{\n \"id\": \"08041\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"wildIcons\": 1,\n \ - \ \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Leyline\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"combatIcons\"\ + : 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\"\ + : \"Leyline\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge\ + \ of the Earth\"\n}" GUID: 1fdf4c Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.16 posZ: -16.74 - rotX: 359.92 - rotY: 269.79 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 4b1b99.yaml b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 4b1b99.yaml index 60f5402f4..0ba38fcec 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 4b1b99.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 4b1b99.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379033 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Gateway to Aldebaran DragSelectable: true GMNotes: "{\n \"id\": \"08043\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"wildIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Leyline\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"agilityIcons\"\ + : 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\"\ + : \"Leyline\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge\ + \ of the Earth\"\n}" GUID: 4b1b99 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.06 posZ: -16.74 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 88ff66.yaml b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 88ff66.yaml index fb1abda41..b83ed00ae 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 88ff66.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits (4) 88ff66.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379032 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Gateway to Acheron DragSelectable: true GMNotes: "{\n \"id\": \"08042\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"wildIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Leyline\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"intellectIcons\"\ + : 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\"\ + : \"Leyline\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge\ + \ of the Earth\"\n}" GUID: 88ff66 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.08 posZ: -16.74 - rotX: 359.94 - rotY: 269.8 - rotZ: 359.93 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits 8023f5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits 8023f5.yaml index 057c5f78c..f99af05aa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits 8023f5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Archive of Conduits 8023f5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379023 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,8 +21,7 @@ Description: Unidentified DragSelectable: true GMNotes: "{\n \"id\": \"08033\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome. Occult.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"\ - Edge of the Earth\"\n}" + wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 8023f5 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.13 posZ: -16.74 - rotX: 359.91 - rotY: 269.79 - rotZ: 0.07 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ariadne's Twine (3) 27f6aa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ariadne's Twine (3) 27f6aa.yaml index 868af8f14..f80c57be0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ariadne's Twine (3) 27f6aa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ariadne's Twine (3) 27f6aa.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 589303 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5893': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07304\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 0,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Ritual.\",\n \"intellectIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 0,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\ + \n}" GUID: 27f6aa Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.45 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arm Injury 8f1420.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arm Injury 8f1420.yaml index 726800e90..75c604279 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arm Injury 8f1420.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arm Injury 8f1420.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378917 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"08130\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Injury.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Injury.\",\n \"weakness\": true,\n \"basicWeaknessCount\":\ + \ 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 8f1420 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.19 posY: 2.33 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Armageddon (4) 32e5a4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Armageddon (4) 32e5a4.yaml index 04f0f0fdc..11691b44f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Armageddon (4) 32e5a4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Armageddon (4) 32e5a4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 579606 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5796': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07226\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Spell. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Spell. Cursed.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"\ + type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + The Innsmouth Conspiracy\"\n}" GUID: 32e5a4 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 4.06 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Armageddon 3feff1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Armageddon 3feff1.yaml index 8ad6e9810..6e88947c4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Armageddon 3feff1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Armageddon 3feff1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553109 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5531': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07117\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Spell. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Spell. Cursed.\",\n \"combatIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\ + \n}" GUID: 3feff1 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 3.39 posZ: -16.73 - rotX: 359.94 - rotY: 269.8 - rotZ: 359.94 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Armor of Ardennes (5) f7a9ab.yaml b/unpacked/Bag All Player Cards 15bb07/Card Armor of Ardennes (5) f7a9ab.yaml index 565cf75a0..88a9bbd2c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Armor of Ardennes (5) f7a9ab.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Armor of Ardennes (5) f7a9ab.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226360 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03305\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Item. Armor. Relic.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"combatIcons\"\ - : 2,\n \"cycle\": \"The Path to Carcosa\"\n}" + willpowerIcons\": 2,\n \"combatIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\ + \n}" GUID: f7a9ab Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.04 posY: 3.9 posZ: -16.7 - rotX: 359.82 - rotY: 269.96 - rotZ: 0.08 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Arrogance b2e5b0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Arrogance b2e5b0.yaml index 9cca41b54..967381428 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Arrogance b2e5b0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Arrogance b2e5b0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538601 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"60303\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - wildIcons\": 1,\n \"negativeIcons\": true,\n \"cycle\": \"Investigator Packs\"\ - \n}" + ,\n \"traits\": \"Flaw.\",\n \"weakness\": true,\n \"wildIcons\": 1,\n \"negativeIcons\"\ + : true,\n \"cycle\": \"Investigator Packs\"\n}" GUID: b2e5b0 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 4.05 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Art Student 07a8f0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Art Student 07a8f0.yaml index 0ad1f65c5..04f8ce90a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Art Student 07a8f0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Art Student 07a8f0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368428 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02149\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 07a8f0 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.68 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card As you wish 4b891d.yaml b/unpacked/Bag All Player Cards 15bb07/Card As you wish 4b891d.yaml index f71c7eff4..e1cc91737 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card As you wish 4b891d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card As you wish 4b891d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587700 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5877': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09002\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 3,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"traits\": \"Practiced. Expert.\",\n \"wildIcons\": 3,\n \"cycle\": \"The\ + \ Scarlet Keys\"\n}" GUID: 4b891d Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 19.08 posY: 2.21 posZ: 59.52 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ashcan Pete 5294c3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ashcan Pete 5294c3.yaml index 033c132b3..5d6907aa4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ashcan Pete 5294c3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ashcan Pete 5294c3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449806 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4498': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.81 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ashcan Pete b8fd86.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ashcan Pete b8fd86.yaml index a19278dcd..88ade019d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ashcan Pete b8fd86.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ashcan Pete b8fd86.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 258909 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2589': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"02005-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"02005-m\",\n \"type\": \"Minicard\"\n}" GUID: b8fd86 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 2.17 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Astounding Revelation 7686cb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Astounding Revelation 7686cb.yaml index 5c3161a0f..b652baa81 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Astounding Revelation 7686cb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Astounding Revelation 7686cb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 441025 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4410': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06023\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 0,\n \"traits\": \"Research.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n\ - }" + ,\n \"level\": 0,\n \"traits\": \"Research.\",\n \"intellectIcons\": 1,\n \"\ + cycle\": \"The Dream-Eaters\"\n}" GUID: 7686cb Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.03 posY: 3.85 posZ: -16.7 - rotX: 359.77 - rotY: 269.99 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Astral Mirror (2) b5d894.yaml b/unpacked/Bag All Player Cards 15bb07/Card Astral Mirror (2) b5d894.yaml index e3f90002d..e329ab475 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Astral Mirror (2) b5d894.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Astral Mirror (2) b5d894.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379115 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09091\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Scarlet\ - \ Keys\"\n}" + ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"combatIcons\"\ + : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: b5d894 Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 16.74 posY: 3.35 posZ: 65.49 - rotX: 358.63 - rotY: 269.96 - rotZ: 2.62 + rotX: 359.0 + rotY: 270.0 + rotZ: 3.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Astral Travel 31d087.yaml b/unpacked/Bag All Player Cards 15bb07/Card Astral Travel 31d087.yaml index 09708031e..baff79209 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Astral Travel 31d087.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Astral Travel 31d087.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230312 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03034\",\n \"alternate_ids\": [\n \"60413\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 3,\n \"level\": 0,\n\ - \ \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"\ - willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\ - \n}" + \ \"traits\": \"Spell.\",\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \ + \ \"cycle\": \"The Path to Carcosa\"\n}" GUID: 31d087 Grid: true GridProjection: false @@ -47,8 +46,8 @@ Transform: posX: 9.09 posY: 3.71 posZ: -16.71 - rotX: 359.95 - rotY: 269.88 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Astronomical Atlas (3) 804397.yaml b/unpacked/Bag All Player Cards 15bb07/Card Astronomical Atlas (3) 804397.yaml index ff0c1798a..9147feab9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Astronomical Atlas (3) 804397.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Astronomical Atlas (3) 804397.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379057 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08067\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 2,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Tome.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: '804397' Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 78.51 posY: 1.06 posZ: 27.14 - rotX: 359.78 - rotY: 270.01 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card At a Crossroads (1) 48e90b.yaml b/unpacked/Bag All Player Cards 15bb07/Card At a Crossroads (1) 48e90b.yaml index 91e5b3659..85cbc37a9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card At a Crossroads (1) 48e90b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card At a Crossroads (1) 48e90b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379133 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09109\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 1,\n \"traits\": \"Dilemma. Insight.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"level\": 1,\n \"traits\": \"Dilemma. Insight.\",\n \"cycle\": \"The Scarlet\ + \ Keys\"\n}" GUID: 48e90b Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359.21 + rotX: 359.0 rotY: 270.0 - rotZ: 0.87 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Atychiphobia a3bc7a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Atychiphobia a3bc7a.yaml index 3eeac106d..2fc6991c1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Atychiphobia a3bc7a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Atychiphobia a3bc7a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550802 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"60504\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: a3bc7a Grid: true GridProjection: false @@ -43,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 9.0 - posY: 3.86 - posZ: -16.69 - rotX: 0.35 - rotY: 270.01 - rotZ: 359.91 + posY: 3.87 + posZ: -16.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Augur cf9ca8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Augur cf9ca8.yaml index 3414af12d..1755287ee 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Augur cf9ca8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Augur cf9ca8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 440626 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4406': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: cf9ca8 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.22 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card August Lindquist 83b588.yaml b/unpacked/Bag All Player Cards 15bb07/Card August Lindquist 83b588.yaml index 419487b12..afc13d61f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card August Lindquist 83b588.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card August Lindquist 83b588.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 312509 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3125': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Elegant and Elusive DragSelectable: true GMNotes: "{\n \"id\": \"05227\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Cultist. Silver Twilight.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"traits\": \"Cultist. Silver Twilight.\",\n \"cycle\": \"The Circle Undone\"\ + \n}" GUID: 83b588 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.08 posY: 3.72 posZ: -16.71 rotX: 0.0 - rotY: 269.9 - rotZ: 359.97 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Awakened Mantle e81861.yaml b/unpacked/Bag All Player Cards 15bb07/Card Awakened Mantle e81861.yaml index 45d676c90..a322c2110 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Awakened Mantle e81861.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Awakened Mantle e81861.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 451113 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4511': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07180\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Item. Relic. Clothing.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Item. Relic. Clothing.\",\n \"agilityIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: e81861 Grid: true GridProjection: false @@ -40,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.76 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Azure Flame (3) c5fb42.yaml b/unpacked/Bag All Player Cards 15bb07/Card Azure Flame (3) c5fb42.yaml index 1ba48554c..66a2ba18b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Azure Flame (3) c5fb42.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Azure Flame (3) c5fb42.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538723 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60425\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"\ + type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + Investigator Packs\"\n}" GUID: c5fb42 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.07 posY: 3.88 posZ: -16.71 - rotX: 0.36 - rotY: 269.93 - rotZ: 359.74 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Azure Flame (5) 0ee874.yaml b/unpacked/Bag All Player Cards 15bb07/Card Azure Flame (5) 0ee874.yaml index 0ee08ff35..61130f6ad 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Azure Flame (5) 0ee874.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Azure Flame (5) 0ee874.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538728 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60430\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 2,\n\ - \ \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 4,\n \"\ + type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + Investigator Packs\"\n}" GUID: 0ee874 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 3.95 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Azure Flame 17319c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Azure Flame 17319c.yaml index 64e417843..41ddf2cf1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Azure Flame 17319c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Azure Flame 17319c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538705 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60407\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"combatIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n\ + }" GUID: 17319c Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.74 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Backpack (2) 389a34.yaml b/unpacked/Bag All Player Cards 15bb07/Card Backpack (2) 389a34.yaml index 4d11afce5..1d8c15465 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Backpack (2) 389a34.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Backpack (2) 389a34.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545210 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5452': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"53011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Item.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\"\ - : \"Return to the Forgotten Age\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Item.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Return to the Forgotten Age\"\n}" GUID: 389a34 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.1 posY: 3.68 posZ: -16.71 - rotX: 359.94 - rotY: 269.87 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Backpack f59085.yaml b/unpacked/Bag All Player Cards 15bb07/Card Backpack f59085.yaml index 2c3830af8..357bb7921 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Backpack f59085.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Backpack f59085.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368517 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04037\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\ - \n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: f59085 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.02 posY: 4.04 posZ: -16.7 - rotX: 359.82 - rotY: 269.99 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Backstab (3) 7baf75.yaml b/unpacked/Bag All Player Cards 15bb07/Card Backstab (3) 7baf75.yaml index f23a64120..96091de60 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Backstab (3) 7baf75.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Backstab (3) 7baf75.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538627 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60329\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tactic.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 7baf75 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.68 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Backstab cdfd9f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Backstab cdfd9f.yaml index da4a56e01..dd13f4ed2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Backstab cdfd9f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Backstab cdfd9f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368716 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3687': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01051\",\n \"alternate_ids\": [\n \"01551\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 0,\n\ - \ \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \ - \ \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Tactic.\",\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"\ + cycle\": \"Core\"\n}" GUID: cdfd9f Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0.08 - rotY: 270.01 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bait and Switch (3) f9a232.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bait and Switch (3) f9a232.yaml index c73195827..db1d6cb99 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bait and Switch (3) f9a232.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bait and Switch (3) f9a232.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 590302 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5903': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05282\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 2,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}" GUID: f9a232 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.16 posY: 3.88 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bait and Switch 2c2d9a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bait and Switch 2c2d9a.yaml index 86048428c..d8806712f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bait and Switch 2c2d9a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bait and Switch 2c2d9a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368809 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02034\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 2c2d9a Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.78 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bandages b460e1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bandages b460e1.yaml index ec252875a..4c514eaf3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bandages b460e1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bandages b460e1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378902 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08073\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"\ - count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n\ - \ ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"agilityIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n\ + }" GUID: b460e1 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.91 posZ: -16.73 - rotX: 359.9 - rotY: 269.8 - rotZ: 0.1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bandolier (2) e8b7ad.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bandolier (2) e8b7ad.yaml index 7d4f16011..3eac2f35f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bandolier (2) e8b7ad.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bandolier (2) e8b7ad.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 314204 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3142': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"51001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\"\ - : \"Return to The Dunwich Legacy\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}" GUID: e8b7ad Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 3.96 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bandolier 82775a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bandolier 82775a.yaml index bf8fe5900..49094ee92 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bandolier 82775a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bandolier 82775a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226325 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02147\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\ - \n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"combatIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 82775a Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.08 posY: 3.73 posZ: -16.71 - rotX: 359.91 - rotY: 269.91 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bangle of Jinxes (1) a65852.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bangle of Jinxes (1) a65852.yaml index aca63eea8..b3b307ed3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bangle of Jinxes (1) a65852.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bangle of Jinxes (1) a65852.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378904 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08075\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Charm. Cursed.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 1,\n \"type\": \"Charge\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 1,\n \"type\"\ + : \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of\ + \ the Earth\"\n}" GUID: a65852 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.92 posZ: -16.73 - rotX: 359.91 - rotY: 269.8 - rotZ: 0.07 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Banish (1) a00fca.yaml b/unpacked/Bag All Player Cards 15bb07/Card Banish (1) a00fca.yaml index 6aeb8cc7c..bcfa46c31 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Banish (1) a00fca.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Banish (1) a00fca.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 277509 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2775': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05113\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: a00fca Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.16 posY: 3.52 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.94 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Baron Samedi 16ad5d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Baron Samedi 16ad5d.yaml index 8aa517551..a6806b4d7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Baron Samedi 16ad5d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Baron Samedi 16ad5d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527552 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5275': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05019\",\n \"alternate_ids\": [\n \"99003\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Avatar.\",\n\ - \ \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"The Circle Undone\"\ - \n}" + \ \"weakness\": true,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 16ad5d Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.69 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Barricade (3) 3689dd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Barricade (3) 3689dd.yaml index 2e1392c74..ee38d872a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Barricade (3) 3689dd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Barricade (3) 3689dd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 580901 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5809': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"50004\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Return to the Night of the Zealot\"\ - \n}" + ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Insight. Tactic.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Return to\ + \ the Night of the Zealot\"\n}" GUID: 3689dd Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 18.11 posY: 3.67 posZ: -56.75 - rotX: 332.67 - rotY: 269.6 - rotZ: 1.17 + rotX: 333.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Barricade edb554.yaml b/unpacked/Bag All Player Cards 15bb07/Card Barricade edb554.yaml index 46e6eea05..74dedeb72 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Barricade edb554.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Barricade edb554.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368404 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01038\",\n \"alternate_ids\": [\n \"01538\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"cost\": 0,\n \"level\": 0,\n\ - \ \"traits\": \"Insight. Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"\ - cycle\": \"Core\"\n}" + \ \"traits\": \"Insight. Tactic.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}" GUID: edb554 Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 18.66 posY: 3.38 posZ: -57.02 - rotX: 359.85 - rotY: 269.99 - rotZ: 0.38 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat (2) 567525.yaml b/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat (2) 567525.yaml index 275469728..331bff3a6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat (2) 567525.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat (2) 567525.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379137 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -21,7 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09113\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2\n}" + combatIcons\": 2,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: '567525' Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359.18 - rotY: 269.99 - rotZ: 0.9 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat 14d8ff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat 14d8ff.yaml index 6d7e457b4..c1cdf17b8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat 14d8ff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat 14d8ff.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587211 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5872': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01574\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\"\ - : \"Core\"\n}" + combatIcons\": 1,\n \"cycle\": \"Core\"\n}" GUID: 14d8ff Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 78.81 posY: 3.33 posZ: 7.67 - rotX: 359.66 + rotX: 0.0 rotY: 270.0 - rotZ: 0.35 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat 48e103.yaml b/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat 48e103.yaml index 3b2a5866f..f7a36d647 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat 48e103.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Baseball Bat 48e103.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368830 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01074\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\"\ - : \"Core\"\n}" + combatIcons\": 1,\n \"cycle\": \"Core\"\n}" GUID: 48e103 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.04 posY: 3.91 posZ: -16.7 - rotX: 359.83 - rotY: 269.96 - rotZ: 0.07 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bauta 9c9196.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bauta 9c9196.yaml index 08bfde5f6..1c70f8a9f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bauta 9c9196.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bauta 9c9196.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 295601 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2956': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"82023\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"\ - Standalone\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Item. Mask.\",\n \"combatIcons\": 1,\n \"wildIcons\"\ + : 1,\n \"cycle\": \"Standalone\"\n}" GUID: 9c9196 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.01 posY: 3.67 posZ: -16.7 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bear Trap 74840a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bear Trap 74840a.yaml index 8cf8ff0ff..0905b30c4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bear Trap 74840a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bear Trap 74840a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 454100 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4541': BackIsHidden: true @@ -20,8 +20,7 @@ CustomDeck: Description: Trap. DragSelectable: true GMNotes: "{\n \"id\": \"81020\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Trap.\",\n \"permanent\": false,\n \"weakness\": false,\n \ - \ \"cycle\": \"Standalone\"\n}" + ,\n \"traits\": \"Trap.\",\n \"cycle\": \"Standalone\"\n}" GUID: 74840a Grid: true GridProjection: false @@ -39,16 +38,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 - posY: 5.3 + posY: 5.29 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Beat Cop (2) 7001be.yaml b/unpacked/Bag All Player Cards 15bb07/Card Beat Cop (2) 7001be.yaml index 1118888ae..d686c2374 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Beat Cop (2) 7001be.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Beat Cop (2) 7001be.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226348 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01028\",\n \"alternate_ids\": [\n \"01528\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\"\ - : 2,\n \"traits\": \"Ally. Police.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n\ - }" + : 2,\n \"traits\": \"Ally. Police.\",\n \"combatIcons\": 1,\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"Core\"\n}" GUID: 7001be Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 81.46 posY: 2.32 posZ: 6.07 rotX: 0.0 - rotY: 270.01 - rotZ: 3.2 + rotY: 270.0 + rotZ: 3.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Beat Cop 7d4749.yaml b/unpacked/Bag All Player Cards 15bb07/Card Beat Cop 7d4749.yaml index c3e7af944..c5c43e1f2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Beat Cop 7d4749.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Beat Cop 7d4749.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226331 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01018\",\n \"alternate_ids\": [\n \"01518\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 4,\n \"level\"\ - : 0,\n \"traits\": \"Ally. Police.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}" + : 0,\n \"traits\": \"Ally. Police.\",\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\ + \n}" GUID: 7d4749 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 77.85 posY: 4.47 posZ: 27.06 - rotX: 302.34 - rotY: 270.26 - rotZ: 358.99 + rotX: 302.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Becky 587589.yaml b/unpacked/Bag All Player Cards 15bb07/Card Becky 587589.yaml index 72569da3f..e68e54dca 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Becky 587589.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Becky 587589.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 581200 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5812': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Custom Marlin Model 1894 DragSelectable: true GMNotes: "{\n \"id\": \"06006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Ammo\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"\ + count\": 2,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n \ + \ ],\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: '587589' Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.04 posY: 3.9 posZ: -16.7 - rotX: 359.86 - rotY: 269.97 - rotZ: 0.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Belly of the Beast dffa9d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Belly of the Beast dffa9d.yaml index 235a4302a..362bfa5e0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Belly of the Beast dffa9d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Belly of the Beast dffa9d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 277911 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2779': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05160\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Gambit. Trick.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Gambit. Trick.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: dffa9d Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.16 posY: 3.89 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Beloved b4666d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Beloved b4666d.yaml index aa7437a53..ebfd7806f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Beloved b4666d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Beloved b4666d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587030 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5870': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07036\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate. Blessed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"\ - wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate. Blessed.\",\n \"willpowerIcons\": 1,\n\ + \ \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\ + \n}" GUID: b4666d Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 8.97 posY: 3.67 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Beretta M1918 (4) 91da6b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Beretta M1918 (4) 91da6b.yaml index ac7bf07ca..33c2b6d8e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Beretta M1918 (4) 91da6b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Beretta M1918 (4) 91da6b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538629 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -21,10 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60331\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"\ - agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"\ - Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"combatIcons\": 2,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"\ + count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n \ + \ ],\n \"cycle\": \"Investigator Packs\"\n}" GUID: 91da6b Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 4.03 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bestow Resolve (2) 39e14a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bestow Resolve (2) 39e14a.yaml index 5184f0ebc..1682dac4e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bestow Resolve (2) 39e14a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bestow Resolve (2) 39e14a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379025 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09032\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ]\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 39e14a Grid: true GridProjection: false @@ -45,12 +44,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 17.03 + posX: 17.02 posY: 3.35 posZ: 65.98 - rotX: 357.78 - rotY: 270.03 - rotZ: 358.69 + rotX: 358.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bind Monster (2) ba1460.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bind Monster (2) ba1460.yaml index 75effd1a3..ec79afeae 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bind Monster (2) ba1460.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bind Monster (2) ba1460.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230347 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02031\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: ba1460 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 4.85 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Binder's Jar (1) c72750.yaml b/unpacked/Bag All Player Cards 15bb07/Card Binder's Jar (1) c72750.yaml index 79a18b05f..f30bf536d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Binder's Jar (1) c72750.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Binder's Jar (1) c72750.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379113 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Interdimensional Prison DragSelectable: true GMNotes: "{\n \"id\": \"09089\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1\n}" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: c72750 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 16.67 posY: 3.37 posZ: 65.93 - rotX: 359.33 - rotY: 270.01 - rotZ: 359.27 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bizarre Diagnosis 2423d4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bizarre Diagnosis 2423d4.yaml index ea7becd1b..a6833042c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bizarre Diagnosis 2423d4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bizarre Diagnosis 2423d4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379039 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09046\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight. Science.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight. Science.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 2423d4 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 357.62 - rotY: 270.06 - rotZ: 357.41 + rotX: 358.0 + rotY: 270.0 + rotZ: 357.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Black Market (2) (Taboo) 8e4d23.yaml b/unpacked/Bag All Player Cards 15bb07/Card Black Market (2) (Taboo) 8e4d23.yaml index 6040fd2c5..0b3d62c9a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Black Market (2) (Taboo) 8e4d23.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Black Market (2) (Taboo) 8e4d23.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558215 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08055-t\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Favor.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Favor.\",\n \"cycle\": \"Edge\ + \ of the Earth\"\n}" GUID: 8e4d23 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 21.61 posY: 4.32 posZ: -54.31 - rotX: 0.17 - rotY: 269.82 - rotZ: 2.9 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Black Market (2) 20da53.yaml b/unpacked/Bag All Player Cards 15bb07/Card Black Market (2) 20da53.yaml index fac6c4a4e..8502b9a7c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Black Market (2) 20da53.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Black Market (2) 20da53.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379045 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08055\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Favor.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Favor.\",\n \"cycle\": \"Edge\ + \ of the Earth\"\n}" GUID: 20da53 Grid: true GridProjection: false @@ -44,10 +44,10 @@ Tooltip: true Transform: posX: 9.19 posY: 2.22 - posZ: -16.74 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blackjack (2) 37a2b5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blackjack (2) 37a2b5.yaml index 1a9688c4d..3cbb80fd2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blackjack (2) 37a2b5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blackjack (2) 37a2b5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 314105 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3141': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"51002\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}" + combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Return to The Dunwich\ + \ Legacy\"\n}" GUID: 37a2b5 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.71 posZ: -16.69 - rotX: 359.93 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blackjack 097dcc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blackjack 097dcc.yaml index 9a95e737b..a52285710 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blackjack 097dcc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blackjack 097dcc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226321 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02016\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\"\ - : \"The Dunwich Legacy\"\n}" + combatIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 097dcc Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.08 posY: 3.73 posZ: -16.71 - rotX: 359.93 - rotY: 269.91 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blade of Ark'at e89f48.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blade of Ark'at e89f48.yaml index 66f5cb688..b254a3bf0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blade of Ark'at e89f48.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blade of Ark'at e89f48.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 582629 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5826': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Shellblade Tribute DragSelectable: true GMNotes: "{\n \"id\": \"86054\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"wildIcons\": 1,\n \ - \ \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"combatIcons\"\ + : 2,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}" GUID: e89f48 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.74 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blessed Blade cf4571.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blessed Blade cf4571.yaml index 7e89e7187..1734c68c9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blessed Blade cf4571.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blessed Blade cf4571.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 581612 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5816': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee. Blessed.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: cf4571 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.04 posY: 3.91 posZ: -16.7 - rotX: 359.84 - rotY: 269.96 - rotZ: 0.07 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blessing of Isis (3) 205385.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blessing of Isis (3) 205385.yaml index 8ac8c15aa..e620e14bf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blessing of Isis (3) 205385.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blessing of Isis (3) 205385.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 580801 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5808': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07190\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Ritual. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth\ - \ Conspiracy\"\n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Ritual. Blessed.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: '205385' Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 5.2 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blinding Light (2) 8254d4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blinding Light (2) 8254d4.yaml index 88cd0674a..1bba141d6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blinding Light (2) 8254d4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blinding Light (2) 8254d4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230342 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01069\",\n \"alternate_ids\": [\n \"01569\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 2,\n\ - \ \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"\ - willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Spell.\",\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \ + \ \"cycle\": \"Core\"\n}" GUID: 8254d4 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 34.13 posY: 3.38 posZ: -45.55 - rotX: 0.06 - rotY: 269.99 - rotZ: 359.2 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blinding Light 30f860.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blinding Light 30f860.yaml index 5c28caeab..49e7756aa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blinding Light 30f860.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blinding Light 30f860.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230311 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01066\",\n \"alternate_ids\": [\n \"01566\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 2,\n \"level\": 0,\n\ - \ \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"\ - willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Spell.\",\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \ + \ \"cycle\": \"Core\"\n}" GUID: 30f860 Grid: true GridProjection: false @@ -43,12 +43,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 33.82 + posX: 33.83 posY: 3.38 posZ: -45.84 - rotX: 0.28 - rotY: 269.98 - rotZ: 359.23 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blood Eclipse (1) 5efc92.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blood Eclipse (1) 5efc92.yaml index d2e62050b..0d21317be 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blood Eclipse (1) 5efc92.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blood Eclipse (1) 5efc92.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545200 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5452': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"53001\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Spell. Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"Return to the Forgotten Age\"\n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Spell. Spirit.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"Return to the Forgotten Age\"\n}" GUID: 5efc92 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.06 posY: 3.87 posZ: -16.71 - rotX: 0.22 - rotY: 269.93 - rotZ: 359.83 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blood Eclipse (3) 53d765.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blood Eclipse (3) 53d765.yaml index 1cc9b9c02..fa25e9de4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blood Eclipse (3) 53d765.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blood Eclipse (3) 53d765.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 314000 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3140': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04266\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spell. Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spell. Spirit.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 53d765 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 4.18 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blood Pact (3) 64e131.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blood Pact (3) 64e131.yaml index 3a9d45106..637c98196 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blood Pact (3) 64e131.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blood Pact (3) 64e131.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230348 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,7 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02191\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ ,\n \"level\": 3,\n \"traits\": \"Spell. Pact.\",\n \"permanent\": true,\n \"\ - weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\n}" + cycle\": \"The Dunwich Legacy\"\n}" GUID: 64e131 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.85 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blood Pact fc709b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blood Pact fc709b.yaml index a86d9c2bc..19dedac3a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blood Pact fc709b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blood Pact fc709b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232106 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2321': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07158\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell. Pact.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell. Pact.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: fc709b Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.0 - posY: 3.8 + posY: 3.81 posZ: -16.69 - rotX: 0.17 - rotY: 270.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blood Will Have Blood (2) e81f1e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blood Will Have Blood (2) e81f1e.yaml index 7fd8f66bd..3c2422c94 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blood Will Have Blood (2) e81f1e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blood Will Have Blood (2) e81f1e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378908 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08079\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Pact. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Pact. Cursed.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: e81f1e Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.18 posY: 2.93 posZ: -16.73 - rotX: 359.91 - rotY: 269.8 - rotZ: 0.07 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blood-Rite eafd12.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blood-Rite eafd12.yaml index 7bf3e9daf..66363717a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blood-Rite eafd12.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blood-Rite eafd12.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 591621 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5916': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05317\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"combatIcons\"\ - : 1,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Spell.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: eafd12 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.15 posY: 4.06 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bloodlust aafc17.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bloodlust aafc17.yaml index 7172102f0..e5ed03a8d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bloodlust aafc17.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bloodlust aafc17.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 440925 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4409': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Treachery DragSelectable: true GMNotes: "{\n \"id\": \"06019\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"The Dream-Eaters\"\ + \n}" GUID: aafc17 Grid: true GridProjection: false @@ -45,8 +45,8 @@ Transform: posX: 9.15 posY: 3.99 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bloodstained Dagger d71f11.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bloodstained Dagger d71f11.yaml index af34ac367..a67e677a2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bloodstained Dagger d71f11.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bloodstained Dagger d71f11.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 274100 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2741': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: The Murder Weapon DragSelectable: true GMNotes: "{\n \"id\": \"84006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Item. Weapon. Melee. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\ - \n}" + ,\n \"cost\": 1,\n \"traits\": \"Item. Weapon. Melee. Cursed.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"Standalone\"\n}" GUID: d71f11 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.9 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blur (1) 5be76d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blur (1) 5be76d.yaml index 6162e8a47..2caf8750c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blur (1) 5be76d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blur (1) 5be76d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378947 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08109\",\n \"type\": \"Asset\",\n \"class\": \"Rogue|Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"agilityIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n\ + }" GUID: 5be76d Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 posY: 3.76 posZ: -16.69 - rotX: 359.75 - rotY: 270.01 - rotZ: 0.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Blur (4) 5ade28.yaml b/unpacked/Bag All Player Cards 15bb07/Card Blur (4) 5ade28.yaml index 8df022df2..8e27e017e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Blur (4) 5ade28.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Blur (4) 5ade28.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378949 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08111\",\n \"type\": \"Asset\",\n \"class\": \"Rogue|Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n\ - }" + ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"\ + type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + Edge of the Earth\"\n}" GUID: 5ade28 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.34 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bob Jenkins 419b0c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bob Jenkins 419b0c.yaml index 7f4395baf..16f64671f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bob Jenkins 419b0c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bob Jenkins 419b0c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379504 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3795': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.92 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bob Jenkins aa1c23.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bob Jenkins aa1c23.yaml index 220289ed9..9cd3b1aa7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bob Jenkins aa1c23.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bob Jenkins aa1c23.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379200 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3792': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"08016-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"08016-m\",\n \"type\": \"Minicard\"\n}" GUID: aa1c23 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 2.16 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bolas d4b254.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bolas d4b254.yaml index f15e7eada..9d46082f9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bolas d4b254.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bolas d4b254.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379018 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09025\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1\n\ - }" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: d4b254 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 11.77 posY: 2.2 posZ: 49.52 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bonesaw 4b371d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bonesaw 4b371d.yaml index 052582588..43ab044c1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bonesaw 4b371d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bonesaw 4b371d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587702 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5877': BackIsHidden: true @@ -19,10 +19,10 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09005\",\n \"type\": \"Asset\",\n \"cost\": 3,\n \"traits\"\ - : \"Item. Tool. Melee.\",\n \"permanent\": false,\n \"weakness\": false,\n \"\ - intellectIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"\ - The Scarlet Keys\"\n}" +GMNotes: "{\n \"id\": \"09005\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ + ,\n \"cost\": 3,\n \"traits\": \"Item. Tool. Melee.\",\n \"intellectIcons\":\ + \ 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\ + \n}" GUID: 4b371d Grid: true GridProjection: false @@ -47,9 +47,9 @@ Transform: posX: 17.43 posY: 2.21 posZ: 59.48 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bonnie Walsh 634e9e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bonnie Walsh 634e9e.yaml index f53db2096..221d81698 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bonnie Walsh 634e9e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bonnie Walsh 634e9e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379012 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -19,9 +19,9 @@ CustomDeck: UniqueBack: false Description: Loyal Assistant DragSelectable: true -GMNotes: "{\n \"id\": \"09019\",\n \"type\": \"Asset\",\n \"cost\": 3,\n \"traits\"\ - : \"Ally. Civic. Assistant.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"wildIcons\": 2,\n \"cycle\": \"The Scarlet Keys\"\n}" +GMNotes: "{\n \"id\": \"09019\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ + ,\n \"cost\": 3,\n \"traits\": \"Ally. Civic. Assistant.\",\n \"wildIcons\":\ + \ 2,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 634e9e Grid: true GridProjection: false @@ -43,12 +43,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 10.41 + posX: 10.4 posY: 2.2 posZ: 46.18 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Book of Psalms cc1ef3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Book of Psalms cc1ef3.yaml index 7c15c1d9c..fc150514d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Book of Psalms cc1ef3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Book of Psalms cc1ef3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 588011 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5880': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07017\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tome. Blessed.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + willpowerIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\"\ + : \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth\ + \ Conspiracy\"\n}" GUID: cc1ef3 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.11 posY: 3.84 posZ: -16.72 - rotX: 359.97 - rotY: 269.84 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Book of Shadows (1) 35166c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Book of Shadows (1) 35166c.yaml index e139dec1d..33d5b9b30 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Book of Shadows (1) 35166c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Book of Shadows (1) 35166c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230336 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03154\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 35166c Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.03 posY: 3.69 posZ: -16.7 - rotX: 359.82 - rotY: 269.98 - rotZ: 0.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Book of Shadows (3) 296dc8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Book of Shadows (3) 296dc8.yaml index 7dda7edee..a6d02c53a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Book of Shadows (3) 296dc8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Book of Shadows (3) 296dc8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230354 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01070\",\n \"alternate_ids\": [\n \"01570\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 4,\n \"level\": 3,\n\ - \ \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Item. Tome.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"Core\"\n}" GUID: 296dc8 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 32.98 posY: 3.63 posZ: -47.41 - rotX: 348.72 - rotY: 269.89 - rotZ: 1.24 + rotX: 349.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Borrowed Time (3) 0db666.yaml b/unpacked/Bag All Player Cards 15bb07/Card Borrowed Time (3) 0db666.yaml index ceb3c47e0..4b9c5a958 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Borrowed Time (3) 0db666.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Borrowed Time (3) 0db666.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315253 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04308\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Ritual.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 0db666 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.17 posY: 3.11 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bought in Blood 275dc3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bought in Blood 275dc3.yaml index 3651c971a..cd6ec41dd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bought in Blood 275dc3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bought in Blood 275dc3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 377141 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3771': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - cycle\": \"The Forgotten Age\"\n}" + ,\n \"traits\": \"Flaw.\",\n \"weakness\": true,\n \"cycle\": \"The Forgotten\ + \ Age\"\n}" GUID: 275dc3 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.1 posY: 3.74 posZ: -16.72 - rotX: 0.06 - rotY: 269.86 - rotZ: 359.93 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bounty Contracts 4d9b32.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bounty Contracts 4d9b32.yaml index dbb73269d..de6762d00 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bounty Contracts 4d9b32.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bounty Contracts 4d9b32.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 582204 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5822': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ ,\n \"startsInPlay\": true,\n \"traits\": \"Job.\",\n \"permanent\": true,\n\ - \ \"weakness\": false,\n \"uses\": [\n {\n \"count\": 6,\n \"type\"\ - : \"Bounty\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + \ \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Bounty\",\n \"\ + token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 4d9b32 Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.04 posY: 3.91 posZ: -16.7 - rotX: 359.84 - rotY: 269.96 - rotZ: 0.07 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Boxing Gloves (3) 54293e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Boxing Gloves (3) 54293e.yaml index 5ed24483f..c76cc0db5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Boxing Gloves (3) 54293e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Boxing Gloves (3) 54293e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545325 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60127\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Weapon.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Weapon.\",\n \"combatIcons\"\ + : 2,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 54293e Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 3.0 posZ: -16.73 - rotX: 0.05 - rotY: 269.8 - rotZ: 359.31 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Boxing Gloves db4a43.yaml b/unpacked/Bag All Player Cards 15bb07/Card Boxing Gloves db4a43.yaml index 311d17aff..7bc076c51 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Boxing Gloves db4a43.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Boxing Gloves db4a43.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545303 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60105\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon.\",\n \"combatIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: db4a43 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.12 posY: 4.07 posZ: -16.72 - rotX: 0.06 - rotY: 269.82 - rotZ: 359.93 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Brand of Cthugha (1) 0fff60.yaml b/unpacked/Bag All Player Cards 15bb07/Card Brand of Cthugha (1) 0fff60.yaml index ac5f6b0e0..c4752e746 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Brand of Cthugha (1) 0fff60.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Brand of Cthugha (1) 0fff60.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378928 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08090\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 6,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"combatIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n\ + }" GUID: 0fff60 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.19 posY: 2.53 posZ: -16.73 - rotX: 359.88 - rotY: 269.8 - rotZ: 0.22 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Brand of Cthugha (4) 200b64.yaml b/unpacked/Bag All Player Cards 15bb07/Card Brand of Cthugha (4) 200b64.yaml index 3c5c43916..1715f8c88 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Brand of Cthugha (4) 200b64.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Brand of Cthugha (4) 200b64.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378930 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08092\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 9,\n \"type\": \"Charge\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 9,\n \"\ + type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + Edge of the Earth\"\n}" GUID: 200b64 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.19 posY: 2.52 posZ: -16.73 - rotX: 359.88 - rotY: 269.8 - rotZ: 0.22 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Breach the Door 74969c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Breach the Door 74969c.yaml index 62f44a2d4..799cc7883 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Breach the Door 74969c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Breach the Door 74969c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379019 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09026\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Tactic. Police.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"\ - combatIcons\": 1\n}" + \ \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\ + \n}" GUID: 74969c Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 11.58 posY: 2.2 posZ: 52.95 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Breaking and Entering (2) 3411dd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Breaking and Entering (2) 3411dd.yaml index 38fe15918..db1961187 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Breaking and Entering (2) 3411dd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Breaking and Entering (2) 3411dd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379067 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09074\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Trick.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 3411dd Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 359.53 - rotY: 270.01 - rotZ: 359.49 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Breaking and Entering 31cfbf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Breaking and Entering 31cfbf.yaml index 003ab9c2c..e73ff4d1c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Breaking and Entering 31cfbf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Breaking and Entering 31cfbf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553106 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5531': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07114\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 31cfbf Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 3.9 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Brother Xavier (1) 3c9617.yaml b/unpacked/Bag All Player Cards 15bb07/Card Brother Xavier (1) 3c9617.yaml index 23f180cb4..14d2c2f7c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Brother Xavier (1) 3c9617.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Brother Xavier (1) 3c9617.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226340 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Pure of Spirit DragSelectable: true GMNotes: "{\n \"id\": \"02106\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 5,\n \"level\": 1,\n \"traits\": \"Ally. \",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 5,\n \"level\": 1,\n \"traits\": \"Ally. \",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 3c9617 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.07 posY: 3.76 posZ: -16.71 - rotX: 0.5 - rotY: 269.92 - rotZ: 359.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bruiser (3) 8ec9cb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bruiser (3) 8ec9cb.yaml index 07d69e64f..b881f90e8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bruiser (3) 8ec9cb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bruiser (3) 8ec9cb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378960 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08122\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue|Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"combatIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 2,\n \"replenish\": 2,\n \ + \ \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ + : \"Edge of the Earth\"\n}" GUID: 8ec9cb Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.91 posZ: -16.73 - rotX: 359.9 - rotY: 269.8 - rotZ: 0.11 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Brute Force (1) fb9b7e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Brute Force (1) fb9b7e.yaml index 84af5b15d..4decfb0e6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Brute Force (1) fb9b7e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Brute Force (1) fb9b7e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 380230 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3802': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06166\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 1,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"level\": 1,\n \"traits\": \"Innate. Developed.\",\n \"combatIcons\": 1,\n\ + \ \"cycle\": \"The Dream-Eaters\"\n}" GUID: fb9b7e Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.82 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bulletproof Vest (3) c4cf62.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bulletproof Vest (3) c4cf62.yaml index 0ecf8371a..d7d8610d4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bulletproof Vest (3) c4cf62.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bulletproof Vest (3) c4cf62.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368521 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01094\",\n \"alternate_ids\": [\n \"01594\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"level\":\ - \ 3,\n \"traits\": \"Item. Armor.\",\n \"permanent\": false,\n \"weakness\":\ - \ false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ 3,\n \"traits\": \"Item. Armor.\",\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n\ + \ \"cycle\": \"Core\"\n}" GUID: c4cf62 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 269.99 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Burden of Destiny 45c19e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Burden of Destiny 45c19e.yaml index 8e188ac5c..9837309c9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Burden of Destiny 45c19e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Burden of Destiny 45c19e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379007 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"08015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Flaw.\",\n \"weakness\": true,\n \"cycle\": \"Edge of the Earth\"\ + \n}" GUID: 45c19e Grid: true GridProjection: false @@ -44,10 +44,10 @@ Tooltip: true Transform: posX: 9.2 posY: 2.6 - posZ: -16.74 - rotX: 359.99 - rotY: 269.8 - rotZ: 359.62 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Burden of Leadership 22e624.yaml b/unpacked/Bag All Player Cards 15bb07/Card Burden of Leadership 22e624.yaml index b2c581282..25905184f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Burden of Leadership 22e624.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Burden of Leadership 22e624.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379013 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09020\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - cycle\": \"The Scarlet Keys\"\n}" + ,\n \"traits\": \"Flaw.\",\n \"weakness\": true,\n \"cycle\": \"The Scarlet Keys\"\ + \n}" GUID: 22e624 Grid: true GridProjection: false @@ -39,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- ScenarioCard +- PlayerCard Tooltip: true Transform: posX: 11.29 posY: 2.2 posZ: 45.06 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Burglary (2) 2aeb8a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Burglary (2) 2aeb8a.yaml index 1490ed1e9..fdc4f24b2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Burglary (2) 2aeb8a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Burglary (2) 2aeb8a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 447631 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4476': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06200\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Talent. Illicit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Talent. Illicit.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 2aeb8a Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 4.06 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Burglary 5d04a1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Burglary 5d04a1.yaml index 6cbe3021a..205d7a308 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Burglary 5d04a1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Burglary 5d04a1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587206 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5872': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01545\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Talent. Illicit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\ - \n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Talent. Illicit.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"Core\"\n}" GUID: 5d04a1 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 78.81 posY: 3.32 - posZ: 7.66 - rotX: 359.19 - rotY: 269.99 - rotZ: 0.77 + posZ: 7.67 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Burglary bc3451.yaml b/unpacked/Bag All Player Cards 15bb07/Card Burglary bc3451.yaml index 29d57453e..be8473147 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Burglary bc3451.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Burglary bc3451.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368622 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3686': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01045\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Talent. Illicit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\ - \n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Talent. Illicit.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"Core\"\n}" GUID: bc3451 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.75 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Buried Secrets 28080d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Buried Secrets 28080d.yaml index 66bed5a7f..a0930849b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Buried Secrets 28080d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Buried Secrets 28080d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379006 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"08009\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Mystery.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Mystery.\",\n \"weakness\": true,\n \"cycle\": \"Edge of the\ + \ Earth\"\n}" GUID: 28080d Grid: true GridProjection: false @@ -46,8 +46,8 @@ Transform: posY: 2.67 posZ: -16.73 rotX: 0.0 - rotY: 269.8 - rotZ: 359.57 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Burn After Reading (1) eedd0b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Burn After Reading (1) eedd0b.yaml index 4f85d823c..f7165f9c8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Burn After Reading (1) eedd0b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Burn After Reading (1) eedd0b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378905 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08076\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the\ - \ Earth\"\n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: eedd0b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.18 posY: 2.9 posZ: -16.73 - rotX: 359.91 - rotY: 269.8 - rotZ: 0.09 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Burning the Midnight Oil 0d29be.yaml b/unpacked/Bag All Player Cards 15bb07/Card Burning the Midnight Oil 0d29be.yaml index 34b485df4..cbb755aea 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Burning the Midnight Oil 0d29be.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Burning the Midnight Oil 0d29be.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538812 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60214\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 0d29be Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 4.33 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Bury Them Deep e6efe6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Bury Them Deep e6efe6.yaml index 525ca95a8..79caced4d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Bury Them Deep e6efe6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Bury Them Deep e6efe6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 431818 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4318': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03016\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"victory\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Task.\",\n \"willpowerIcons\": 1,\n \"combatIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"victory\": 1,\n \"cycle\": \"The Path to Carcosa\"\ + \n}" GUID: e6efe6 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 9.11 posY: 3.76 posZ: -16.72 - rotX: 359.93 - rotY: 269.85 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Butterfly Effect (1) 22fc6c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Butterfly Effect (1) 22fc6c.yaml index c6d553f36..13528b2ee 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Butterfly Effect (1) 22fc6c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Butterfly Effect (1) 22fc6c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232108 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2321': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07160\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Paradox. Blessed. Cursed.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Innsmouth Conspiracy\"\n}" + ,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 22fc6c Grid: true GridProjection: false @@ -43,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.03 + posX: 9.04 posY: 3.78 posZ: -16.7 - rotX: 359.9 - rotY: 269.97 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Butterfly Swords (2) 5779d3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Butterfly Swords (2) 5779d3.yaml index e0d47eb20..1552e1888 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Butterfly Swords (2) 5779d3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Butterfly Swords (2) 5779d3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379015 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08025\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"cycle\": \"Edge of the Earth\"\n}" + combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 5779d3 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 posY: 3.82 posZ: -16.69 - rotX: 359.72 - rotY: 270.01 - rotZ: 0.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Butterfly Swords (5) 0a312f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Butterfly Swords (5) 0a312f.yaml index aa7c26544..8f844332c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Butterfly Swords (5) 0a312f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Butterfly Swords (5) 0a312f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379020 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08030\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Weapon. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" + combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"\ + Edge of the Earth\"\n}" GUID: 0a312f Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.26 posZ: -16.74 - rotX: 359.95 - rotY: 269.8 - rotZ: 359.82 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Calculated Risk dfbed9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Calculated Risk dfbed9.yaml index 3756f87d6..929463083 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Calculated Risk dfbed9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Calculated Risk dfbed9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379063 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09070\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 0,\n \"traits\": \"Gambit. Fated.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"dynamicIcons\": true,\n \"cycle\": \"The Scarlet Keys\"\ - \n}" + ,\n \"level\": 0,\n \"traits\": \"Gambit. Fated.\",\n \"dynamicIcons\": true,\n\ + \ \"cycle\": \"The Scarlet Keys\"\n}" GUID: dfbed9 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 16.67 posY: 3.38 posZ: 65.93 - rotX: 359.02 - rotY: 270.01 - rotZ: 358.94 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Call for Backup (2) 1d1901.yaml b/unpacked/Bag All Player Cards 15bb07/Card Call for Backup (2) 1d1901.yaml index 4d41bb80c..343363f1f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Call for Backup (2) 1d1901.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Call for Backup (2) 1d1901.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378916 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08129\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Favor. Synergy.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the\ - \ Earth\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Favor. Synergy.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 1d1901 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.21 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Call of the Unknown 86feae.yaml b/unpacked/Bag All Player Cards 15bb07/Card Call of the Unknown 86feae.yaml index ec41c228a..42c1b04da 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Call of the Unknown 86feae.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Call of the Unknown 86feae.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 377244 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3772': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04009\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - cycle\": \"The Forgotten Age\"\n}" + ,\n \"traits\": \"Task.\",\n \"weakness\": true,\n \"cycle\": \"The Forgotten\ + \ Age\"\n}" GUID: 86feae Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 5.51 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Called by the Mists e628de.yaml b/unpacked/Bag All Player Cards 15bb07/Card Called by the Mists e628de.yaml index 48b358bb8..b6893941a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Called by the Mists e628de.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Called by the Mists e628de.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550801 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"60503\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"traits\": \"Curse.\",\n \"weakness\": true,\n \"cycle\": \"Investigator\ + \ Packs\"\n}" GUID: e628de Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.05 posY: 3.89 posZ: -16.7 - rotX: 359.8 - rotY: 269.96 - rotZ: 0.1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Calling in Favors 9b9e8b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Calling in Favors 9b9e8b.yaml index 6ebf12cfc..913196b4c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Calling in Favors 9b9e8b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Calling in Favors 9b9e8b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368510 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03158\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Favor.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Favor.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 9b9e8b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.15 posY: 4.11 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Calvin Wright 510d45.yaml b/unpacked/Bag All Player Cards 15bb07/Card Calvin Wright 510d45.yaml index 89624f414..e4270e427 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Calvin Wright 510d45.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Calvin Wright 510d45.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 261820 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2618': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"04005-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"04005-m\",\n \"type\": \"Minicard\"\n}" GUID: 510d45 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.65 posZ: -18.15 - rotX: 359.93 - rotY: 269.94 - rotZ: 359.97 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Calvin Wright b02a1e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Calvin Wright b02a1e.yaml index f0c0418d5..8ae0bae97 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Calvin Wright b02a1e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Calvin Wright b02a1e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 271720 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2717': BackIsHidden: true @@ -20,8 +20,9 @@ CustomDeck: Description: The Haunted DragSelectable: true GMNotes: "{\n \"id\": \"04005\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Cursed. Drifter.\",\n \"cycle\": \"The Forgotten Age\"\ - \n}" + Survivor\",\n \"traits\": \"Cursed. Drifter.\",\n \"willpowerIcons\": 0,\n \"\ + intellectIcons\": 0,\n \"combatIcons\": 0,\n \"agilityIcons\": 0,\n \"cycle\"\ + : \"The Forgotten Age\"\n}" GUID: b02a1e Grid: true GridProjection: false @@ -39,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.94 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Captivating Discovery 498bc8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Captivating Discovery 498bc8.yaml index 2e89a6d91..78fe13d1f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Captivating Discovery 498bc8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Captivating Discovery 498bc8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379400 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3794': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09047\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 498bc8 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 359.13 - rotY: 270.01 - rotZ: 359.06 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern (promo version) f0533d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern (promo version) f0533d.yaml index 511a459d3..8ce50d864 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern (promo version) f0533d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern (promo version) f0533d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 273527 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2735': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 2.02 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern 30614e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern 30614e.yaml index 859315dd8..111b5260b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern 30614e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern 30614e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 273302 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2733': BackIsHidden: true @@ -20,7 +20,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05001-m\",\n \"alternate_ids\": [\n \"98010-m\"\n ],\n\ - \ \"type\": \"Minicard\",\n \"traits\": \"\"\n}" + \ \"type\": \"Minicard\"\n}" GUID: 30614e Grid: true GridProjection: false @@ -38,15 +38,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 29.08 posY: 3.37 posZ: -59.23 - rotX: 0.52 - rotY: 269.98 - rotZ: 1.41 + rotX: 1.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern b03b12.yaml b/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern b03b12.yaml index 37341b28f..df941ab1b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern b03b12.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern b03b12.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 273521 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2735': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.86 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern b57bab.yaml b/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern b57bab.yaml index c1e26a0f8..62e993049 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern b57bab.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Carolyn Fern b57bab.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 273306 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2733': BackIsHidden: true @@ -20,7 +20,7 @@ CustomDeck: Description: Promo version DragSelectable: true GMNotes: "{\n \"id\": \"05001-promo-m\",\n \"alternate_ids\": [\n \"98010-m\"\ - \n ],\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}" + \n ],\n \"type\": \"Minicard\"\n}" GUID: b57bab Grid: true GridProjection: false @@ -38,15 +38,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 29.23 posY: 3.37 - posZ: -59.33 - rotX: 0.21 - rotY: 269.96 - rotZ: 1.55 + posZ: -59.34 + rotX: 0.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Carson Sinclair c0f76c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Carson Sinclair c0f76c.yaml index b8d2fb3f7..a66dd0876 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Carson Sinclair c0f76c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Carson Sinclair c0f76c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 846200 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8462': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09001-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"09001-m\",\n \"type\": \"Minicard\"\n}" GUID: c0f76c Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 16.36 posY: 2.21 posZ: 55.07 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Carson Sinclair dc96d1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Carson Sinclair dc96d1.yaml index 08b33d4b1..de71a81c2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Carson Sinclair dc96d1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Carson Sinclair dc96d1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 843400 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8434': BackIsHidden: true @@ -20,8 +20,9 @@ CustomDeck: Description: The Butler DragSelectable: true GMNotes: "{\n \"id\": \"09001\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"\",\n \"willpowerIcons\": 2,\n \"intellectIcons\"\ - : 2,\n \"combatIcons\": 2,\n \"agilityIcons\": 2\n}" + Guardian\",\n \"traits\": \"Assistant.\",\n \"willpowerIcons\": 2,\n \"intellectIcons\"\ + : 2,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"The Scarlet\ + \ Keys\"\n}" GUID: dc96d1 Grid: true GridProjection: false @@ -39,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 22.9 posY: 2.21 posZ: 52.02 - rotX: 0.02 - rotY: 180.01 - rotZ: 359.98 - scaleX: 1.0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.0 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cat Burglar (1) 2fe723.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cat Burglar (1) 2fe723.yaml index 9e25f04f7..85303d6f6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cat Burglar (1) 2fe723.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cat Burglar (1) 2fe723.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315239 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01055\",\n \"alternate_ids\": [\n \"01555\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 4,\n \"level\": 1,\n\ - \ \"traits\": \"Ally. Criminal.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Ally. Criminal.\",\n \"willpowerIcons\": 1,\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"Core\"\n}" GUID: 2fe723 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0.08 - rotY: 270.01 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Caught Red-Handed ecd087.yaml b/unpacked/Bag All Player Cards 15bb07/Card Caught Red-Handed ecd087.yaml index 71d2f62c3..97b0357a1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Caught Red-Handed ecd087.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Caught Red-Handed ecd087.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 376840 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3768': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04012\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Blunder.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"traits\": \"Blunder.\",\n \"weakness\": true,\n \"cycle\": \"The Forgotten\ + \ Age\"\n}" GUID: ecd087 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 4.93 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Celaeno Fragments d287bc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Celaeno Fragments d287bc.yaml index 4d952d8ab..49eaa89ba 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Celaeno Fragments d287bc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Celaeno Fragments d287bc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538804 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Book of Books DragSelectable: true GMNotes: "{\n \"id\": \"60206\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: d287bc Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.02 posY: 4.06 posZ: -16.7 - rotX: 359.84 + rotX: 0.0 rotY: 270.0 - rotZ: 0.04 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ceremonial Sickle (4) 4a6a9f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ceremonial Sickle (4) 4a6a9f.yaml index c9bc3d646..6ec4bd457 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ceremonial Sickle (4) 4a6a9f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ceremonial Sickle (4) 4a6a9f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379120 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09096\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Item. Charm. Weapon. Melee.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"\ - cycle\": \"The Scarlet Keys\"\n}" + ,\n \"combatIcons\": 2,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 4a6a9f Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 16.74 posY: 3.36 posZ: 65.49 - rotX: 359.38 + rotX: 359.0 rotY: 270.0 - rotZ: 1.22 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ceremonial Sickle b5e78c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ceremonial Sickle b5e78c.yaml index d16aac239..eb9a0ea30 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ceremonial Sickle b5e78c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ceremonial Sickle b5e78c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379106 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09082\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Charm. Weapon. Melee.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - cycle\": \"The Scarlet Keys\"\n}" + ,\n \"combatIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: b5e78c Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 16.67 posY: 3.38 posZ: 65.93 - rotX: 359.49 - rotY: 270.01 - rotZ: 359.44 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Chainsaw (4) d40f4e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Chainsaw (4) d40f4e.yaml index e0002f52a..a7e4595eb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Chainsaw (4) d40f4e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Chainsaw (4) d40f4e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550827 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60529\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Item. Tool. Weapon. Melee.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 3,\n \"\ - uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\"\ - : \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"combatIcons\": 3,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ + : \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator\ + \ Packs\"\n}" GUID: d40f4e Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.83 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Charisma (3) 9e6c55.yaml b/unpacked/Bag All Player Cards 15bb07/Card Charisma (3) 9e6c55.yaml index 179c5720f..473747db2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Charisma (3) 9e6c55.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Charisma (3) 9e6c55.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 292524 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2925': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02158\",\n \"alternate_ids\": [\n \"01694\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"level\": 3,\n \"traits\"\ - : \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"\ - The Dunwich Legacy\"\n}" + : \"Talent.\",\n \"permanent\": true,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 9e6c55 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 32.89 posY: 2.3 posZ: -77.65 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Charles Ross, Esq. 4a2a36.yaml b/unpacked/Bag All Player Cards 15bb07/Card Charles Ross, Esq. 4a2a36.yaml index 92cdf1a15..5e5506372 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Charles Ross, Esq. 4a2a36.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Charles Ross, Esq. 4a2a36.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368430 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Acquisitions and Solicitation DragSelectable: true GMNotes: "{\n \"id\": \"03149\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Patron.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Patron.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 4a2a36 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 4.09 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Charlie Kane 4deeff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Charlie Kane 4deeff.yaml index 00ab969b6..b2db25d72 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Charlie Kane 4deeff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Charlie Kane 4deeff.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 846105 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8461': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09018-m\",\n \"type\": \"Treachery\",\n \"traits\": \"\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}" +GMNotes: "{\n \"id\": \"09018-m\",\n \"type\": \"Minicard\"\n}" GUID: 4deeff Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- ScenarioCard +- Minicard Tooltip: true Transform: posX: 14.5 posY: 2.21 posZ: 57.18 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Charlie Kane 95fb5e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Charlie Kane 95fb5e.yaml index 7e844dbd2..2e24d87f8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Charlie Kane 95fb5e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Charlie Kane 95fb5e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 843405 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8434': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 16.49 posY: 2.21 posZ: 52.58 - rotX: 0.02 - rotY: 180.01 - rotZ: 359.98 - scaleX: 1.0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.0 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Charon's Obol (1) 1dbc95.yaml b/unpacked/Bag All Player Cards 15bb07/Card Charon's Obol (1) 1dbc95.yaml index e92b67ed9..6898ba6b8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Charon's Obol (1) 1dbc95.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Charon's Obol (1) 1dbc95.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315233 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -21,7 +21,7 @@ Description: The Ferryman's Pay DragSelectable: true GMNotes: "{\n \"id\": \"03308\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": true,\n \"\ - weakness\": false,\n \"cycle\": \"The Path to Carcosa\"\n}" + cycle\": \"The Path to Carcosa\"\n}" GUID: 1dbc95 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.75 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cheap Shot (2) 0b963c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cheap Shot (2) 0b963c.yaml index e6e709588..d59329a5d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cheap Shot (2) 0b963c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cheap Shot (2) 0b963c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538621 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60323\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Trick.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 0b963c Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.12 posY: 4.07 posZ: -16.72 - rotX: 0.08 - rotY: 269.82 - rotZ: 359.92 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cheap Shot b8c93a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cheap Shot b8c93a.yaml index a8304e399..bd71d678d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cheap Shot b8c93a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cheap Shot b8c93a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368715 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3687': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03194\",\n \"alternate_ids\": [\n \"60312\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 0,\n\ - \ \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"\ - combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n\ - }" + \ \"traits\": \"Trick.\",\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"\ + cycle\": \"The Path to Carcosa\"\n}" GUID: b8c93a Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 9.13 posY: 4.6 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cheat Death (5) 3add54.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cheat Death (5) 3add54.yaml index c6c85cad8..665d375e7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cheat Death (5) 3add54.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cheat Death (5) 3add54.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315261 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03310\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 5,\n \"traits\": \"Trick. Fated.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to\ - \ Carcosa\"\n}" + ,\n \"cost\": 1,\n \"level\": 5,\n \"traits\": \"Trick. Fated.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 3add54 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.67 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cheat the System (1) f6d572.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cheat the System (1) f6d572.yaml index 4107df44a..aec5cf40a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cheat the System (1) f6d572.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cheat the System (1) f6d572.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379040 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08050\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Trick. Synergy.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Trick. Synergy.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: f6d572 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.19 posY: 2.33 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cherished Keepsake (1) 5a2b49.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cherished Keepsake (1) 5a2b49.yaml index a7a96417e..76a778445 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cherished Keepsake (1) 5a2b49.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cherished Keepsake (1) 5a2b49.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550818 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60520\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Item. Charm.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 5a2b49 Grid: true GridProjection: false @@ -40,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.08 posY: 3.77 posZ: -16.71 - rotX: 359.95 - rotY: 269.91 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cherished Keepsake 215cec.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cherished Keepsake 215cec.yaml index 4ad0269d6..ab944e494 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cherished Keepsake 215cec.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cherished Keepsake 215cec.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368821 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03114\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 215cec Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.17 posY: 3.03 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Chicago Typewriter (4) ecfa42.yaml b/unpacked/Bag All Player Cards 15bb07/Card Chicago Typewriter (4) ecfa42.yaml index b1fba518f..b6494b50d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Chicago Typewriter (4) ecfa42.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Chicago Typewriter (4) ecfa42.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315260 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02304\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 5,\n \"level\": 4,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"\ - uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\"\ - : \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\"\ + : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich\ + \ Legacy\"\n}" GUID: ecfa42 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.15 posY: 3.67 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Chronophobia eeb330.yaml b/unpacked/Bag All Player Cards 15bb07/Card Chronophobia eeb330.yaml index 15e9b8d0d..f883bab3d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Chronophobia eeb330.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Chronophobia eeb330.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 431207 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4312': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"02039\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 2,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: eeb330 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.14 posY: 3.68 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Chuck Fergus (2) ea31c2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Chuck Fergus (2) ea31c2.yaml index c4dc7d729..6e38e6a3d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Chuck Fergus (2) ea31c2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Chuck Fergus (2) ea31c2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379065 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: O'Bannion Driver DragSelectable: true GMNotes: "{\n \"id\": \"09072\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Ally. Criminal.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1\n\ - }" + ,\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Ally. Criminal.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: ea31c2 Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 359.28 - rotY: 270.01 - rotZ: 359.22 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Chuck Fergus (5) 0e72b6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Chuck Fergus (5) 0e72b6.yaml index f24151c8b..3b1839f6b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Chuck Fergus (5) 0e72b6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Chuck Fergus (5) 0e72b6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538630 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: O'Bannion Driver DragSelectable: true GMNotes: "{\n \"id\": \"60332\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Ally. Criminal.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Ally. Criminal.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\ + \n}" GUID: 0e72b6 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.22 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance (3) f5d382.yaml b/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance (3) f5d382.yaml index a4b8f534d..2feac0c45 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance (3) f5d382.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance (3) f5d382.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538724 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60426\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n\ - }" + ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \ + \ \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ + : \"Investigator Packs\"\n}" GUID: f5d382 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.11 posY: 3.76 posZ: -16.72 - rotX: 359.93 - rotY: 269.85 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance (5) e21200.yaml b/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance (5) e21200.yaml index 167595476..187da99c6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance (5) e21200.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance (5) e21200.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538729 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60431\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n\ - }" + ,\n \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 3,\n \ + \ \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ + : \"Investigator Packs\"\n}" GUID: e21200 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.05 posY: 3.89 posZ: -16.7 - rotX: 359.8 - rotY: 269.96 - rotZ: 0.1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance b67371.yaml b/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance b67371.yaml index 7848355bb..db0a5c337 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance b67371.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Clairvoyance b67371.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538706 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60408\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n\ + }" GUID: b67371 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.14 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Clarity of Mind (3) a53344.yaml b/unpacked/Bag All Player Cards 15bb07/Card Clarity of Mind (3) a53344.yaml index d750eabac..ee231bf83 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Clarity of Mind (3) a53344.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Clarity of Mind (3) a53344.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 313603 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3136': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"51008\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Return to The Dunwich Legacy\"\n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to The Dunwich\ + \ Legacy\"\n}" GUID: a53344 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.04 posY: 3.91 posZ: -16.7 - rotX: 359.84 - rotY: 269.96 - rotZ: 0.07 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Clarity of Mind 8e57b8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Clarity of Mind 8e57b8.yaml index 77e0e2ce8..c3fe0502b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Clarity of Mind 8e57b8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Clarity of Mind 8e57b8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230322 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02030\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 2,\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 Dunwich Legacy\"\n\ + }" GUID: 8e57b8 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.12 posY: 3.92 posZ: -16.72 - rotX: 0.14 - rotY: 269.81 - rotZ: 359.88 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Clasp of Black Onyx f295d9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Clasp of Black Onyx f295d9.yaml index 0cb1e073e..d7718a891 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Clasp of Black Onyx f295d9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Clasp of Black Onyx f295d9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232332 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2323': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: A Gift Unlooked For DragSelectable: true GMNotes: "{\n \"id\": \"03142\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": true,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Item. Relic.\",\n \"weakness\": true,\n \"\ + cycle\": \"The Path to Carcosa\"\n}" GUID: f295d9 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.87 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Claypool's Furs c1f999.yaml b/unpacked/Bag All Player Cards 15bb07/Card Claypool's Furs c1f999.yaml index f910c7ff5..5c921c024 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Claypool's Furs c1f999.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Claypool's Furs c1f999.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 452300 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4523': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08730\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Clothing.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Clothing.\",\n \"combatIcons\": 1,\n \ + \ \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: c1f999 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 79.14 posY: 3.33 posZ: 8.17 - rotX: 359.54 - rotY: 269.99 - rotZ: 359.45 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Clean Sneak (4) 537171.yaml b/unpacked/Bag All Player Cards 15bb07/Card Clean Sneak (4) 537171.yaml index 6b7c6d9d7..513b240c4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Clean Sneak (4) 537171.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Clean Sneak (4) 537171.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379102 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09078\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 4,\n \"traits\": \"Gambit. Trick.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 2\n}" + ,\n \"cost\": 0,\n \"level\": 4,\n \"traits\": \"Gambit. Trick.\",\n \"agilityIcons\"\ + : 2,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: '537171' Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 16.67 posY: 3.37 posZ: 65.93 - rotX: 358.82 - rotY: 270.02 - rotZ: 358.72 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Clean Them Out 3319be.yaml b/unpacked/Bag All Player Cards 15bb07/Card Clean Them Out 3319be.yaml index a70f5929d..22755f5b3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Clean Them Out 3319be.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Clean Them Out 3319be.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545309 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60111\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 3319be Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.68 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cloak of the Outer Realm e4ab48.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cloak of the Outer Realm e4ab48.yaml index 14e9da379..8edfd2edb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cloak of the Outer Realm e4ab48.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cloak of the Outer Realm e4ab48.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587926 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5879': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Interwoven Distortion DragSelectable: true GMNotes: "{\n \"id\": \"86051\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Item. Relic. Clothing.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"agilityIcons\": 2,\n \"wildIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Item. Relic. Clothing.\",\n \"agilityIcons\"\ + : 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\"\ + : \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\ + \n}" GUID: e4ab48 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.43 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Close Call (2) 6aae86.yaml b/unpacked/Bag All Player Cards 15bb07/Card Close Call (2) 6aae86.yaml index 9b7ad54e2..ccdbb5fe8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Close Call (2) 6aae86.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Close Call (2) 6aae86.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368848 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01083\",\n \"alternate_ids\": [\n \"01583\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 2,\n \"level\"\ - : 2,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}" + : 2,\n \"traits\": \"Fortune.\",\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ + \ \"cycle\": \"Core\"\n}" GUID: 6aae86 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 269.99 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Close the Circle (1) d02825.yaml b/unpacked/Bag All Player Cards 15bb07/Card Close the Circle (1) d02825.yaml index 806389547..e2eb56493 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Close the Circle (1) d02825.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Close the Circle (1) d02825.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379052 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08062\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Ritual. Synergy.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 1,\n \"type\": \"Charge\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Ritual. Synergy.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 1,\n \"\ + type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + Edge of the Earth\"\n}" GUID: d02825 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.19 posY: 2.32 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Collected Works of Poe d6f719.yaml b/unpacked/Bag All Player Cards 15bb07/Card Collected Works of Poe d6f719.yaml index 1ddb2012a..1b51c3843 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Collected Works of Poe d6f719.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Collected Works of Poe d6f719.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 452301 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4523': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08731\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n\ - \ {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Item. Tome.\",\n \"willpowerIcons\": 1,\n \"\ + wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\"\ + ,\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\ + \n}" GUID: d6f719 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 78.94 posY: 3.32 posZ: 8.21 - rotX: 359.59 - rotY: 269.99 - rotZ: 359.19 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Colt Vest Pocket (2) 8dda2d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Colt Vest Pocket (2) 8dda2d.yaml index 2e06df0ed..8c66a78bb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Colt Vest Pocket (2) 8dda2d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Colt Vest Pocket (2) 8dda2d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545205 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5452': BackIsHidden: true @@ -21,10 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"53006\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"\ - Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the\ - \ Forgotten Age\"\n}" + ,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"\ + count\": 5,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n \ + \ ],\n \"cycle\": \"Return to the Forgotten Age\"\n}" GUID: 8dda2d Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.49 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Colt Vest Pocket 5a305e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Colt Vest Pocket 5a305e.yaml index ada1e5371..2e9a3dc62 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Colt Vest Pocket 5a305e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Colt Vest Pocket 5a305e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 276101 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2761': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04268\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"\ - uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\"\ - : \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\"\ + : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten\ + \ Age\"\n}" GUID: 5a305e Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.72 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Combat Training (1) bd3ecc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Combat Training (1) bd3ecc.yaml index a19bf9874..e67a17f3b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Combat Training (1) bd3ecc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Combat Training (1) bd3ecc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226335 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03107\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Talent. Composure.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" + combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n\ + }" GUID: bd3ecc Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.17 posY: 3.2 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Combat Training (3) 36efa2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Combat Training (3) 36efa2.yaml index 9cfadea31..905a7ee59 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Combat Training (3) 36efa2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Combat Training (3) 36efa2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379017 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08027\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Talent. Composure.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"agilityIcons\"\ - : 2,\n \"cycle\": \"Edge of the Earth\"\n}" + combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 36efa2 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.27 posZ: -16.74 - rotX: 359.95 - rotY: 269.8 - rotZ: 359.82 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Connect the Dots 13413d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Connect the Dots 13413d.yaml index 3dd3b01ca..7d8772582 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Connect the Dots 13413d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Connect the Dots 13413d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430809 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4308': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05025\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 13413d Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.06 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Contraband (2) 620b6e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Contraband (2) 620b6e.yaml index a94ceda5e..5d472d6b7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Contraband (2) 620b6e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Contraband (2) 620b6e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315304 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3153': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"51005\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Supply. Illicit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 2,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}" + ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Supply. Illicit.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 2,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}" GUID: 620b6e Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 4.6 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Contraband b4ad29.yaml b/unpacked/Bag All Player Cards 15bb07/Card Contraband b4ad29.yaml index eba5f5eb2..98bf02af4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Contraband b4ad29.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Contraband b4ad29.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368717 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3687': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02109\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Supply. Illicit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Supply. Illicit.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: b4ad29 Grid: true GridProjection: false @@ -46,8 +45,8 @@ Transform: posX: 9.17 posY: 2.93 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cookie's Custom .32 34e723.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cookie's Custom .32 34e723.yaml index 08b8c0730..37e3326eb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cookie's Custom .32 34e723.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cookie's Custom .32 34e723.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 452302 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4523': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08732\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 2,\n \"type\": \"Ammo\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"combatIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\"\ + : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of\ + \ the Earth\"\n}" GUID: 34e723 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 79.15 posY: 3.33 posZ: 7.7 - rotX: 359.51 - rotY: 269.99 - rotZ: 0.13 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Copycat (3) de40c8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Copycat (3) de40c8.yaml index fb1cad517..917263493 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Copycat (3) de40c8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Copycat (3) de40c8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538628 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60330\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 3,\n \"traits\": \"Gambit.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"level\": 3,\n \"traits\": \"Gambit.\",\n \"wildIcons\": 1,\n \"cycle\"\ + : \"Investigator Packs\"\n}" GUID: de40c8 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.04 posY: 3.89 posZ: -16.7 - rotX: 359.82 - rotY: 269.96 - rotZ: 0.08 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cornered (2) c6c260.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cornered (2) c6c260.yaml index 8bdfd3881..e195a4a5d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cornered (2) c6c260.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cornered (2) c6c260.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368851 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04160\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: c6c260 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.12 posY: 3.92 posZ: -16.72 - rotX: 0.14 - rotY: 269.81 - rotZ: 359.88 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Counterespionage (1) fad52a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Counterespionage (1) fad52a.yaml index 923ff68b2..647aa4c1f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Counterespionage (1) fad52a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Counterespionage (1) fad52a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379039 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08049\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Favor. Service.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"Edge\ - \ of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Favor. Service.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: fad52a Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.2 posY: 2.14 posZ: -16.74 - rotX: 359.91 - rotY: 269.79 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Counterpunch (2) 92436b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Counterpunch (2) 92436b.yaml index 0e30ecbe5..540b7e6b6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Counterpunch (2) 92436b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Counterpunch (2) 92436b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545320 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60122\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spirit. Tactic.\",\n \"combatIcons\"\ + : 2,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 92436b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 4.06 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Counterpunch 20645e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Counterpunch 20645e.yaml index 4b3bfe1c5..7543e2187 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Counterpunch 20645e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Counterpunch 20645e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545310 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60112\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 20645e Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 3.79 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Counterspell (2) (Taboo) 118264.yaml b/unpacked/Bag All Player Cards 15bb07/Card Counterspell (2) (Taboo) 118264.yaml index 0fda18fae..7c560b793 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Counterspell (2) (Taboo) 118264.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Counterspell (2) (Taboo) 118264.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558211 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04110-t\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell. Blessed.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: '118264' Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 21.84 posY: 4.55 posZ: -50.38 - rotX: 359.99 - rotY: 269.85 - rotZ: 0.21 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Counterspell (2) 2236f6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Counterspell (2) 2236f6.yaml index 3e6220fe8..f2c4d5d32 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Counterspell (2) 2236f6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Counterspell (2) 2236f6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230346 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04110\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell. Blessed.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 2236f6 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.99 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Coup de Grâce 2240f9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Coup de Grâce 2240f9.yaml index d4ca75e41..3bd462336 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Coup de Grâce 2240f9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Coup de Grâce 2240f9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 276200 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2762': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04269\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Tactic. Fated.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Tactic. Fated.\",\n \"combatIcons\"\ + : 2,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 2240f9 Grid: true GridProjection: false @@ -44,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 9.14 - posY: 3.78 + posY: 3.79 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cover Up ca25bc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cover Up ca25bc.yaml index d31cd33fa..b4ee9fe6b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cover Up ca25bc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cover Up ca25bc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 552421 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5524': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01007\",\n \"alternate_ids\": [\n \"01507\"\n ],\n \ \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n\ - \ \"permanent\": false,\n \"weakness\": true,\n \"uses\": [\n {\n \"\ - count\": 3,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ],\n\ - \ \"cycle\": \"Core\"\n}" + \ \"weakness\": true,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ + : \"Clue\",\n \"token\": \"clue\"\n }\n ],\n \"cycle\": \"Core\"\n}" GUID: ca25bc Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 269.99 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cover Up f802e3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cover Up f802e3.yaml index 6114ee59a..d11790324 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cover Up f802e3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cover Up f802e3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 536206 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5362': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: Advanced DragSelectable: true GMNotes: "{\n \"id\": \"90031\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - uses\": [\n {\n \"count\": 4,\n \"type\": \"Clue\",\n \"token\"\ - : \"clue\"\n }\n ],\n \"cycle\": \"Standalone\"\n}" + ,\n \"traits\": \"Task.\",\n \"weakness\": true,\n \"uses\": [\n {\n \ + \ \"count\": 4,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n \ + \ ],\n \"cycle\": \"Standalone\"\n}" GUID: f802e3 Grid: true GridProjection: false @@ -44,11 +44,11 @@ Tags: Tooltip: true Transform: posX: 8.98 - posY: 3.82 + posY: 3.81 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Crack the Case 8dce44.yaml b/unpacked/Bag All Player Cards 15bb07/Card Crack the Case 8dce44.yaml index 1c41a702f..d06914bb0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Crack the Case 8dce44.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Crack the Case 8dce44.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 277812 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2778': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05110\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 8dce44 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.15 posY: 3.77 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Crafty (3) fa994a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Crafty (3) fa994a.yaml index 998ebc309..6691a3559 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Crafty (3) fa994a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Crafty (3) fa994a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378961 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08123\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue|Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"agilityIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 2,\n \"replenish\": 2,\n \ + \ \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ + : \"Edge of the Earth\"\n}" GUID: fa994a Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.93 posZ: -16.73 - rotX: 359.91 - rotY: 269.8 - rotZ: 0.07 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Crisis of Faith 8b68f4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Crisis of Faith 8b68f4.yaml index f813d9b36..39b8b75a0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Crisis of Faith 8b68f4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Crisis of Faith 8b68f4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 582001 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5820': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"07007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"The Innsmouth\ + \ Conspiracy\"\n}" GUID: 8b68f4 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 3.69 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Crisis of Identity (Taboo) 55be9c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Crisis of Identity (Taboo) 55be9c.yaml index bdbafb9d9..422624d40 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Crisis of Identity (Taboo) 55be9c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Crisis of Identity (Taboo) 55be9c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558209 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"03019-t\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"The Path to\ + \ Carcosa\"\n}" GUID: 55be9c Grid: true GridProjection: false @@ -39,14 +39,14 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- ScenarioCard +- PlayerCard Tooltip: true Transform: posX: 91.99 posY: 1.9 posZ: 4.66 rotX: 0.0 - rotY: 269.99 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Crisis of Identity 367aac.yaml b/unpacked/Bag All Player Cards 15bb07/Card Crisis of Identity 367aac.yaml index 03913cda1..1d905c953 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Crisis of Identity 367aac.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Crisis of Identity 367aac.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 374935 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3749': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03019\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"The Path to\ + \ Carcosa\"\n}" GUID: 367aac Grid: true GridProjection: false @@ -44,10 +44,10 @@ Tooltip: true Transform: posX: 9.0 posY: 3.87 - posZ: -16.69 - rotX: 0.39 - rotY: 270.01 - rotZ: 359.9 + posZ: -16.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire (4) 416f12.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire (4) 416f12.yaml index fccbba0d2..909064696 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire (4) 416f12.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire (4) 416f12.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 584203 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5842': BackIsHidden: true @@ -21,8 +21,8 @@ Description: Text of the Elder Guardian DragSelectable: true GMNotes: "{\n \"id\": \"07192\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Item. Tome. Blessed.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\ + \n}" GUID: 416f12 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.01 posY: 3.76 posZ: -16.7 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire (4) e8b179.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire (4) e8b179.yaml index e665b40e2..8f7bcdb1a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire (4) e8b179.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire (4) e8b179.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 588102 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5881': BackIsHidden: true @@ -21,8 +21,8 @@ Description: Text of the Elder Herald DragSelectable: true GMNotes: "{\n \"id\": \"07191\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Item. Tome. Cursed.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\ + \n}" GUID: e8b179 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.29 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire fbfa24.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire fbfa24.yaml index 56120922e..30c4bf5fb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire fbfa24.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Grimoire fbfa24.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587116 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5871': BackIsHidden: true @@ -21,8 +21,7 @@ Description: Untranslated DragSelectable: true GMNotes: "{\n \"id\": \"07022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tome. Occult.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"\ - The Innsmouth Conspiracy\"\n}" + wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: fbfa24 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.54 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Research (4) 5d25b1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Research (4) 5d25b1.yaml index ac3210996..cbbdcfa03 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Research (4) 5d25b1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Research (4) 5d25b1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430657 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01043\",\n \"alternate_ids\": [\n \"01543\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"cost\": 0,\n \"level\": 4,\n\ - \ \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"cycle\": \"Core\"\n}" + \ \"traits\": \"Insight.\",\n \"cycle\": \"Core\"\n}" GUID: 5d25b1 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 19.44 posY: 3.37 posZ: -56.62 - rotX: 359.43 - rotY: 270.02 - rotZ: 359.79 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Writings (2) 870bdc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Writings (2) 870bdc.yaml index a53adbb9f..946ce2929 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Writings (2) 870bdc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Writings (2) 870bdc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538822 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60224\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 870bdc Grid: true GridProjection: false @@ -43,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.06 + posX: 9.05 posY: 3.74 posZ: -16.71 - rotX: 359.97 - rotY: 269.94 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Writings ff2776.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Writings ff2776.yaml index cfffa6315..8524645c6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cryptic Writings ff2776.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cryptic Writings ff2776.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538813 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60215\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"Investigator Packs\"\n}" GUID: ff2776 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.07 posY: 3.89 posZ: -16.71 - rotX: 0.33 - rotY: 269.93 - rotZ: 359.76 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cryptographic Cipher 4f3142.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cryptographic Cipher 4f3142.yaml index e33934e74..51c769932 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cryptographic Cipher 4f3142.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cryptographic Cipher 4f3142.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 580315 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5803': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\ + \n}" GUID: 4f3142 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.67 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Crystal Pendulum 6c3156.yaml b/unpacked/Bag All Player Cards 15bb07/Card Crystal Pendulum 6c3156.yaml index 88648862b..4dd8b2664 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Crystal Pendulum 6c3156.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Crystal Pendulum 6c3156.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538709 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60411\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 6c3156 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: - posX: 9.0 + posX: 8.99 posY: 3.81 posZ: -16.69 - rotX: 359.68 - rotY: 270.01 - rotZ: 0.08 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Crystalline Elder Sign (3) 949ca2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Crystalline Elder Sign (3) 949ca2.yaml index fd675f711..8d219aa15 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Crystalline Elder Sign (3) 949ca2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Crystalline Elder Sign (3) 949ca2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230353 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04235\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Relic. Blessed.\",\n \ - \ \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Forgotten Age\"\n}" + \ \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 949ca2 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.2 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Crystallizer of Dreams 6692de.yaml b/unpacked/Bag All Player Cards 15bb07/Card Crystallizer of Dreams 6692de.yaml index d27a6ddb7..d8ce0a709 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Crystallizer of Dreams 6692de.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Crystallizer of Dreams 6692de.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 590503 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5905': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06024\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 1,\n\ - \ \"id\": \"06025\"\n }\n ],\n \"willpowerIcons\": 1,\n \"cycle\": \"\ - The Dream-Eaters\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Relic.\",\n \"bonded\"\ + : [\n {\n \"count\": 1,\n \"id\": \"06025\"\n }\n ],\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 6692de Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 4.02 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cunning Distraction e8ea95.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cunning Distraction e8ea95.yaml index ab37b40a7..a1131f0ec 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cunning Distraction e8ea95.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cunning Distraction e8ea95.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368819 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01078\",\n \"alternate_ids\": [\n \"01578\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 5,\n \"level\"\ - : 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}" + : 0,\n \"traits\": \"Tactic.\",\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n\ + \ \"cycle\": \"Core\"\n}" GUID: e8ea95 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 270.02 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cunning e2767a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cunning e2767a.yaml index 2d3951543..f5166a3d4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cunning e2767a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cunning e2767a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527606 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5276': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05030\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"intellectIcons\": 1,\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: e2767a Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.2 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Curiosity 9e5cd2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Curiosity 9e5cd2.yaml index e60bb8ebe..dbb45c40b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Curiosity 9e5cd2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Curiosity 9e5cd2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430808 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4308': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05026\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The\ - \ Circle Undone\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 9e5cd2 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.14 posY: 3.86 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Curse of Aeons (3) 3199f2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Curse of Aeons (3) 3199f2.yaml index f3d4c2b85..b37e76591 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Curse of Aeons (3) 3199f2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Curse of Aeons (3) 3199f2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 580106 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5801': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07195\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Ritual. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth\ - \ Conspiracy\"\n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Ritual. Cursed.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 3199f2 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.05 posY: 3.79 posZ: -16.7 - rotX: 359.76 - rotY: 269.95 - rotZ: 0.12 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Curse of the Rougarou 2e33f7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Curse of the Rougarou 2e33f7.yaml index 8ca51fed0..c579505b8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Curse of the Rougarou 2e33f7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Curse of the Rougarou 2e33f7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 8901 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '89': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Curse. DragSelectable: true GMNotes: "{\n \"id\": \"81029\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \ - \ \"cycle\": \"Standalone\"\n}" + ,\n \"traits\": \"Curse.\",\n \"weakness\": true,\n \"cycle\": \"Standalone\"\ + \n}" GUID: 2e33f7 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.01 posY: 3.67 posZ: -16.7 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Custom Ammunition (3) f03baa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Custom Ammunition (3) f03baa.yaml index a436ad112..36074a6f1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Custom Ammunition (3) f03baa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Custom Ammunition (3) f03baa.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226354 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04193\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Upgrade. Supply. Blessed.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\ + \n}" GUID: f03baa Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 8.97 posY: 5.27 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Custom Modifications d2252d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Custom Modifications d2252d.yaml index 3e8eac432..ef433ec0a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Custom Modifications d2252d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Custom Modifications d2252d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379016 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,24 +20,23 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09023\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Upgrade. Supply.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"customizations\": [\n {\n \"name\": \"Notched Sight\",\n \"xp\"\ - : 1,\n \"text\": \"If you perform an attack with attached asset against an\ - \ enemy engaged with another investigator and fail, you deal no damage.\"\n },\n\ - \ {\n \"name\": \"Extended Stock\",\n \"xp\": 2,\n \"text\": \"\ - You get +2 Fight while attacking with attached asset.\"\n },\n {\n \"\ - name\": \"Counterbalance\",\n \"xp\": 2,\n \"text\": \"After you attach\ - \ an Upgrade card other than Custom Modifications to attached asset, draw 1 card.\"\ - \n },\n {\n \"name\": \"Leather Grip\",\n \"xp\": 3,\n \"text\"\ - : \"Custom Modifications gets \uFFFD\u20AC\u201C1 cost and gains \uFFFD\u20AC\uFFFD\ - Fast. Play only during your turn.\uFFFD\u20AC?\",\n \"replaces\": {\n \ - \ \"cost\": 2\n }\n },\n {\n \"name\": \"Extended Magazine\",\n\ - \ \"xp\": 3,\n \"text\": \"After ammo is spent from or placed on attached\ - \ asset by another event, place 1 ammo on attached asset.\"\n },\n {\n \ - \ \"name\": \"Quicksilver Bullets\",\n \"xp\": 4,\n \"text\": \"If you\ - \ succeed by 3 or more while attacking with attached asset, this attack deals +1\ - \ damage.\"\n }\n ]\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Upgrade. Supply.\",\n \"customizations\"\ + : [\n {\n \"name\": \"Notched Sight\",\n \"xp\": 1,\n \"text\"\ + : \"If you perform an attack with attached asset against an enemy engaged with another\ + \ investigator and fail, you deal no damage.\"\n },\n {\n \"name\": \"\ + Extended Stock\",\n \"xp\": 2,\n \"text\": \"You get +2 Fight while attacking\ + \ with attached asset.\"\n },\n {\n \"name\": \"Counterbalance\",\n \ + \ \"xp\": 2,\n \"text\": \"After you attach an Upgrade card other than\ + \ Custom Modifications to attached asset, draw 1 card.\"\n },\n {\n \"\ + name\": \"Leather Grip\",\n \"xp\": 3,\n \"text\": \"Custom Modifications\ + \ gets \u20131 cost and gains \u201CFast. Play only during your turn.\u201D\",\n\ + \ \"replaces\": {\n \"cost\": 2\n }\n },\n {\n \"name\"\ + : \"Extended Magazine\",\n \"xp\": 3,\n \"text\": \"After ammo is spent\ + \ from or placed on attached asset by another event, place 1 ammo on attached asset.\"\ + \n },\n {\n \"name\": \"Quicksilver Bullets\",\n \"xp\": 4,\n \ + \ \"text\": \"If you succeed by 3 or more while attacking with attached asset,\ + \ this attack deals +1 damage.\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\ + \n}" GUID: d2252d Grid: true GridProjection: false @@ -61,9 +60,9 @@ Transform: posX: 10.51 posY: 2.2 posZ: 47.04 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cyclopean Hammer (5) (Taboo) a39c3b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cyclopean Hammer (5) (Taboo) a39c3b.yaml index a1db6af0f..292f81545 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cyclopean Hammer (5) (Taboo) a39c3b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cyclopean Hammer (5) (Taboo) a39c3b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558218 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08093-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\"\ ,\n \"cost\": 5,\n \"level\": 5,\n \"traits\": \"Item. Relic. Weapon. Melee.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \ - \ \"combatIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"willpowerIcons\": 2,\n \"combatIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\ + \n}" GUID: a39c3b Grid: true GridProjection: false @@ -46,10 +46,10 @@ Tooltip: true Transform: posX: 21.84 posY: 4.51 - posZ: -49.39 - rotX: 359.99 - rotY: 269.85 - rotZ: 0.21 + posZ: -49.4 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Cyclopean Hammer (5) 4df3b9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Cyclopean Hammer (5) 4df3b9.yaml index 3bac6ab7a..2c8fc1081 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Cyclopean Hammer (5) 4df3b9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Cyclopean Hammer (5) 4df3b9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378931 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08093\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\"\ ,\n \"cost\": 5,\n \"level\": 5,\n \"traits\": \"Item. Relic. Weapon. Melee.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \ - \ \"combatIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"willpowerIcons\": 2,\n \"combatIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\ + \n}" GUID: 4df3b9 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.19 posY: 2.53 posZ: -16.73 - rotX: 359.88 - rotY: 269.8 - rotZ: 0.22 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel Back) 2f2e0d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel Back) 2f2e0d.yaml index e671b2ca6..f1aa9717d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel Back) 2f2e0d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel Back) 2f2e0d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 273901 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2739': BackIsHidden: true @@ -39,17 +39,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.69 posZ: -73.09 - rotX: 0.01 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel Front) e8cafc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel Front) e8cafc.yaml index 7f85e6616..bbd25ba73 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel Front) e8cafc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel Front) e8cafc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 535101 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5351': BackIsHidden: true @@ -39,17 +39,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.71 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel) 282857.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel) 282857.yaml index 054d7df09..c74e375ce 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel) 282857.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker (Parallel) 282857.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 270201 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2702': BackIsHidden: true @@ -39,17 +39,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.7 posZ: -73.09 - rotX: 0.01 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker 5fa10d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker 5fa10d.yaml index b911b12de..5e61471c4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker 5fa10d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker 5fa10d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587101 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5871': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"01002-revised-m\",\n \"type\": \"Minicard\",\n \"traits\"\ - : \"\"\n}" +GMNotes: "{\n \"id\": \"01502-m\",\n \"type\": \"Minicard\"\n}" GUID: 5fa10d Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 47.18 - posY: 1.98 + posY: 1.99 posZ: -96.77 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker 6938eb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker 6938eb.yaml index 59501d79f..ae2f80d96 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker 6938eb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker 6938eb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 269901 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2699': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.68 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker ac7047.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker ac7047.yaml index 491e7a5f3..593844529 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker ac7047.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker ac7047.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587401 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5874': BackIsHidden: true @@ -19,7 +19,7 @@ CustomDeck: UniqueBack: true Description: The Librarian DragSelectable: true -GMNotes: "{\n \"id\": \"01002-r\",\n \"type\": \"Investigator\",\n \"class\": \"\ +GMNotes: "{\n \"id\": \"01502\",\n \"type\": \"Investigator\",\n \"class\": \"\ Seeker\",\n \"traits\": \"Miskatonic.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\"\ : 5,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Core\"\n}" GUID: ac7047 @@ -39,17 +39,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 45.13 posY: 1.99 posZ: -113.2 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.0 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.0 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker bce6a5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker bce6a5.yaml index f78f310c2..23f341dea 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker bce6a5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daisy Walker bce6a5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 258701 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2587': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"01002-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"01002-m\",\n \"type\": \"Minicard\"\n}" GUID: bce6a5 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 29.02 posY: 3.37 posZ: -59.31 - rotX: 0.49 - rotY: 269.97 - rotZ: 1.35 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daisy's Tote Bag 96c9be.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daisy's Tote Bag 96c9be.yaml index ae8906c79..0a91e1040 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daisy's Tote Bag 96c9be.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daisy's Tote Bag 96c9be.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 581821 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5818': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Signature DragSelectable: true GMNotes: "{\n \"id\": \"01008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"Core\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}" GUID: 96c9be Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.03 posY: 3.69 posZ: -16.7 - rotX: 359.91 - rotY: 269.98 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daisy's Tote Bag d72b97.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daisy's Tote Bag d72b97.yaml index f5782d4d8..441af4d7f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daisy's Tote Bag d72b97.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daisy's Tote Bag d72b97.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587205 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5872': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01508\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"Core\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}" GUID: d72b97 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 48.53 - posY: 2.01 + posY: 2.02 posZ: -121.62 - rotX: 358.89 + rotX: 359.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Damned bad8cb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Damned bad8cb.yaml index 9bddb9073..fff6f0f39 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Damned bad8cb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Damned bad8cb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449520 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4495': BackIsHidden: true @@ -45,9 +45,9 @@ Transform: posX: 9.07 posY: 3.86 posZ: -16.71 - rotX: 0.39 - rotY: 269.93 - rotZ: 359.72 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Damning Testimony 3369a5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Damning Testimony 3369a5.yaml index 6e0c6f240..90d31beb1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Damning Testimony 3369a5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Damning Testimony 3369a5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379052 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,28 +20,27 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09059\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Illicit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Evidence\",\n \"token\": \"resource\"\ - \n }\n ],\n \"customizations\": [\n {\n \"name\": \"Search Warrant\"\ - ,\n \"xp\": 1,\n \"text\": \"While investigating using Damning Testimony,\ - \ you may ignore any effect or keyword on the investigated location that would trigger.\"\ - \n },\n {\n \"name\": \"Fabricated Evidence\",\n \"xp\": 2,\n \ - \ \"text\": \"Damning Testimony enters play with 2 additional evidence on it.\"\ - ,\n \"replaces\": {\n \"uses\": [\n {\n \"count\"\ - : 5,\n \"type\": \"Evidence\",\n \"token\": \"resource\"\n\ - \ }\n ]\n }\n },\n {\n \"name\": \"Blackmail\",\n\ - \ \"xp\": 2,\n \"text\": \"You get +2 Intellect while investigating using\ - \ Damning Testimony.\"\n },\n {\n \"name\": \"Extort\",\n \"xp\"\ - : 3,\n \"text\": \"When you successfully investigate using Damning Testimony,\ - \ you may spend 1 evidence to automatically evade the chosen enemy.\"\n },\n\ - \ {\n \"name\": \"Surveil\",\n \"xp\": 3,\n \"text\": \"You may\ - \ use Damning Testimony\uFFFD\u20AC\uFFFDs ability to investigate the chosen enemy\uFFFD\ - \u20AC\uFFFDs location instead of your location.\"\n },\n {\n \"name\"\ + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Illicit.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Evidence\",\n\ + \ \"token\": \"resource\"\n }\n ],\n \"customizations\": [\n {\n \ + \ \"name\": \"Search Warrant\",\n \"xp\": 1,\n \"text\": \"While investigating\ + \ using Damning Testimony, you may ignore any effect or keyword on the investigated\ + \ location that would trigger.\"\n },\n {\n \"name\": \"Fabricated Evidence\"\ + ,\n \"xp\": 2,\n \"text\": \"Damning Testimony enters play with 2 additional\ + \ evidence on it.\",\n \"replaces\": {\n \"uses\": [\n {\n\ + \ \"count\": 5,\n \"type\": \"Evidence\",\n \"\ + token\": \"resource\"\n }\n ]\n }\n },\n {\n \"\ + name\": \"Blackmail\",\n \"xp\": 2,\n \"text\": \"You get +2 Intellect\ + \ while investigating using Damning Testimony.\"\n },\n {\n \"name\"\ + : \"Extort\",\n \"xp\": 3,\n \"text\": \"When you successfully investigate\ + \ using Damning Testimony, you may spend 1 evidence to automatically evade the chosen\ + \ enemy.\"\n },\n {\n \"name\": \"Surveil\",\n \"xp\": 3,\n \ + \ \"text\": \"You may use Damning Testimony\u2019s ability to investigate the chosen\ + \ enemy\u2019s location instead of your location.\"\n },\n {\n \"name\"\ : \"Expose\",\n \"xp\": 4,\n \"text\": \"When you successfully investigate\ \ using Damning Testimony, you may spend X evidence to discard the chosen enemy\ - \ if it is non-Elite. X is that enemy\uFFFD\u20AC\uFFFDs remaining health.\"\n \ - \ }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" + \ if it is non-Elite. X is that enemy\u2019s remaining health.\"\n }\n ],\n\ + \ \"cycle\": \"The Scarlet Keys\"\n}" GUID: 3369a5 Grid: true GridProjection: false @@ -66,9 +65,9 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 359.21 - rotY: 270.01 - rotZ: 359.14 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daniela Reyes 444830.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daniela Reyes 444830.yaml index 53e83eb3e..a4199225e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daniela Reyes 444830.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daniela Reyes 444830.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379500 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3795': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.76 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daniela Reyes df8ec4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daniela Reyes df8ec4.yaml index b09e1d21f..b5f00d64f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daniela Reyes df8ec4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daniela Reyes df8ec4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379201 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3792': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"08001-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"08001-m\",\n \"type\": \"Minicard\"\n}" GUID: df8ec4 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 2.15 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daredevil (2) b3cad4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daredevil (2) b3cad4.yaml index 51969f055..7ac59c629 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daredevil (2) b3cad4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daredevil (2) b3cad4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 447633 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4476': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06240\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 2,\n \"traits\": \"Fortune. Practiced.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n\ - }" + ,\n \"level\": 2,\n \"traits\": \"Fortune. Practiced.\",\n \"wildIcons\": 1,\n\ + \ \"cycle\": \"The Dream-Eaters\"\n}" GUID: b3cad4 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.68 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daredevil e4688b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daredevil e4688b.yaml index e321d3a7e..6bd26bf97 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daredevil e4688b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daredevil e4688b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538616 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60318\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 0,\n \"traits\": \"Fortune. Practiced.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\ - \n}" + ,\n \"level\": 0,\n \"traits\": \"Fortune. Practiced.\",\n \"wildIcons\": 1,\n\ + \ \"cycle\": \"Investigator Packs\"\n}" GUID: e4688b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.14 posY: 3.74 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daring 91e53c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daring 91e53c.yaml index fc055353b..0115901ac 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daring 91e53c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daring 91e53c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379827 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3798': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06111\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 3,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"wildIcons\": 3,\n \"cycle\"\ + : \"The Dream-Eaters\"\n}" GUID: 91e53c Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 5.35 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daring Maneuver (2) fc82a5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daring Maneuver (2) fc82a5.yaml index 8326c4922..738599707 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daring Maneuver (2) fc82a5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daring Maneuver (2) fc82a5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538620 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60322\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Gambit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Gambit.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: fc82a5 Grid: true GridProjection: false @@ -44,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 9.13 - posY: 3.68 + posY: 3.69 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Daring Maneuver cc6b14.yaml b/unpacked/Bag All Player Cards 15bb07/Card Daring Maneuver cc6b14.yaml index 03c4624c0..83a49454b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Daring Maneuver cc6b14.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Daring Maneuver cc6b14.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368706 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3687': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03030\",\n \"alternate_ids\": [\n \"60313\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 0,\n \"level\": 0,\n\ - \ \"traits\": \"Gambit.\",\n \"permanent\": false,\n \"weakness\": false,\n \ - \ \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" + \ \"traits\": \"Gambit.\",\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\ + \n}" GUID: cc6b14 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 9.13 posY: 5.45 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dario El-Amin 5ec1a2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dario El-Amin 5ec1a2.yaml index 2b42251ac..09b607bcc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dario El-Amin 5ec1a2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dario El-Amin 5ec1a2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368630 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3686': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Unscrupulous Investor DragSelectable: true GMNotes: "{\n \"id\": \"03151\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Patron.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Patron.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 5ec1a2 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.01 posY: 3.88 posZ: -16.7 - rotX: 359.9 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Future 3aa40e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Future 3aa40e.yaml index a23dc040a..7f4ae313a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Future 3aa40e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Future 3aa40e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538701 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"60403\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Omen. Endtimes.\",\n \"permanent\": false,\n \"weakness\":\ - \ true,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"traits\": \"Omen. Endtimes.\",\n \"weakness\": true,\n \"cycle\": \"Investigator\ + \ Packs\"\n}" GUID: 3aa40e Grid: true GridProjection: false @@ -44,10 +44,10 @@ Tooltip: true Transform: posX: 9.0 posY: 3.79 - posZ: -16.69 - rotX: 0.26 - rotY: 270.01 - rotZ: 359.94 + posZ: -16.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Horse 1b4434.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Horse 1b4434.yaml index bc7532e17..d3dc9f4db 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Horse 1b4434.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Horse 1b4434.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368833 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02234\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Condition.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Condition.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 1b4434 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.68 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Insight f08934.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Insight f08934.yaml index 60d23ef71..6aa837219 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Insight f08934.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Insight f08934.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 444260 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4442': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05014\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"startsInHand\": true,\n \"cost\": 2,\n \"traits\": \"Insight.\",\n \"\ + cycle\": \"The Circle Undone\"\n}" GUID: f08934 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 5.1 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Memory 580a4d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Memory 580a4d.yaml index 367331a49..1abf83b5f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Memory 580a4d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Memory 580a4d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 584101 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5841': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Advanced DragSelectable: true GMNotes: "{\n \"id\": \"90019\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 4,\n \"traits\": \"Spell.\",\n \"weakness\": true,\n \"cycle\"\ + : \"Standalone\"\n}" GUID: 580a4d Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.98 posY: 4.01 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Memory 98c8d8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Memory 98c8d8.yaml index f4e53726a..6d7faec63 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Memory 98c8d8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Memory 98c8d8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587209 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5872': BackIsHidden: true @@ -20,8 +20,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01513\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"cycle\": \"Core\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Spell.\",\n \"cycle\": \"Core\"\n}" GUID: 98c8d8 Grid: true GridProjection: false @@ -45,9 +44,9 @@ Transform: posX: 49.08 posY: 2.33 posZ: -96.09 - rotX: 359.17 + rotX: 359.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Memory c025bf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Memory c025bf.yaml index 48001cf64..5f7582d99 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Memory c025bf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Memory c025bf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230527 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2305': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Signature DragSelectable: true GMNotes: "{\n \"id\": \"01013\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"cycle\": \"Core\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Spell.\",\n \"weakness\": true,\n \"cycle\"\ + : \"Core\"\n}" GUID: c025bf Grid: true GridProjection: false @@ -46,8 +46,8 @@ Transform: posY: 3.72 posZ: -16.71 rotX: 0.0 - rotY: 269.9 - rotZ: 359.97 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Pact dd3d09.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Pact dd3d09.yaml index a38ad3b74..b60f8f982 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Pact dd3d09.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Pact dd3d09.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 440813 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4408': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"04038\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Pact.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: dd3d09 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 3.66 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Prophecy (Taboo) 94cdf6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Prophecy (Taboo) 94cdf6.yaml index c0bc67e37..8a7fdf651 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Prophecy (Taboo) 94cdf6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Prophecy (Taboo) 94cdf6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558210 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -19,11 +19,10 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"04032-t\",\n \"alternate_ids\": [\n \"60417\"\n ],\n\ +GMNotes: "{\n \"id\": \"04032-t\",\n \"alternate_ids\": [\n \"60417-t\"\n ],\n\ \ \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\":\ - \ 0,\n \"traits\": \"Augury.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + \ 0,\n \"traits\": \"Augury.\",\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ + \ 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 94cdf6 Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 21.61 posY: 4.32 posZ: -56.29 - rotX: 0.13 - rotY: 269.82 - rotZ: 2.84 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Prophecy da7613.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Prophecy da7613.yaml index e39a26841..69224f939 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Prophecy da7613.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Prophecy da7613.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230309 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04032\",\n \"alternate_ids\": [\n \"60417\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 0,\n\ - \ \"traits\": \"Augury.\",\n \"permanent\": false,\n \"weakness\": false,\n \ - \ \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\ - \n}" + \ \"traits\": \"Augury.\",\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n\ + \ \"cycle\": \"The Forgotten Age\"\n}" GUID: da7613 Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 8.97 posY: 3.8 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dark Ritual 272e6c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dark Ritual 272e6c.yaml index df868ec18..1812c9f62 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dark Ritual 272e6c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dark Ritual 272e6c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 554120 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5541': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07026\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Ritual. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Innsmouth\ - \ Conspiracy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Ritual. Cursed.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 272e6c Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.17 posY: 3.02 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Darrell Simmons 3b3b7a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Darrell Simmons 3b3b7a.yaml index ddbf3f39e..f5ff5dfa6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Darrell Simmons 3b3b7a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Darrell Simmons 3b3b7a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 846104 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8461': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09015-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"09015-m\",\n \"type\": \"Minicard\"\n}" GUID: 3b3b7a Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 14.92 posY: 2.21 posZ: 57.24 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Darrell Simmons 5d3d67.yaml b/unpacked/Bag All Player Cards 15bb07/Card Darrell Simmons 5d3d67.yaml index b295ef158..09ec528d6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Darrell Simmons 5d3d67.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Darrell Simmons 5d3d67.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 843404 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8434': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.6 posY: 2.21 posZ: 52.39 - rotX: 0.02 - rotY: 180.01 - rotZ: 359.98 - scaleX: 1.0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.0 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Darrell's Kodak caa382.yaml b/unpacked/Bag All Player Cards 15bb07/Card Darrell's Kodak caa382.yaml index bce8edc4b..82e947004 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Darrell's Kodak caa382.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Darrell's Kodak caa382.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379010 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -19,10 +19,10 @@ CustomDeck: UniqueBack: false Description: Proof in the Pudding DragSelectable: true -GMNotes: "{\n \"id\": \"09016\",\n \"type\": \"Asset\",\n \"startsInPlay\": true,\n\ - \ \"cost\": 2,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"The Scarlet Keys\"\n}" +GMNotes: "{\n \"id\": \"09016\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ + ,\n \"startsInPlay\": true,\n \"cost\": 2,\n \"traits\": \"Item. Tool.\",\n \ + \ \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\"\ + : \"The Scarlet Keys\"\n}" GUID: caa382 Grid: true GridProjection: false @@ -47,9 +47,9 @@ Transform: posX: 10.22 posY: 2.2 posZ: 44.98 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dauntless Spirit (1) adc8b6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dauntless Spirit (1) adc8b6.yaml index fc53f0054..9ad4dab22 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dauntless Spirit (1) adc8b6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dauntless Spirit (1) adc8b6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378907 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08078\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 1,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"dynamicIcons\": true,\n \"cycle\": \"Edge of the Earth\"\ - \n}" + ,\n \"level\": 1,\n \"traits\": \"Innate. Developed.\",\n \"dynamicIcons\": true,\n\ + \ \"cycle\": \"Edge of the Earth\"\n}" GUID: adc8b6 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.18 posY: 2.95 posZ: -16.73 - rotX: 359.91 - rotY: 269.8 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card David Renfield (Taboo) 7a73c4.yaml b/unpacked/Bag All Player Cards 15bb07/Card David Renfield (Taboo) 7a73c4.yaml index a311f9daf..fa8c9f7a6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card David Renfield (Taboo) 7a73c4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card David Renfield (Taboo) 7a73c4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558200 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Esteemed Eschatologist DragSelectable: true GMNotes: "{\n \"id\": \"03112-t\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Patron.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Patron.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 7a73c4 Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 21.62 posY: 4.33 posZ: -57.28 - rotX: 0.09 - rotY: 269.81 - rotZ: 2.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card David Renfield 1f8539.yaml b/unpacked/Bag All Player Cards 15bb07/Card David Renfield 1f8539.yaml index e586c24aa..7315be90c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card David Renfield 1f8539.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card David Renfield 1f8539.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230325 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Esteemed Eschatologist DragSelectable: true GMNotes: "{\n \"id\": \"03112\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Patron.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Patron.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 1f8539 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.78 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Day of Reckoning e701af.yaml b/unpacked/Bag All Player Cards 15bb07/Card Day of Reckoning e701af.yaml index 5b1582ffd..bf39323f2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Day of Reckoning e701af.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Day of Reckoning e701af.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 586334 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5863': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"07040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Endtimes.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"traits\": \"Endtimes.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: e701af Grid: true GridProjection: false @@ -43,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 9.16 - posY: 4.16 + posY: 4.17 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.97 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dayana Esperence (3) 4f2489.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dayana Esperence (3) 4f2489.yaml index 9f79bca19..6f2e525ec 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dayana Esperence (3) 4f2489.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dayana Esperence (3) 4f2489.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379616 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3796': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Deals with "Devils" DragSelectable: true GMNotes: "{\n \"id\": \"05279\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Ally. Witch.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Ally. Witch.\",\n \"willpowerIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n\ + }" GUID: 4f2489 Grid: true GridProjection: false @@ -41,15 +41,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.76 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card De Vermis Mysteriis (2) b40b98.yaml b/unpacked/Bag All Player Cards 15bb07/Card De Vermis Mysteriis (2) b40b98.yaml index 4bad8a140..ecc426eb9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card De Vermis Mysteriis (2) b40b98.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card De Vermis Mysteriis (2) b40b98.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 293313 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2933': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Signs of the Black Stars DragSelectable: true GMNotes: "{\n \"id\": \"05235\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: b40b98 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 5.03 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Deafening Silence 0821d4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Deafening Silence 0821d4.yaml index 4f57ab502..a33dec13b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Deafening Silence 0821d4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Deafening Silence 0821d4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379009 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09014\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Omen.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - cycle\": \"The Scarlet Keys\"\n}" + ,\n \"traits\": \"Omen.\",\n \"weakness\": true,\n \"cycle\": \"The Scarlet Keys\"\ + \n}" GUID: 0821d4 Grid: true GridProjection: false @@ -39,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- ScenarioCard +- PlayerCard Tooltip: true Transform: posX: 10.69 posY: 2.44 posZ: 43.88 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Death ��‚�� XIII (1) 2e5b03.yaml b/unpacked/Bag All Player Cards 15bb07/Card Death ∙ XIII (1) 2e5b03.yaml similarity index 79% rename from unpacked/Bag All Player Cards 15bb07/Card Death ��‚�� XIII (1) 2e5b03.yaml rename to unpacked/Bag All Player Cards 15bb07/Card Death ∙ XIII (1) 2e5b03.yaml index a18dec809..97ab9966d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Death ��‚�� XIII (1) 2e5b03.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Death ∙ XIII (1) 2e5b03.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 290207 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2902': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Free from the Past DragSelectable: true GMNotes: "{\n \"id\": \"05027\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"cycle\": \"The\ + \ Circle Undone\"\n}" GUID: 2e5b03 Grid: true GridProjection: false @@ -34,21 +34,21 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Card -Nickname: "Death \uFFFD\uFFFD\u201A\uFFFD\uFFFD XIII (1)" +Nickname: "Death \u2219 XIII (1)" SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.81 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Deciphered Reality (5) 8b0193.yaml b/unpacked/Bag All Player Cards 15bb07/Card Deciphered Reality (5) 8b0193.yaml index 19d297462..816b6e891 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Deciphered Reality (5) 8b0193.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Deciphered Reality (5) 8b0193.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430660 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02303\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 2,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Insight.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 8b0193 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 5.27 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Jumanji b46db2/Custom_Model_Bag 1 Home Invasion e11d84/Card Backyard b30c5d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Deck of Possibilities fefdfa.yaml similarity index 50% rename from unpacked/Custom_Model_Bag Jumanji b46db2/Custom_Model_Bag 1 Home Invasion e11d84/Card Backyard b30c5d.yaml rename to unpacked/Bag All Player Cards 15bb07/Card Deck of Possibilities fefdfa.yaml index b3362d076..bc2aa7c41 100644 --- a/unpacked/Custom_Model_Bag Jumanji b46db2/Custom_Model_Bag 1 Home Invasion e11d84/Card Backyard b30c5d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Deck of Possibilities fefdfa.yaml @@ -3,24 +3,24 @@ AltLookAngle: y: 0.0 z: 0.0 Autoraise: true -CardID: 270206 +CardID: 266432 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: - '2702': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/ - NumHeight: 2 + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1874087305860121579/39578AC78E34DAA169AB4DE4246BB1E002528B8C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1874087305860119704/FCC908E5C313759E9E478D5952C74179DF80ADA8/ + NumHeight: 5 NumWidth: 7 Type: 0 UniqueBack: true -Description: '' +Description: Tychokinetic Implement DragSelectable: true GMNotes: '' -GUID: b30c5d +GUID: fefdfa Grid: true GridProjection: false Hands: true @@ -32,18 +32,18 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Card -Nickname: Backyard +Nickname: Deck of Possibilities SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -17.12 - posY: 1.62 - posZ: -0.03 - rotX: 359.92 + posX: 78.13 + posY: 3.29 + posZ: 27.63 + rotX: 359.0 rotY: 270.0 - rotZ: 180.02 + rotZ: 357.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Decorated Skull (3) 946a58.yaml b/unpacked/Bag All Player Cards 15bb07/Card Decorated Skull (3) 946a58.yaml index 2ce7783c9..a95a55194 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Decorated Skull (3) 946a58.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Decorated Skull (3) 946a58.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545204 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5452': BackIsHidden: true @@ -21,10 +21,9 @@ Description: Doom Begets Doom DragSelectable: true GMNotes: "{\n \"id\": \"53005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Item. Relic. Cursed.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 0,\n \"type\": \"Charge\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the Forgotten\ - \ Age\"\n}" + willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\"\ + : 0,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n\ + \ \"cycle\": \"Return to the Forgotten Age\"\n}" GUID: 946a58 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.11 posY: 3.84 posZ: -16.72 - rotX: 359.97 - rotY: 269.84 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Decorated Skull 07350b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Decorated Skull 07350b.yaml index e156cd44d..46a72c9c1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Decorated Skull 07350b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Decorated Skull 07350b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368618 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3686': BackIsHidden: true @@ -21,9 +21,9 @@ Description: Doom Begets Doom DragSelectable: true GMNotes: "{\n \"id\": \"04026\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Item. Relic. Cursed.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 0,\n \"type\": \"Charge\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}" + agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 0,\n \"type\": \"\ + Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten\ + \ Age\"\n}" GUID: 07350b Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.69 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Decoy 2ee50e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Decoy 2ee50e.yaml index 0a082d8f5..bdef01416 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Decoy 2ee50e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Decoy 2ee50e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 292914 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2929': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05234\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Favor. Service.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Favor. Service.\",\n \"agilityIcons\"\ + : 2,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 2ee50e Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.78 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Deduction (2) 95272b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Deduction (2) 95272b.yaml index 235b2b67d..1a1efc7b8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Deduction (2) 95272b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Deduction (2) 95272b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430642 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02150\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 2,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\ - \n}" + ,\n \"level\": 2,\n \"traits\": \"Practiced. Expert.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 95272b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 25.72 posY: 3.53 posZ: -7.11 - rotX: 0.64 - rotY: 269.99 - rotZ: 359.66 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Deduction b265c4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Deduction b265c4.yaml index 99b37a8dd..afaac71d3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Deduction b265c4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Deduction b265c4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368402 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01039\",\n \"alternate_ids\": [\n \"60219\"\n ],\n \ \ \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"level\": 0,\n \"traits\"\ - : \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"Core\"\n}" + : \"Practiced.\",\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}" GUID: b265c4 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 20.51 posY: 1.99 posZ: -102.6 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Deduction bc4a4c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Deduction bc4a4c.yaml index 146ec4fc6..ee5d42c0b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Deduction bc4a4c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Deduction bc4a4c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587204 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5872': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01539\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"intellectIcons\": 1,\n \"\ + cycle\": \"Core\"\n}" GUID: bc4a4c Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 78.81 posY: 3.34 posZ: 7.67 - rotX: 359.89 + rotX: 0.0 rotY: 270.0 - rotZ: 0.14 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Deep Knowledge b176fc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Deep Knowledge b176fc.yaml index 636a4f01d..70f64b095 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Deep Knowledge b176fc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Deep Knowledge b176fc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 581517 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5815': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07023\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight. Cursed.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: b176fc Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.96 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Defensive Stance (1) 62e4f4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Defensive Stance (1) 62e4f4.yaml index f5814a54d..baf422d2f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Defensive Stance (1) 62e4f4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Defensive Stance (1) 62e4f4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379014 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08024\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\"\ - ,\n \"level\": 1,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"dynamicIcons\": true,\n \"cycle\": \"Edge of the Earth\"\ - \n}" + ,\n \"level\": 1,\n \"traits\": \"Practiced. Expert.\",\n \"dynamicIcons\": true,\n\ + \ \"cycle\": \"Edge of the Earth\"\n}" GUID: 62e4f4 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.2 posY: 2.36 posZ: -16.74 - rotX: 359.96 - rotY: 269.8 - rotZ: 359.77 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Defiance (2) bf3dd1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Defiance (2) bf3dd1.yaml index 689552aa1..d0fb8197d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Defiance (2) bf3dd1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Defiance (2) bf3dd1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230338 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04198\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\"\ - ,\n \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\ - \n}" + ,\n \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"wildIcons\": 1,\n\ + \ \"cycle\": \"The Forgotten Age\"\n}" GUID: bf3dd1 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 5.1 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Defiance 59b24f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Defiance 59b24f.yaml index 71b0a7a63..d2ba00107 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Defiance 59b24f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Defiance 59b24f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230302 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02190\",\n \"alternate_ids\": [\n \"60418\"\n ],\n \ \ \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"level\": 0,\n \"traits\"\ - : \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\"\ - : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + : \"Innate.\",\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 59b24f Grid: true GridProjection: false @@ -43,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.03 + posX: 9.04 posY: 3.78 posZ: -16.7 - rotX: 359.9 - rotY: 269.97 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Delay the Inevitable 683937.yaml b/unpacked/Bag All Player Cards 15bb07/Card Delay the Inevitable 683937.yaml index 58ca04b68..6c9dc7856 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Delay the Inevitable 683937.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Delay the Inevitable 683937.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 431007 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4310': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05021\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Spirit. Tactic.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"cycle\": \"The Circle Undone\"\n}" + \ \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\ + \n}" GUID: '683937' Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 8.97 posY: 3.67 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Delilah O'Rourke (3) 97a795.yaml b/unpacked/Bag All Player Cards 15bb07/Card Delilah O'Rourke (3) 97a795.yaml index 2d9c71eb7..f2e64e186 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Delilah O'Rourke (3) 97a795.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Delilah O'Rourke (3) 97a795.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449035 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4490': BackIsHidden: true @@ -21,8 +21,8 @@ Description: Syndicate Assassin DragSelectable: true GMNotes: "{\n \"id\": \"06281\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Ally. Criminal. Syndicate.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ + \n}" GUID: 97a795 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.07 posY: 3.78 posZ: -16.71 - rotX: 0.52 - rotY: 269.92 - rotZ: 359.64 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Delve Too Deep (Taboo) d4a68a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Delve Too Deep (Taboo) d4a68a.yaml index 312ae0062..6312dac30 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Delve Too Deep (Taboo) d4a68a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Delve Too Deep (Taboo) d4a68a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450615 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02111-t\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"victory\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"victory\":\ + \ 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: d4a68a Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.76 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Delve Too Deep 14e212.yaml b/unpacked/Bag All Player Cards 15bb07/Card Delve Too Deep 14e212.yaml index 1beae81ba..03247a561 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Delve Too Deep 14e212.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Delve Too Deep 14e212.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230310 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02111\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"victory\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"victory\":\ + \ 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 14e212 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.23 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dendromorphosis 121b2d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dendromorphosis 121b2d.yaml index 3cf206f6d..afa8c7dd9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dendromorphosis 121b2d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dendromorphosis 121b2d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545211 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5452': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"53012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse. Flora.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1,\n \"cycle\": \"Return to the Forgotten Age\"\n}" + ,\n \"traits\": \"Curse. Flora.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"cycle\": \"Return to the Forgotten Age\"\n}" GUID: 121b2d Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.03 posY: 3.69 posZ: -16.7 - rotX: 359.89 - rotY: 269.98 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Deny Existence (5) d24531.yaml b/unpacked/Bag All Player Cards 15bb07/Card Deny Existence (5) d24531.yaml index 13187a203..b61accea3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Deny Existence (5) d24531.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Deny Existence (5) d24531.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379617 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3796': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05280\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 5,\n \"traits\": \"Spell. Paradox.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 0,\n \"level\": 5,\n \"traits\": \"Spell. Paradox.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: d24531 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.2 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Deny Existence 8aa0c3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Deny Existence 8aa0c3.yaml index cbf00e069..2b8730e4e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Deny Existence 8aa0c3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Deny Existence 8aa0c3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430908 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4309': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05032\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spell. Paradox.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spell. Paradox.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 8aa0c3 Grid: true GridProjection: false @@ -46,8 +45,8 @@ Transform: posX: 9.11 posY: 3.79 posZ: -16.72 - rotX: 359.94 - rotY: 269.84 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Desperate Search 45bdf0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Desperate Search 45bdf0.yaml index be29427f2..5bfd91a89 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Desperate Search 45bdf0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Desperate Search 45bdf0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368507 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03117\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"level\": 0,\n \"traits\": \"Desperate.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"intellectIcons\": 4,\n \"cycle\": \"The Path to Carcosa\"\ - \n}" + ,\n \"level\": 0,\n \"traits\": \"Desperate.\",\n \"intellectIcons\": 4,\n \"\ + cycle\": \"The Path to Carcosa\"\n}" GUID: 45bdf0 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 5.33 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Detached from Reality d12359.yaml b/unpacked/Bag All Player Cards 15bb07/Card Detached from Reality d12359.yaml index 260685335..236345312 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Detached from Reality d12359.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Detached from Reality d12359.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587508 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5875': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06014\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"bonded\": [\n {\n \"count\": 1,\n \"id\": \"06015b\"\n }\n\ - \ ],\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"The Dream-Eaters\"\ + \n}" GUID: d12359 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 25.43 posY: 3.53 posZ: -7.47 - rotX: 0.7 + rotX: 1.0 rotY: 270.0 - rotZ: 0.4 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Detective's Colt 1911s f4bac6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Detective's Colt 1911s f4bac6.yaml index 095d56b5f..1e9bf7721 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Detective's Colt 1911s f4bac6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Detective's Colt 1911s f4bac6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 592055 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5920': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05009\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 4,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 4,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"\ + count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n \ + \ ],\n \"cycle\": \"The Circle Undone\"\n}" GUID: f4bac6 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.1 posY: 3.71 posZ: -16.72 - rotX: 0.04 - rotY: 269.86 - rotZ: 359.94 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Devil's Luck (1) 812685.yaml b/unpacked/Bag All Player Cards 15bb07/Card Devil's Luck (1) 812685.yaml index ed32bb106..5f0922000 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Devil's Luck (1) 812685.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Devil's Luck (1) 812685.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368835 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03157\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Fortune.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Fortune.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: '812685' Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.15 posY: 3.9 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake (promo version) 389792.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake (promo version) 389792.yaml index a390fd17d..2124264dd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake (promo version) 389792.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake (promo version) 389792.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 274137 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2741': BackIsHidden: true @@ -41,17 +41,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 - posY: 1.55 + posY: 1.54 posZ: -73.09 - rotX: 0.27 + rotX: 0.0 rotY: 180.0 - rotZ: 359.92 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake 57668a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake 57668a.yaml index ef1da191a..f94839f48 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake 57668a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake 57668a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553203 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5532': BackIsHidden: true @@ -20,7 +20,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07004-m\",\n \"alternate_ids\": [\n \"98016-m\"\n ],\n\ - \ \"type\": \"Minicard\",\n \"traits\": \"\"\n}" + \ \"type\": \"Minicard\"\n}" GUID: 57668a Grid: true GridProjection: false @@ -38,15 +38,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.7 posZ: -18.15 - rotX: 359.91 - rotY: 269.95 - rotZ: 0.09 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake e015f8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake e015f8.yaml index c3f19b18e..eee262fec 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake e015f8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake e015f8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553103 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5531': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.55 posZ: -73.09 - rotX: 0.08 + rotX: 0.0 rotY: 180.0 - rotZ: 359.96 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake fc63ca.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake fc63ca.yaml index 13fee23e0..b33616553 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake fc63ca.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dexter Drake fc63ca.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 274300 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2743': BackIsHidden: true @@ -20,7 +20,7 @@ CustomDeck: Description: Promo version DragSelectable: true GMNotes: "{\n \"id\": \"07004-promo-m\",\n \"alternate_ids\": [\n \"98016-m\"\ - \n ],\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}" + \n ],\n \"type\": \"Minicard\"\n}" GUID: fc63ca Grid: true GridProjection: false @@ -38,15 +38,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.88 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Diana Stanley 32b091.yaml b/unpacked/Bag All Player Cards 15bb07/Card Diana Stanley 32b091.yaml index 40055a247..c72c798bb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Diana Stanley 32b091.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Diana Stanley 32b091.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 272125 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2721': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.58 posZ: -73.09 - rotX: 0.19 + rotX: 0.0 rotY: 180.0 - rotZ: 359.94 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Diana Stanley 359ef4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Diana Stanley 359ef4.yaml index 5f593fc4a..65fa2c36a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Diana Stanley 359ef4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Diana Stanley 359ef4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 591001 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5910': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"05004-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"05004-m\",\n \"type\": \"Minicard\"\n}" GUID: 359ef4 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.84 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dig Deep (2) 0414b4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dig Deep (2) 0414b4.yaml index e086ad240..2c6d6daf6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dig Deep (2) 0414b4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dig Deep (2) 0414b4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368845 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"50009\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"agilityIcons\":\ - \ 2,\n \"cycle\": \"Return to the Night of the Zealot\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Return to the Night of the Zealot\"\ + \n}" GUID: 0414b4 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.71 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dig Deep (4) 734b45.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dig Deep (4) 734b45.yaml index d9c83c758..1902ecb00 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dig Deep (4) 734b45.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dig Deep (4) 734b45.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449609 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4496': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07270\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"agilityIcons\":\ - \ 2,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Resource\",\n\ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\ - \n}" + ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 2,\n \"agilityIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \"\ + replenish\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n\ + \ }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 734b45 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.13 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dig Deep fc9e1b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dig Deep fc9e1b.yaml index 805bdbeac..9c7a453df 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dig Deep fc9e1b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dig Deep fc9e1b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368831 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01077\",\n \"alternate_ids\": [\n \"01577\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 2,\n \"level\"\ - : 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}" + : 0,\n \"traits\": \"Talent.\",\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ + \ 1,\n \"cycle\": \"Core\"\n}" GUID: fc9e1b Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 270.04 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dimensional Beam Machine fb4fff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dimensional Beam Machine fb4fff.yaml index 63d9e0164..93016aa8a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dimensional Beam Machine fb4fff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dimensional Beam Machine fb4fff.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558008 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5580': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"87032\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Item. Science. Tool. Future.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"uses\": [\n {\n \ - \ \"count\": 2,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n\ - \ }\n ],\n \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Item. Science. Tool. Future.\",\n \"wildIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}" GUID: fb4fff Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 78.5 posY: 3.35 posZ: 6.88 rotX: 0.0 - rotY: 269.97 - rotZ: 358.83 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Directive 07e7bd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Directive 07e7bd.yaml index 77a77a7fc..d257dafbd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Directive 07e7bd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Directive 07e7bd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 536204 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5362': BackIsHidden: true @@ -20,8 +20,7 @@ CustomDeck: Description: Leave No Doubt DragSelectable: true GMNotes: "{\n \"id\": \"90029\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\"\ - : \"Standalone\"\n}" + ,\n \"permanent\": true,\n \"cycle\": \"Standalone\"\n}" GUID: 07e7bd Grid: true GridProjection: false @@ -39,16 +38,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.17 posY: 3.17 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Directive 0994c9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Directive 0994c9.yaml index 59d966311..c2795d3af 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Directive 0994c9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Directive 0994c9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 536203 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5362': BackIsHidden: true @@ -20,8 +20,7 @@ CustomDeck: Description: Seek the Truth DragSelectable: true GMNotes: "{\n \"id\": \"90028\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\"\ - : \"Standalone\"\n}" + ,\n \"permanent\": true,\n \"cycle\": \"Standalone\"\n}" GUID: 0994c9 Grid: true GridProjection: false @@ -39,15 +38,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.17 posY: 3.23 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Directive 133521.yaml b/unpacked/Bag All Player Cards 15bb07/Card Directive 133521.yaml index 728249669..794d34b73 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Directive 133521.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Directive 133521.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 536200 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5362': BackIsHidden: true @@ -20,8 +20,7 @@ CustomDeck: Description: Due Diligence DragSelectable: true GMNotes: "{\n \"id\": \"90025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\"\ - : \"Standalone\"\n}" + ,\n \"permanent\": true,\n \"cycle\": \"Standalone\"\n}" GUID: '133521' Grid: true GridProjection: false @@ -39,16 +38,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.92 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Directive 2d9256.yaml b/unpacked/Bag All Player Cards 15bb07/Card Directive 2d9256.yaml index a3223d770..b3841d77a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Directive 2d9256.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Directive 2d9256.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 536202 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5362': BackIsHidden: true @@ -20,8 +20,7 @@ CustomDeck: Description: Consult Experts DragSelectable: true GMNotes: "{\n \"id\": \"90027\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\"\ - : \"Standalone\"\n}" + ,\n \"permanent\": true,\n \"cycle\": \"Standalone\"\n}" GUID: 2d9256 Grid: true GridProjection: false @@ -39,16 +38,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.18 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Directive 706176.yaml b/unpacked/Bag All Player Cards 15bb07/Card Directive 706176.yaml index 48a228e93..dd573cfa2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Directive 706176.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Directive 706176.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 536201 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5362': BackIsHidden: true @@ -20,8 +20,7 @@ CustomDeck: Description: Red Tape DragSelectable: true GMNotes: "{\n \"id\": \"90026\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\"\ - : \"Standalone\"\n}" + ,\n \"permanent\": true,\n \"cycle\": \"Standalone\"\n}" GUID: '706176' Grid: true GridProjection: false @@ -39,16 +38,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.0 posY: 3.93 posZ: -16.7 - rotX: 0.48 - rotY: 270.01 - rotZ: 359.88 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dirty Fighting (2) fa1be0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dirty Fighting (2) fa1be0.yaml index 2faa12036..e54ad9078 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dirty Fighting (2) fa1be0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dirty Fighting (2) fa1be0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379066 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,7 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09073\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Talent. Trick. Illicit.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1\n}" + \ \"combatIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: fa1be0 Grid: true GridProjection: false @@ -44,11 +44,11 @@ Tags: Tooltip: true Transform: posX: 16.67 - posY: 3.39 + posY: 3.38 posZ: 65.93 - rotX: 359.25 - rotY: 270.01 - rotZ: 359.18 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Disc of Itzamna (2) b00b76.yaml b/unpacked/Bag All Player Cards 15bb07/Card Disc of Itzamna (2) b00b76.yaml index c565b4237..25716af5a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Disc of Itzamna (2) b00b76.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Disc of Itzamna (2) b00b76.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430648 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -21,9 +21,8 @@ Description: Protective Amulet DragSelectable: true GMNotes: "{\n \"id\": \"01041\",\n \"alternate_ids\": [\n \"01541\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 3,\n \"level\": 2,\n\ - \ \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"\ - cycle\": \"Core\"\n}" + \ \"traits\": \"Item. Relic.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}" GUID: b00b76 Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 19.28 posY: 3.37 posZ: -57.07 - rotX: 359.45 - rotY: 270.01 - rotZ: 0.38 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Disc of Itzamna d6c44a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Disc of Itzamna d6c44a.yaml index e1bea998e..be145bad3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Disc of Itzamna d6c44a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Disc of Itzamna d6c44a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538805 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Protective Amulet DragSelectable: true GMNotes: "{\n \"id\": \"60207\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: d6c44a Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.1 posY: 3.71 posZ: -16.72 - rotX: 0.04 - rotY: 269.86 - rotZ: 359.94 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Discipline 081db4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Discipline 081db4.yaml index 092b3f987..0da0a7b3a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Discipline 081db4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Discipline 081db4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379406 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3794': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Quiescence of Thought DragSelectable: true GMNotes: "{\n \"id\": \"08012a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Unbroken.\",\n \"permanent\": true,\n \"weakness\": false,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Unbroken.\",\n \"permanent\": true,\n \"cycle\": \"Edge of\ + \ the Earth\"\n}" GUID: 081db4 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.44 posZ: -16.74 - rotX: 359.97 - rotY: 269.8 - rotZ: 359.72 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Discipline 3247da.yaml b/unpacked/Bag All Player Cards 15bb07/Card Discipline 3247da.yaml index 0388f0184..37a86c9de 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Discipline 3247da.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Discipline 3247da.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379408 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3794': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Balance of Body DragSelectable: true GMNotes: "{\n \"id\": \"08014a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Unbroken.\",\n \"permanent\": true,\n \"weakness\": false,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Unbroken.\",\n \"permanent\": true,\n \"cycle\": \"Edge of\ + \ the Earth\"\n}" GUID: 3247da Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.59 - posZ: -16.74 - rotX: 359.99 - rotY: 269.8 - rotZ: 359.62 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Discipline 5ff3bd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Discipline 5ff3bd.yaml index 350495376..4160e178b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Discipline 5ff3bd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Discipline 5ff3bd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379405 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3794': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Alignment of Spirit DragSelectable: true GMNotes: "{\n \"id\": \"08011a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Unbroken.\",\n \"permanent\": true,\n \"weakness\": false,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Unbroken.\",\n \"permanent\": true,\n \"cycle\": \"Edge of\ + \ the Earth\"\n}" GUID: 5ff3bd Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.52 - posZ: -16.74 - rotX: 359.98 - rotY: 269.8 - rotZ: 359.67 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Discipline e8d38d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Discipline e8d38d.yaml index 0452ec5c2..75f373e56 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Discipline e8d38d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Discipline e8d38d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379407 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3794': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Prescience of Fate DragSelectable: true GMNotes: "{\n \"id\": \"08013a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Unbroken.\",\n \"permanent\": true,\n \"weakness\": false,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Unbroken.\",\n \"permanent\": true,\n \"cycle\": \"Edge of\ + \ the Earth\"\n}" GUID: e8d38d Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.6 - posZ: -16.74 - rotX: 359.99 - rotY: 269.8 - rotZ: 359.62 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Disguise f170fc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Disguise f170fc.yaml index 24e5196b7..8037e3f19 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Disguise f170fc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Disguise f170fc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379055 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09062\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Talent. Trick. Illicit.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" + \ \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\"\ + : \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Scarlet\ + \ Keys\"\n}" GUID: f170fc Grid: true GridProjection: false @@ -48,9 +48,9 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 359.33 - rotY: 270.01 - rotZ: 359.27 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dissection Tools 95ca5d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dissection Tools 95ca5d.yaml index 866ba8508..60e47b937 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dissection Tools 95ca5d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dissection Tools 95ca5d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379036 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09043\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"agilityIcons\": 1\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tool. Science.\",\n \"\ + agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 95ca5d Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 358.75 - rotY: 270.02 - rotZ: 358.64 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Divination (1) 658588.yaml b/unpacked/Bag All Player Cards 15bb07/Card Divination (1) 658588.yaml index 84c37947b..91292f430 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Divination (1) 658588.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Divination (1) 658588.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378939 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08101\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Spell. Augury.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Spell. Augury.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n\ + }" GUID: '658588' Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 posY: 3.81 posZ: -16.69 - rotX: 359.74 - rotY: 270.01 - rotZ: 0.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Divination (4) 58f2af.yaml b/unpacked/Bag All Player Cards 15bb07/Card Divination (4) 58f2af.yaml index 27e8db298..b57a11ae8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Divination (4) 58f2af.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Divination (4) 58f2af.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378941 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08103\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell. Augury.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Charge\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n\ - }" + ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell. Augury.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 6,\n \ + \ \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ + : \"Edge of the Earth\"\n}" GUID: 58f2af Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.72 posZ: -16.73 - rotX: 359.89 - rotY: 269.8 - rotZ: 0.18 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dodge (2) 9ab750.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dodge (2) 9ab750.yaml index 6ca73dcd1..e5b322e54 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dodge (2) 9ab750.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dodge (2) 9ab750.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379016 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08026\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 2,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 9ab750 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.2 posY: 2.17 posZ: -16.74 - rotX: 359.94 - rotY: 269.8 - rotZ: 359.88 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dodge e0dff3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dodge e0dff3.yaml index 79aa0f0fb..d53821fc0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dodge e0dff3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dodge e0dff3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226313 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01023\",\n \"alternate_ids\": [\n \"60113\",\n \"\ 01523\"\n ],\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"cost\": 1,\n\ - \ \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\ - \n}" + \ \"level\": 0,\n \"traits\": \"Tactic.\",\n \"willpowerIcons\": 1,\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"Core\"\n}" GUID: e0dff3 Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 9.06 posY: 3.81 posZ: -16.71 - rotX: 0.05 - rotY: 269.94 - rotZ: 359.93 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Doomed ba2ae1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Doomed ba2ae1.yaml index e33af0390..152212977 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Doomed ba2ae1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Doomed ba2ae1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 440814 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4408': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"04040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \ - \ \"basicWeaknessCount\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"traits\": \"Curse.\",\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n\ + \ \"cycle\": \"The Forgotten Age\"\n}" GUID: ba2ae1 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.17 posY: 3.17 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Double or Nothing (Taboo) f98f6f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Double or Nothing (Taboo) f98f6f.yaml index cabe43098..5b44f2605 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Double or Nothing (Taboo) f98f6f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Double or Nothing (Taboo) f98f6f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450625 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02026-t\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"wildIcons\": 1,\n \"cycle\"\ + : \"The Dunwich Legacy\"\n}" GUID: f98f6f Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 3.8 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Double or Nothing efb09b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Double or Nothing efb09b.yaml index b24f2088a..f3193ad45 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Double or Nothing efb09b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Double or Nothing efb09b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 261701 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2617': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02026\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"wildIcons\": 1,\n \"cycle\"\ + : \"The Dunwich Legacy\"\n}" GUID: efb09b Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 4.67 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Double, Double (4) 0e0530.yaml b/unpacked/Bag All Player Cards 15bb07/Card Double, Double (4) 0e0530.yaml index 421c3fcce..bd1b9513d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Double, Double (4) 0e0530.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Double, Double (4) 0e0530.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378019 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3780': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05320\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 0e0530 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.11 posY: 3.94 posZ: -16.72 - rotX: 0.01 - rotY: 269.83 - rotZ: 359.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Down the Rabbit Hole b925fc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Down the Rabbit Hole b925fc.yaml index 2f3705c60..270c6ee87 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Down the Rabbit Hole b925fc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Down the Rabbit Hole b925fc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379049 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08059\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"Edge of the Earth\"\n}" GUID: b925fc Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.19 posZ: -16.74 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dowsing Rod (4) bcb13d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dowsing Rod (4) bcb13d.yaml index 061a77c10..7fe91e66c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dowsing Rod (4) bcb13d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dowsing Rod (4) bcb13d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379121 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09097\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2\n}" + ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Item. Charm.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: bcb13d Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 16.74 posY: 3.37 posZ: 65.49 - rotX: 359.89 + rotX: 0.0 rotY: 270.0 - rotZ: 0.27 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dowsing Rod 851e3a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dowsing Rod 851e3a.yaml index 2e6a107d1..35009bd2e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dowsing Rod 851e3a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dowsing Rod 851e3a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379107 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09083\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Scarlet\ - \ Keys\"\n}" + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 851e3a Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 16.67 posY: 3.37 posZ: 65.93 - rotX: 359.02 - rotY: 270.01 - rotZ: 358.94 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dr. Elli Horowitz 27e7b3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dr. Elli Horowitz 27e7b3.yaml index f833061b9..91265afff 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dr. Elli Horowitz 27e7b3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dr. Elli Horowitz 27e7b3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368433 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Assistant Curator DragSelectable: true GMNotes: "{\n \"id\": \"04021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Assistant.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Assistant.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 27e7b3 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.09 posY: 3.7 posZ: -16.71 - rotX: 359.96 - rotY: 269.88 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dr. Francis Morgan f03306.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dr. Francis Morgan f03306.yaml index d0f4c32c5..c40d90b7b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dr. Francis Morgan f03306.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dr. Francis Morgan f03306.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232907 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2329': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Professor of Archaeology DragSelectable: true GMNotes: "{\n \"id\": \"02080\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Ally. Miskatonic.\",\n \"combatIcons\": 1,\n\ + \ \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: f03306 Grid: true GridProjection: false @@ -40,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.03 posY: 3.68 posZ: -16.7 - rotX: 359.95 - rotY: 269.98 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dr. Henry Armitage 9229a8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dr. Henry Armitage 9229a8.yaml index f32d99847..71d5eb5af 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dr. Henry Armitage 9229a8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dr. Henry Armitage 9229a8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 588913 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5889': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: The Head Librarian DragSelectable: true GMNotes: "{\n \"id\": \"02040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\ - \n}" + ,\n \"cost\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n \"wildIcons\": 2,\n \ + \ \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 9229a8 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.73 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dr. Milan Christopher (Taboo) 8ae314.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dr. Milan Christopher (Taboo) 8ae314.yaml index 1ca92ef2f..088e06e72 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dr. Milan Christopher (Taboo) 8ae314.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dr. Milan Christopher (Taboo) 8ae314.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450614 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -21,8 +21,8 @@ Description: Professor of Entomology DragSelectable: true GMNotes: "{\n \"id\": \"01033-t\",\n \"alternate_ids\": [\n \"01533-t\"\n ],\n\ \ \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 4,\n \"level\":\ - \ 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"intellectIcons\": 1,\n \"cycle\"\ + : \"Core\"\n}" GUID: 8ae314 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.2 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dr. Milan Christopher 9934d2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dr. Milan Christopher 9934d2.yaml index 529dd8b44..0d37ffb80 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dr. Milan Christopher 9934d2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dr. Milan Christopher 9934d2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368434 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -21,8 +21,8 @@ Description: Professor of Entomology DragSelectable: true GMNotes: "{\n \"id\": \"01033\",\n \"alternate_ids\": [\n \"01533\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 4,\n \"level\": 0,\n\ - \ \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\":\ - \ false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Ally. Miskatonic.\",\n \"intellectIcons\": 1,\n \"cycle\": \"\ + Core\"\n}" GUID: 9934d2 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 19.52 posY: 3.37 posZ: -56.77 - rotX: 359.43 - rotY: 270.02 - rotZ: 359.97 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dr. William T. Maleson (2) 3ee7a5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dr. William T. Maleson (2) 3ee7a5.yaml index 7ce2e776f..6ddd6b27f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dr. William T. Maleson (2) 3ee7a5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dr. William T. Maleson (2) 3ee7a5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379047 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Working on Something Bigger DragSelectable: true GMNotes: "{\n \"id\": \"09054\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 3ee7a5 Grid: true GridProjection: false @@ -45,11 +44,11 @@ Tags: Tooltip: true Transform: posX: 16.67 - posY: 3.39 + posY: 3.4 posZ: 65.93 - rotX: 359.22 - rotY: 270.01 - rotZ: 359.15 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dr. William T. Maleson 14d04f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dr. William T. Maleson 14d04f.yaml index eebe0c0d4..6e4dccef2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dr. William T. Maleson 14d04f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dr. William T. Maleson 14d04f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 581102 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5811': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Working on Something Big DragSelectable: true GMNotes: "{\n \"id\": \"02302\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 14d04f Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.45 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dragon Pole 331b58.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dragon Pole 331b58.yaml index f3a220c8e..b108d52d8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dragon Pole 331b58.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dragon Pole 331b58.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379050 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08060\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\"\ - : \"Edge of the Earth\"\n}" + combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 331b58 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 posY: 3.75 posZ: -16.69 - rotX: 359.77 - rotY: 270.01 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Drawing Thin (Taboo) 3d08dc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Drawing Thin (Taboo) 3d08dc.yaml index aa33a0d12..c6fe66299 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Drawing Thin (Taboo) 3d08dc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Drawing Thin (Taboo) 3d08dc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450609 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05159-t\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 3d08dc Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.08 posY: 3.7 posZ: -16.71 - rotX: 359.98 - rotY: 269.9 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Drawing Thin 6d9881.yaml b/unpacked/Bag All Player Cards 15bb07/Card Drawing Thin 6d9881.yaml index 8a3e739c6..34688914c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Drawing Thin 6d9881.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Drawing Thin 6d9881.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 277910 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2779': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05159\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 6d9881 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.04 posY: 3.89 posZ: -16.7 - rotX: 359.82 - rotY: 269.96 - rotZ: 0.08 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Drawing the Sign 438cca.yaml b/unpacked/Bag All Player Cards 15bb07/Card Drawing the Sign 438cca.yaml index 12f3c5a4c..581e5ad06 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Drawing the Sign 438cca.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Drawing the Sign 438cca.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 580603 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5806': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"03041\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Pact. Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"traits\": \"Pact. Madness.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 438cca Grid: true GridProjection: false @@ -46,8 +46,8 @@ Transform: posY: 3.93 posZ: -16.72 rotX: 0.0 - rotY: 269.83 - rotZ: 359.97 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Drawn to the Flame a8298f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Drawn to the Flame a8298f.yaml index 50784af1d..7f0237d83 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Drawn to the Flame a8298f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Drawn to the Flame a8298f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230304 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01064\",\n \"alternate_ids\": [\n \"01564\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 0,\n \"level\": 0,\n\ - \ \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Insight.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n\ + \ \"cycle\": \"Core\"\n}" GUID: a8298f Grid: true GridProjection: false @@ -44,11 +44,11 @@ Tags: Tooltip: true Transform: posX: 32.98 - posY: 3.32 + posY: 3.33 posZ: -47.41 - rotX: 1.15 - rotY: 270.01 - rotZ: 1.69 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dread Curse c54d7e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dread Curse c54d7e.yaml index 1cc0b36ed..78cb1db2a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dread Curse c54d7e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dread Curse c54d7e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 583433 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5834': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"07039\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \ - \ \"basicWeaknessCount\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"traits\": \"Curse.\",\n \"weakness\": true,\n \"basicWeaknessCount\": 2,\n\ + \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: c54d7e Grid: true GridProjection: false @@ -44,10 +44,10 @@ Tooltip: true Transform: posX: 9.05 posY: 3.76 - posZ: -16.71 - rotX: 359.75 - rotY: 269.95 - rotZ: 0.12 + posZ: -16.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dreaded End 1a94ad.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dreaded End 1a94ad.yaml index 2fe46f19a..341a0b24b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dreaded End 1a94ad.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dreaded End 1a94ad.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587828 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5878': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: Gift of the Void DragSelectable: true GMNotes: "{\n \"id\": \"86053\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Spell.\",\n \"willpowerIcons\": 2,\n \"wildIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}" GUID: 1a94ad Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 - posY: 3.7 + posY: 3.71 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) 5f9a10.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) 5f9a10.yaml index 99b259838..fed1ef5a4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) 5f9a10.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) 5f9a10.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 447834 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4478': BackIsHidden: true @@ -21,9 +21,9 @@ Description: Dreams of an Explorer DragSelectable: true GMNotes: "{\n \"id\": \"06236\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Tome. Charm.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\"\ - : 1,\n \"id\": \"06113\"\n }\n ],\n \"willpowerIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + bonded\": [\n {\n \"count\": 1,\n \"id\": \"06113\"\n }\n ],\n\ + \ \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ + \n}" GUID: 5f9a10 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.09 posY: 3.69 posZ: -16.71 - rotX: 359.97 - rotY: 269.87 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) e5f9cb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) e5f9cb.yaml index 304d12888..e1a49eba4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) e5f9cb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) e5f9cb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 447835 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4478': BackIsHidden: true @@ -21,9 +21,9 @@ Description: Dreams of a Madman DragSelectable: true GMNotes: "{\n \"id\": \"06237\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Tome. Charm.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\"\ - : 1,\n \"id\": \"06113\"\n }\n ],\n \"willpowerIcons\": 1,\n \"combatIcons\"\ - : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + bonded\": [\n {\n \"count\": 1,\n \"id\": \"06113\"\n }\n ],\n\ + \ \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ + \n}" GUID: e5f9cb Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 4.18 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.97 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) ea40f6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) ea40f6.yaml index 63c980a28..fee35f14b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) ea40f6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dream Diary (3) ea40f6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 447836 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4478': BackIsHidden: true @@ -21,9 +21,9 @@ Description: Dreams of a Child DragSelectable: true GMNotes: "{\n \"id\": \"06238\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Tome. Charm.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\"\ - : 1,\n \"id\": \"06113\"\n }\n ],\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + bonded\": [\n {\n \"count\": 1,\n \"id\": \"06113\"\n }\n ],\n\ + \ \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ + \n}" GUID: ea40f6 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.03 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dream Diary b81dcf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dream Diary b81dcf.yaml index d6cdf8712..55a433891 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dream Diary b81dcf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dream Diary b81dcf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379928 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3799': BackIsHidden: true @@ -21,9 +21,8 @@ Description: Untranslated DragSelectable: true GMNotes: "{\n \"id\": \"06112\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome. Charm.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\"\ - : 1,\n \"id\": \"06113\"\n }\n ],\n \"willpowerIcons\": 1,\n \"cycle\"\ - : \"The Dream-Eaters\"\n}" + bonded\": [\n {\n \"count\": 1,\n \"id\": \"06113\"\n }\n ],\n\ + \ \"willpowerIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: b81dcf Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.01 - posY: 3.91 + posY: 3.92 posZ: -16.7 - rotX: 359.89 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dream Parasite ae16e8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dream Parasite ae16e8.yaml index 7818db9b4..e29cdbe03 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dream Parasite ae16e8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dream Parasite ae16e8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448736 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4487': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"06331\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \ - \ \"wildIcons\": 2,\n \"negativeIcons\": true,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"traits\": \"Curse.\",\n \"weakness\": true,\n \"wildIcons\": 2,\n \"negativeIcons\"\ + : true,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: ae16e8 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.76 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dream-Enhancing Serum 98c5af.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dream-Enhancing Serum 98c5af.yaml index b3a550b00..bdec37662 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dream-Enhancing Serum 98c5af.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dream-Enhancing Serum 98c5af.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379931 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3799': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06159\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Science.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Science.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 98c5af Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.13 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dream-Gate fa4c1e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dream-Gate fa4c1e.yaml index 78a39d9e1..73b9ab4b1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dream-Gate fa4c1e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dream-Gate fa4c1e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 541109 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5411': BackIsHidden: true @@ -21,9 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06015a\",\n \"alternate_ids\": [\n \"06015b\"\n ],\n\ \ \"type\": \"Location\",\n \"class\": \"Neutral\",\n \"traits\": \"Dreamlands.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": [\n {\n \ - \ \"countPerInvestigator\": 0,\n \"type\": \"Clue\",\n \"token\": \"clue\"\ - \n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: fa4c1e Grid: true GridProjection: false @@ -41,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- ScenarioCard - Location +- ScenarioCard Tooltip: true Transform: posX: 26.04 posY: 3.54 posZ: -7.32 - rotX: 0.45 + rotX: 0.0 rotY: 240.0 - rotZ: 359.78 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dreams of the Deep 13eaf0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dreams of the Deep 13eaf0.yaml index ad35f6a2f..eb5496d82 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dreams of the Deep 13eaf0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dreams of the Deep 13eaf0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 444147 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4441': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"98015\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \ - \ \"wildIcons\": 2,\n \"negativeIcons\": true,\n \"cycle\": \"Promo\"\n}" + ,\n \"traits\": \"Curse.\",\n \"weakness\": true,\n \"wildIcons\": 2,\n \"negativeIcons\"\ + : true,\n \"cycle\": \"Promo\"\n}" GUID: 13eaf0 Grid: true GridProjection: false @@ -46,7 +46,7 @@ Transform: posY: 3.8 posZ: -16.69 rotX: 0.0 - rotY: 270.01 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Duke 876557.yaml b/unpacked/Bag All Player Cards 15bb07/Card Duke 876557.yaml index ea24a33dc..f6fd928ba 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Duke 876557.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Duke 876557.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 371112 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3711': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ ,\n \"startsInPlay\": true,\n \"cost\": 2,\n \"traits\": \"Ally. Creature.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Dunwich Legacy\"\ - \n}" + ,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: '876557' Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 78.27 posY: 1.06 posZ: 26.81 - rotX: 359.88 + rotX: 0.0 rotY: 270.0 - rotZ: 0.03 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dumb Luck (2) 0c433b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dumb Luck (2) 0c433b.yaml index de98aa076..c8f9ead97 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dumb Luck (2) 0c433b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dumb Luck (2) 0c433b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550823 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60525\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Fortune.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 2,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Fortune.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 0c433b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.14 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dumb Luck f0e425.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dumb Luck f0e425.yaml index aa8d00cfb..b3d166ade 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dumb Luck f0e425.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dumb Luck f0e425.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368814 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04034\",\n \"alternate_ids\": [\n \"60514\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 2,\n \"level\"\ - : 0,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"agilityIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}" + : 0,\n \"traits\": \"Fortune.\",\n \"agilityIcons\": 2,\n \"cycle\": \"The Forgotten\ + \ Age\"\n}" GUID: f0e425 Grid: true GridProjection: false @@ -45,10 +45,10 @@ Tooltip: true Transform: posX: 9.14 posY: 3.73 - posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dyer's Sketches b12d89.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dyer's Sketches b12d89.yaml index cb631e796..6c29fdc37 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dyer's Sketches b12d89.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dyer's Sketches b12d89.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 452303 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4523': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08733\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of\ - \ the Earth\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Insight.\",\n \"intellectIcons\": 1,\n \"wildIcons\"\ + : 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: b12d89 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 79.19 posY: 3.33 posZ: 7.94 - rotX: 359.42 - rotY: 269.99 - rotZ: 359.74 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dynamite 793df5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dynamite 793df5.yaml index 469c79c61..90af348dc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dynamite 793df5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dynamite 793df5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450308 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4503': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08616\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Item. Expedition.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 2,\n \"wildIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 2,\n \"type\": \"Supply\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Item. Expedition.\",\n \"combatIcons\": 2,\n\ + \ \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\"\ + : \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of\ + \ the Earth\"\n}" GUID: 793df5 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 79.47 posY: 3.32 posZ: 8.62 - rotX: 359.65 - rotY: 269.99 - rotZ: 359.39 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast (2) e35bc2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast (2) e35bc2.yaml index 9b8423c57..8c63b079b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast (2) e35bc2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast (2) e35bc2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226349 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"50002\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"Return to the Night of the Zealot\"\n}" + ,\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"Return to the Night of the Zealot\"\n\ + }" GUID: e35bc2 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 9.07 posY: 3.79 posZ: -16.71 - rotX: 0.47 - rotY: 269.92 - rotZ: 359.67 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast (3) 14dcc4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast (3) 14dcc4.yaml index 556e23a56..99dd86f30 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast (3) 14dcc4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast (3) 14dcc4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545327 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60129\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"combatIcons\": 2,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Tactic.\",\n \"willpowerIcons\"\ + : 2,\n \"combatIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 14dcc4 Grid: true GridProjection: false @@ -45,10 +44,10 @@ Tooltip: true Transform: posX: 9.0 posY: 3.82 - posZ: -16.69 - rotX: 0.22 - rotY: 270.01 - rotZ: 359.95 + posZ: -16.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast 97986a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast 97986a.yaml index 5c5514dba..af4bad5b8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast 97986a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Dynamite Blast 97986a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226319 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01024\",\n \"alternate_ids\": [\n \"01524\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"cost\": 5,\n \"level\"\ - : 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"cycle\": \"Core\"\n}" + : 0,\n \"traits\": \"Tactic.\",\n \"willpowerIcons\": 1,\n \"cycle\": \"Core\"\ + \n}" GUID: 97986a Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 19.4 posY: 3.37 posZ: -57.26 - rotX: 359.51 + rotX: 0.0 rotY: 270.0 - rotZ: 0.5 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Déjà Vu (5) 719a45.yaml b/unpacked/Bag All Player Cards 15bb07/Card Déjà Vu (5) 719a45.yaml index 4f8fe8712..ce35d829d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Déjà Vu (5) 719a45.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Déjà Vu (5) 719a45.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550829 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -21,7 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60531\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"level\": 5,\n \"traits\": \"Talent. Cursed.\",\n \"permanent\": true,\n\ - \ \"weakness\": false,\n \"cycle\": \"Investigator Packs\"\n}" + \ \"cycle\": \"Investigator Packs\"\n}" GUID: 719a45 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.83 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Earl Sawyer f14dce.yaml b/unpacked/Bag All Player Cards 15bb07/Card Earl Sawyer f14dce.yaml index 723b3a037..75f63cf2c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Earl Sawyer f14dce.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Earl Sawyer f14dce.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232950 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2329': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Smarter Than He Lets On DragSelectable: true GMNotes: "{\n \"id\": \"02218\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Ally. Dunwich.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Ally. Dunwich.\",\n \"agilityIcons\": 1,\n \ + \ \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: f14dce Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.02 posY: 4.05 posZ: -16.7 - rotX: 359.85 + rotX: 0.0 rotY: 270.0 - rotZ: 0.03 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Earthly Serenity (1) 1d6d47.yaml b/unpacked/Bag All Player Cards 15bb07/Card Earthly Serenity (1) 1d6d47.yaml index a7851aabf..035b22abc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Earthly Serenity (1) 1d6d47.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Earthly Serenity (1) 1d6d47.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378955 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08117\",\n \"type\": \"Asset\",\n \"class\": \"Mystic|Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n\ + }" GUID: 1d6d47 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.91 posZ: -16.73 - rotX: 359.9 - rotY: 269.8 - rotZ: 0.11 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Earthly Serenity (4) 57f037.yaml b/unpacked/Bag All Player Cards 15bb07/Card Earthly Serenity (4) 57f037.yaml index d4fd66df5..8cb9f3872 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Earthly Serenity (4) 57f037.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Earthly Serenity (4) 57f037.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378957 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08119\",\n \"type\": \"Asset\",\n \"class\": \"Mystic|Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 6,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n\ + }" GUID: 57f037 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.91 posZ: -16.73 - rotX: 359.9 - rotY: 269.8 - rotZ: 0.12 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Easy Mark (1) cdbb37.yaml b/unpacked/Bag All Player Cards 15bb07/Card Easy Mark (1) cdbb37.yaml index 480d78dbe..e2135b83c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Easy Mark (1) cdbb37.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Easy Mark (1) cdbb37.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 440724 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4407': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06026\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Trick.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: cdbb37 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.04 posY: 3.91 posZ: -16.7 - rotX: 359.85 - rotY: 269.97 - rotZ: 0.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eat lead! (2) fc2629.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eat lead! (2) fc2629.yaml index 98821c5a0..812c9b8ac 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eat lead! (2) fc2629.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eat lead! (2) fc2629.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226342 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03304\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: fc2629 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.17 posY: 3.15 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eat lead! a2c7ef.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eat lead! a2c7ef.yaml index 726364045..41db65eae 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eat lead! a2c7ef.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eat lead! a2c7ef.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 440923 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4409': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"52002\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"Return to the Path to Carcosa\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Return to the Path to Carcosa\"\n}" GUID: a2c7ef Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.17 posY: 3.2 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eavesdrop 256da2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eavesdrop 256da2.yaml index 3405a104b..6c26dab55 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eavesdrop 256da2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eavesdrop 256da2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368711 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3687': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04027\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight. Trick.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight. Trick.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 256da2 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.04 posY: 3.97 posZ: -16.7 - rotX: 359.88 - rotY: 269.97 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ectoplasmic Horror 379582.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ectoplasmic Horror 379582.yaml index b800428f8..7d2fd1884 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ectoplasmic Horror 379582.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ectoplasmic Horror 379582.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379151 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"09127\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Monster. Geist.\",\n \"permanent\": false,\n \"weakness\":\ - \ true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"traits\": \"Monster. Geist.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: '379582' Grid: true GridProjection: false @@ -39,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- ScenarioCard +- PlayerCard Tooltip: true Transform: posX: 16.72 posY: 3.37 posZ: 65.64 - rotX: 359.82 + rotX: 0.0 rotY: 270.0 - rotZ: 0.23 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eidetic Memory (3) 814ce2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eidetic Memory (3) 814ce2.yaml index f79ab9fbc..4733b4ba0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eidetic Memory (3) 814ce2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eidetic Memory (3) 814ce2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430650 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03306\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"intellectIcons\": 1,\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 814ce2 Grid: true GridProjection: false @@ -44,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 9.0 - posY: 3.8 + posY: 3.81 posZ: -16.69 - rotX: 0.17 - rotY: 270.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Elder Sign Amulet (3) 324e49.yaml b/unpacked/Bag All Player Cards 15bb07/Card Elder Sign Amulet (3) 324e49.yaml index e7e48c266..827be0f54 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Elder Sign Amulet (3) 324e49.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Elder Sign Amulet (3) 324e49.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368522 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01095\",\n \"alternate_ids\": [\n \"01595\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"level\":\ - \ 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\":\ - \ false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n\ - }" + \ 3,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\": 1,\n \"wildIcons\"\ + : 1,\n \"cycle\": \"Core\"\n}" GUID: 324e49 Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 269.99 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eldritch Initiation 223eb2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eldritch Initiation 223eb2.yaml index 53a0721ef..d51bf4913 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eldritch Initiation 223eb2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eldritch Initiation 223eb2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379110 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09086\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Ritual.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 223eb2 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 358.53 - rotY: 270.03 - rotZ: 358.41 + rotX: 359.0 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eldritch Inspiration (1) e84eff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eldritch Inspiration (1) e84eff.yaml index 4891f245e..f811e4907 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eldritch Inspiration (1) e84eff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eldritch Inspiration (1) e84eff.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538718 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60420\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Spell. Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 2,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Spell. Spirit.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}" GUID: e84eff Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.11 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eldritch Inspiration 24eb36.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eldritch Inspiration 24eb36.yaml index 296bdf1e6..d92627830 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eldritch Inspiration 24eb36.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eldritch Inspiration 24eb36.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 583604 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5836': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05033\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spell. Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spell. Spirit.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 24eb36 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.69 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Elina Harper 7e2896.yaml b/unpacked/Bag All Player Cards 15bb07/Card Elina Harper 7e2896.yaml index 2402d7dc4..d11d50a8c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Elina Harper 7e2896.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Elina Harper 7e2896.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 369816 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3698': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: Knows Too Much DragSelectable: true GMNotes: "{\n \"id\": \"07083\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 4,\n \"traits\": \"Ally. Agency. Detective.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 4,\n \"traits\": \"Ally. Agency. Detective.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth\ + \ Conspiracy\"\n}" GUID: 7e2896 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.0 posY: 3.79 - posZ: -16.69 - rotX: 0.26 - rotY: 270.01 - rotZ: 359.94 + posZ: -16.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Elle Rubash (2) 43c3e0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Elle Rubash (2) 43c3e0.yaml index d2dc18833..525c7c9d1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Elle Rubash (2) 43c3e0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Elle Rubash (2) 43c3e0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379116 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Purifying Purpose DragSelectable: true GMNotes: "{\n \"id\": \"09092\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ally. Witch.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ally. Witch.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 43c3e0 Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 16.74 posY: 3.36 posZ: 65.49 - rotX: 359.2 - rotY: 269.99 - rotZ: 1.55 + rotX: 359.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ellsworth's Boots 1c751d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ellsworth's Boots 1c751d.yaml index ebab231a2..37ccabf92 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ellsworth's Boots 1c751d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ellsworth's Boots 1c751d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 452304 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4523': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08734\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Clothing. Footwear.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Clothing. Footwear.\",\n \"agilityIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 1c751d Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 78.96 posY: 3.33 posZ: 7.67 - rotX: 359.51 - rotY: 269.99 - rotZ: 0.26 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Elusive (Taboo) b67931.yaml b/unpacked/Bag All Player Cards 15bb07/Card Elusive (Taboo) b67931.yaml index 9050e90b3..2d6ed0659 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Elusive (Taboo) b67931.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Elusive (Taboo) b67931.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 585804 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5858': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01050-t\",\n \"alternate_ids\": [\n \"01550-t\"\n ],\n\ \ \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 0,\n\ - \ \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \ - \ \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Tactic.\",\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n\ + \ \"cycle\": \"Core\"\n}" GUID: b67931 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 8.97 posY: 3.82 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Elusive 833305.yaml b/unpacked/Bag All Player Cards 15bb07/Card Elusive 833305.yaml index 291cb6a46..7cf92b723 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Elusive 833305.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Elusive 833305.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368712 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3687': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01050\",\n \"alternate_ids\": [\n \"01550\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 0,\n\ - \ \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \ - \ \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Tactic.\",\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n\ + \ \"cycle\": \"Core\"\n}" GUID: '833305' Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0.08 - rotY: 270.02 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Embezzled Treasure 8fd043.yaml b/unpacked/Bag All Player Cards 15bb07/Card Embezzled Treasure 8fd043.yaml index adeafbb77..df360652b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Embezzled Treasure 8fd043.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Embezzled Treasure 8fd043.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379056 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09063\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Item. Illicit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Scarlet\ - \ Keys\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Item. Illicit.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 8fd043 Grid: true GridProjection: false @@ -47,8 +46,8 @@ Transform: posX: 16.67 posY: 3.35 posZ: 65.93 - rotX: 357.23 - rotY: 270.09 + rotX: 357.0 + rotY: 270.0 rotZ: 357.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Emergency Aid 9c46da.yaml b/unpacked/Bag All Player Cards 15bb07/Card Emergency Aid 9c46da.yaml index 6d82af4c8..54023b7af 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Emergency Aid 9c46da.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Emergency Aid 9c46da.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226317 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02105\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Science.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Science.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 9c46da Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.73 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache (2) 8948c4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache (2) 8948c4.yaml index 85546c806..cc3be3fb2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache (2) 8948c4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache (2) 8948c4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368519 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02194\",\n \"alternate_ids\": [\n \"01693\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"cost\": 0,\n \"level\":\ - \ 2,\n \"traits\": \"Supply.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"cycle\": \"The Dunwich Legacy\"\n}" + \ 2,\n \"traits\": \"Supply.\",\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 8948c4 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 33.28 posY: 2.3 posZ: -79.22 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache (3) 408cb5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache (3) 408cb5.yaml index 6c2c9863f..ac3c4ec36 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache (3) 408cb5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache (3) 408cb5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368520 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03239\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Supply.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Supply.\",\n \"cycle\": \"\ + The Path to Carcosa\"\n}" GUID: 408cb5 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 3.69 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache 510c0d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache 510c0d.yaml index 11f71ebf2..215e6cf60 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache 510c0d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Emergency Cache 510c0d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368509 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01088\",\n \"alternate_ids\": [\n \"01588\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"cost\": 0,\n \"level\":\ - \ 0,\n \"traits\": \"Supply.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"cycle\": \"Core\"\n}" + \ 0,\n \"traits\": \"Supply.\",\n \"cycle\": \"Core\"\n}" GUID: 510c0d Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 269.99 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Empirical Hypothesis 62c67d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Empirical Hypothesis 62c67d.yaml index 1397688f4..6ca2771ac 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Empirical Hypothesis 62c67d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Empirical Hypothesis 62c67d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379034 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,27 +20,25 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09041\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent. Science.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"customizations\"\ - : [\n {\n \"name\": \"Pessimistic Outlook\",\n \"xp\": 1,\n \"\ - text\": \"Add the following criteria: \uFFFD\u20AC\uFFFDyou run out of cards in\ - \ your hand.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Trial and Error\"\ - ,\n \"xp\": 1,\n \"text\": \"Add the following criteria: \uFFFD\u20AC\uFFFD\ - you are dealt damage or horror.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"\ - Independent Variable\",\n \"xp\": 1,\n \"text\": \"Add the following criteria:\ - \ \uFFFD\u20AC\uFFFDyou discard a treachery or enemy from play.\uFFFD\u20AC?\"\n\ - \ },\n {\n \"name\": \"Field Research\",\n \"xp\": 1,\n \"\ - text\": \"Add the following criteria: \uFFFD\u20AC\uFFFDyou enter a location with\ - \ 3 or more shroud.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Peer Review\"\ - ,\n \"xp\": 2,\n \"text\": \"The chosen criteria is met if any investigator\ - \ at your location meets it, instead of only you. Other investigators at your location\ - \ may trigger ? abilities on Empirical Hypothesis.\"\n },\n {\n \"name\"\ - : \"Research Grant\",\n \"xp\": 2,\n \"text\": \"Empirical Hypothesis\ - \ gains: \uFFFD\u20AC\uFFFD? Spend 2 evidence: Reduce the cost of the next card\ - \ you play this phase by 3.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Irrefutable\ - \ Proof\",\n \"xp\": 3,\n \"text\": \"Empirical Hypothesis gains: \uFFFD\ - \u20AC\uFFFD? Spend 3 evidence: Discover 1 clue at your location.\uFFFD\u20AC?\"\ - \n },\n {\n \"name\": \"Alternative Hypothesis\",\n \"xp\": 4,\n\ + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent. Science.\",\n \"intellectIcons\"\ + : 1,\n \"customizations\": [\n {\n \"name\": \"Pessimistic Outlook\",\n\ + \ \"xp\": 1,\n \"text\": \"Add the following criteria: \u201Cyou run out\ + \ of cards in your hand.\u201D\"\n },\n {\n \"name\": \"Trial and Error\"\ + ,\n \"xp\": 1,\n \"text\": \"Add the following criteria: \u201Cyou are\ + \ dealt damage or horror.\u201D\"\n },\n {\n \"name\": \"Independent\ + \ Variable\",\n \"xp\": 1,\n \"text\": \"Add the following criteria: \u201C\ + you discard a treachery or enemy from play.\u201D\"\n },\n {\n \"name\"\ + : \"Field Research\",\n \"xp\": 1,\n \"text\": \"Add the following criteria:\ + \ \u201Cyou enter a location with 3 or more shroud.\u201D\"\n },\n {\n \ + \ \"name\": \"Peer Review\",\n \"xp\": 2,\n \"text\": \"The chosen criteria\ + \ is met if any investigator at your location meets it, instead of only you. Other\ + \ investigators at your location may trigger \U0001F5F2 abilities on Empirical Hypothesis.\"\ + \n },\n {\n \"name\": \"Research Grant\",\n \"xp\": 2,\n \"\ + text\": \"Empirical Hypothesis gains: \u201C\U0001F5F2 Spend 2 evidence: Reduce\ + \ the cost of the next card you play this phase by 3.\u201D\"\n },\n {\n \ + \ \"name\": \"Irrefutable Proof\",\n \"xp\": 3,\n \"text\": \"Empirical\ + \ Hypothesis gains: \u201C\U0001F5F2 Spend 3 evidence: Discover 1 clue at your location.\u201D\ + \"\n },\n {\n \"name\": \"Alternative Hypothesis\",\n \"xp\": 4,\n\ \ \"text\": \"After you exhaust Empirical Hypothesis, you may resolve its forced\ \ effect, choosing a criteria you have not chosen this round. Then, ready it.\"\n\ \ }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" @@ -68,9 +66,9 @@ Transform: posX: 16.67 posY: 3.4 posZ: 65.93 - rotX: 359.52 - rotY: 270.01 - rotZ: 359.48 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) 3d22c4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) 3d22c4.yaml index f0240c523..deb5c3ab3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) 3d22c4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) 3d22c4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448033 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4480': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Acuity DragSelectable: true GMNotes: "{\n \"id\": \"06243\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 3d22c4 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 5.0 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) 4c0f00.yaml b/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) 4c0f00.yaml index 3ac4c023c..5b41e2ec4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) 4c0f00.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) 4c0f00.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448032 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4480': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Alacrity DragSelectable: true GMNotes: "{\n \"id\": \"06242\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"agilityIcons\"\ + : 2,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 4c0f00 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.81 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) ffe4dd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) ffe4dd.yaml index 8a75c2b37..07b33b605 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) ffe4dd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Empower Self (2) ffe4dd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448031 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4480': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Stamina DragSelectable: true GMNotes: "{\n \"id\": \"06241\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"combatIcons\"\ + : 2,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: ffe4dd Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.69 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Empty Vessel (4) c0d236.yaml b/unpacked/Bag All Player Cards 15bb07/Card Empty Vessel (4) c0d236.yaml index c35bfdd47..f6d17473b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Empty Vessel (4) c0d236.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Empty Vessel (4) c0d236.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448936 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4489': BackIsHidden: true @@ -21,11 +21,10 @@ Description: Abandoned by the Gods DragSelectable: true GMNotes: "{\n \"id\": \"06276\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Relic. Blessed.\",\n \ - \ \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"\ - count\": 1,\n \"id\": \"06277\"\n }\n ],\n \"willpowerIcons\": 1,\n \"\ - wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 0,\n \"type\": \"Charge\"\ - ,\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + \ \"bonded\": [\n {\n \"count\": 1,\n \"id\": \"06277\"\n }\n ],\n\ + \ \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\"\ + : 0,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n\ + \ \"cycle\": \"The Dream-Eaters\"\n}" GUID: c0d236 Grid: true GridProjection: false @@ -43,16 +42,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.02 posY: 3.94 posZ: -16.7 - rotX: 359.79 - rotY: 269.99 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Enchant Weapon (3) 33455f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Enchant Weapon (3) 33455f.yaml index e7c22c1e9..64e90d677 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Enchant Weapon (3) 33455f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Enchant Weapon (3) 33455f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449600 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4496': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07261\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell. Upgrade.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell. Upgrade.\",\n \"willpowerIcons\"\ + : 2,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 33455f Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.02 posY: 4.01 posZ: -16.7 - rotX: 359.87 + rotX: 0.0 rotY: 270.0 - rotZ: 0.03 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Armor (2) 9509e3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Armor (2) 9509e3.yaml index 5d3bc4bf3..1af4bc383 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Armor (2) 9509e3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Armor (2) 9509e3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 588800 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5888': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07189\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Ritual. Armor.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Ritual. Armor.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 9509e3 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.03 posY: 3.71 posZ: -16.7 - rotX: 359.92 - rotY: 269.98 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade (3) 84b918.yaml b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade (3) 84b918.yaml index 31821ecee..f2fa2aaa5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade (3) 84b918.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade (3) 84b918.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 292815 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2928': BackIsHidden: true @@ -21,10 +21,9 @@ Description: Guardian DragSelectable: true GMNotes: "{\n \"id\": \"05192\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Relic. Weapon. Melee.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \ - \ \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ - : \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \ + \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n \ + \ }\n ],\n \"cycle\": \"The Circle Undone\"\n}" GUID: 84b918 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.84 posZ: -16.72 - rotX: 0.21 - rotY: 269.8 - rotZ: 359.84 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade (3) d0de54.yaml b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade (3) d0de54.yaml index 34edea686..9e8a36a1c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade (3) d0de54.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade (3) d0de54.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 293314 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2933': BackIsHidden: true @@ -21,10 +21,9 @@ Description: Mystic DragSelectable: true GMNotes: "{\n \"id\": \"05193\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Relic. Weapon. Melee.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \ - \ \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\"\ - : \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \ + \ \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n \ + \ }\n ],\n \"cycle\": \"The Circle Undone\"\n}" GUID: d0de54 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.68 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade c7d9b5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade c7d9b5.yaml index 734ce8e44..3677e11bc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade c7d9b5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Blade c7d9b5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 277607 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2776': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05118\",\n \"type\": \"Asset\",\n \"class\": \"Mystic|Guardian\"\ ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Relic. Weapon. Melee.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\"\ - : \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ + : \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle\ + \ Undone\"\n}" GUID: c7d9b5 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.81 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Bow (2) f85d4e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Bow (2) f85d4e.yaml index 753ee77b7..e47b7bde9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Bow (2) f85d4e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Bow (2) f85d4e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378956 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -21,10 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08118\",\n \"type\": \"Asset\",\n \"class\": \"Mystic|Survivor\"\ ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Spell. Blessed. Weapon. Ranged.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \ - \ \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ - : \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of\ - \ the Earth\"\n}" + ,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \ + \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n \ + \ }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" GUID: f85d4e Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.9 posZ: -16.73 - rotX: 359.9 - rotY: 269.8 - rotZ: 0.1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Skull a4775a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Skull a4775a.yaml index e528e68c4..54d63ced0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Enchanted Skull a4775a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Enchanted Skull a4775a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 585230 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5852': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Mask of the Burning Pit DragSelectable: true GMNotes: "{\n \"id\": \"86055\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"intellectIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\":\ - \ \"Standalone\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Item. Relic.\",\n \"intellectIcons\": 2,\n \ + \ \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}" GUID: a4775a Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.03 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Encyclopedia (2) f5bcec.yaml b/unpacked/Bag All Player Cards 15bb07/Card Encyclopedia (2) f5bcec.yaml index 9bf8807f1..7a6eb7b92 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Encyclopedia (2) f5bcec.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Encyclopedia (2) f5bcec.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430646 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01042\",\n \"alternate_ids\": [\n \"01542\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 2,\n\ - \ \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Item. Tome.\",\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}" GUID: f5bcec Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 19.5 posY: 3.37 posZ: -56.86 - rotX: 359.4 - rotY: 270.02 - rotZ: 0.07 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Encyclopedia dbb0e0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Encyclopedia dbb0e0.yaml index b16f885c1..74d140fb4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Encyclopedia dbb0e0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Encyclopedia dbb0e0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538806 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60208\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \ - \ \"count\": 5,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n\ - \ }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"wildIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n\ + }" GUID: dbb0e0 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.06 posY: 3.76 posZ: -16.71 rotX: 0.0 - rotY: 269.94 - rotZ: 359.97 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card End of the Road a3d041.yaml b/unpacked/Bag All Player Cards 15bb07/Card End of the Road a3d041.yaml index aa25fe08c..1ec14fd0a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card End of the Road a3d041.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card End of the Road a3d041.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379128 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09104\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight. Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight. Spirit.\",\n \"cycle\"\ + : \"The Scarlet Keys\"\n}" GUID: a3d041 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359.12 - rotY: 269.99 - rotZ: 0.96 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Enraptured a5c780.yaml b/unpacked/Bag All Player Cards 15bb07/Card Enraptured a5c780.yaml index b4aeff033..e5bf2db1b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Enraptured a5c780.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Enraptured a5c780.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230301 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04157\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\"\ - ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\ - \n}" + ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"intellectIcons\": 1,\n \"\ + cycle\": \"The Forgotten Age\"\n}" GUID: a5c780 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.92 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (1) (Taboo) 4d4ffb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (1) (Taboo) 4d4ffb.yaml index ba0ffcf89..3c7f4c50b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (1) (Taboo) 4d4ffb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (1) (Taboo) 4d4ffb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558216 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08098-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n\ - }" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"\ + type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + Edge of the Earth\"\n}" GUID: 4d4ffb Grid: true GridProjection: false @@ -49,9 +48,9 @@ Transform: posX: 21.84 posY: 4.6 posZ: -51.37 - rotX: 359.99 - rotY: 269.85 - rotZ: 0.21 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (1) be4332.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (1) be4332.yaml index 09d4ac572..b742e9b34 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (1) be4332.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (1) be4332.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378936 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08098\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n\ - }" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"\ + type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + Edge of the Earth\"\n}" GUID: be4332 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.79 posZ: -16.73 - rotX: 359.89 - rotY: 269.8 - rotZ: 0.16 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (4) (Taboo) b925cf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (4) (Taboo) b925cf.yaml index a5415d5da..614d42f18 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (4) (Taboo) b925cf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (4) (Taboo) b925cf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558217 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08100-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ - : \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of\ - \ the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"\ + count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n\ + \ ],\n \"cycle\": \"Edge of the Earth\"\n}" GUID: b925cf Grid: true GridProjection: false @@ -49,9 +48,9 @@ Transform: posX: 21.85 posY: 4.69 posZ: -53.34 - rotX: 359.99 - rotY: 269.85 - rotZ: 0.21 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (4) d3ad2d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (4) d3ad2d.yaml index f68005bee..39734a6db 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (4) d3ad2d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eon Chart (4) d3ad2d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378938 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08100\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ - : \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of\ - \ the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"\ + count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n\ + \ ],\n \"cycle\": \"Edge of the Earth\"\n}" GUID: d3ad2d Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.63 posZ: -16.73 - rotX: 359.89 - rotY: 269.8 - rotZ: 0.2 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Erynn MacAoidh 6abfbc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Erynn MacAoidh 6abfbc.yaml index 3ba7bd71f..a2eb2e89c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Erynn MacAoidh 6abfbc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Erynn MacAoidh 6abfbc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449503 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4495': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Devoted Enchantress DragSelectable: true GMNotes: "{\n \"id\": \"54041\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Ally. Witch.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n \"count\"\ - : 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n\ - \ \"cycle\": \"Return to the Circle Undone\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Ally. Witch.\",\n \"willpowerIcons\": 2,\n \ + \ \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"\ + token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the Circle Undone\"\ + \n}" GUID: 6abfbc Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.8 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Esoteric Atlas (1) 0ce005.yaml b/unpacked/Bag All Player Cards 15bb07/Card Esoteric Atlas (1) 0ce005.yaml index eae2670a0..5fdb230f8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Esoteric Atlas (1) 0ce005.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Esoteric Atlas (1) 0ce005.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 293216 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2932': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05232\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Item. Tome.\",\n \"agilityIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n\ + }" GUID: 0ce005 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.46 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Esoteric Atlas (2) 2172e2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Esoteric Atlas (2) 2172e2.yaml index 425eb3f3a..b65ab0c8b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Esoteric Atlas (2) 2172e2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Esoteric Atlas (2) 2172e2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538820 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60222\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n\ - }" + ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"\ + type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + Investigator Packs\"\n}" GUID: 2172e2 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.68 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Essence of the Dream 6ad46b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Essence of the Dream 6ad46b.yaml index f888ed89a..fe912519c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Essence of the Dream 6ad46b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Essence of the Dream 6ad46b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379929 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3799': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06113\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"traits\": \"Practiced. Expert.\",\n \"wildIcons\": 2,\n \"cycle\": \"The\ + \ Dream-Eaters\"\n}" GUID: 6ad46b Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 5.32 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ethereal Form db90e2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ethereal Form db90e2.yaml index c59b2c2d3..a9971ce98 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ethereal Form db90e2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ethereal Form db90e2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 380128 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3801': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06164\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: db90e2 Grid: true GridProjection: false @@ -44,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 9.01 - posY: 3.91 + posY: 3.92 posZ: -16.7 - rotX: 359.89 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ethereal Slip (2) 39cb5b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ethereal Slip (2) 39cb5b.yaml index e6aec12f3..ed855269e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ethereal Slip (2) 39cb5b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ethereal Slip (2) 39cb5b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378948 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08110\",\n \"type\": \"Event\",\n \"class\": \"Rogue|Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spell. Trick.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 2,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spell. Trick.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 39cb5b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.18 posY: 2.79 posZ: -16.73 - rotX: 359.89 - rotY: 269.8 - rotZ: 0.17 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ethereal Slip 31539a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ethereal Slip 31539a.yaml index 81b742749..cef78b922 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ethereal Slip 31539a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ethereal Slip 31539a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378946 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08108\",\n \"type\": \"Event\",\n \"class\": \"Rogue|Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell. Trick.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell. Trick.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 31539a Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.18 posY: 2.7 posZ: -16.73 - rotX: 359.89 - rotY: 269.8 - rotZ: 0.19 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eucatastrophe (3) (Taboo) b2ccf8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eucatastrophe (3) (Taboo) b2ccf8.yaml index 6a5188a23..c7ed99ff3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eucatastrophe (3) (Taboo) b2ccf8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eucatastrophe (3) (Taboo) b2ccf8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 585705 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5857': BackIsHidden: true @@ -19,11 +19,10 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"05324-t\",\n \"alternate_ids\": [\n \"01692-t\",\n \ - \ \"01692\"\n ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\"\ - : 2,\n \"level\": 3,\n \"traits\": \"Fortune. Blessed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"The Circle Undone\"\ - \n}" +GMNotes: "{\n \"id\": \"05324-t\",\n \"alternate_ids\": [\n \"01692-t\"\n ],\n\ + \ \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 2,\n \"level\"\ + : 3,\n \"traits\": \"Fortune. Blessed.\",\n \"wildIcons\": 2,\n \"cycle\": \"\ + The Circle Undone\"\n}" GUID: b2ccf8 Grid: true GridProjection: false @@ -44,12 +43,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.17 + posX: 9.16 posY: 3.3 posZ: -16.73 - rotX: 359.94 - rotY: 269.8 - rotZ: 359.94 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eucatastrophe (3) eaaee9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eucatastrophe (3) eaaee9.yaml index 6a91b86cd..8886777bc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eucatastrophe (3) eaaee9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eucatastrophe (3) eaaee9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 374419 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3744': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05324\",\n \"alternate_ids\": [\n \"01692\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 2,\n \"level\"\ - : 3,\n \"traits\": \"Fortune. Blessed.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}" + : 3,\n \"traits\": \"Fortune. Blessed.\",\n \"wildIcons\": 2,\n \"cycle\": \"\ + The Circle Undone\"\n}" GUID: eaaee9 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 269.98 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eureka! ffa4f9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eureka! ffa4f9.yaml index cae240148..c27301445 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eureka! ffa4f9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eureka! ffa4f9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368400 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03231\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: ffa4f9 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.16 posY: 3.96 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ever Vigilant (1) bb640d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ever Vigilant (1) bb640d.yaml index f52da2d76..9dc0d39fa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ever Vigilant (1) bb640d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ever Vigilant (1) bb640d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226334 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03023\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: bb640d Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.2 posY: 2.94 posZ: -16.73 - rotX: 0.04 - rotY: 269.8 - rotZ: 359.36 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ever Vigilant (4) ac910a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ever Vigilant (4) ac910a.yaml index 5e384acce..7828c096b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ever Vigilant (4) ac910a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ever Vigilant (4) ac910a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379032 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09039\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 4,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 2\n}" + ,\n \"cost\": 0,\n \"level\": 4,\n \"traits\": \"Tactic.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 2,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: ac910a Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 16.67 posY: 3.37 posZ: 65.93 - rotX: 357.81 - rotY: 270.05 - rotZ: 357.62 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Evidence! (1) 3df5fb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Evidence! (1) 3df5fb.yaml index 83166b252..e0464e02e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Evidence! (1) 3df5fb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Evidence! (1) 3df5fb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545318 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60120\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 3df5fb Grid: true GridProjection: false @@ -45,10 +44,10 @@ Tooltip: true Transform: posX: 9.14 posY: 3.73 - posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Evidence! 2db518.yaml b/unpacked/Bag All Player Cards 15bb07/Card Evidence! 2db518.yaml index e67a9f6f5..d902c63d6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Evidence! 2db518.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Evidence! 2db518.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226309 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01022\",\n \"alternate_ids\": [\n \"01522\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"cost\": 1,\n \"level\"\ - : 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"intellectIcons\": 2,\n \"cycle\": \"Core\"\n}" + : 0,\n \"traits\": \"Insight.\",\n \"intellectIcons\": 2,\n \"cycle\": \"Core\"\ + \n}" GUID: 2db518 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 19.37 posY: 3.37 posZ: -57.52 - rotX: 359.63 + rotX: 0.0 rotY: 270.0 - rotZ: 0.61 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Existential Riddle (1) 38a30a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Existential Riddle (1) 38a30a.yaml index 01866bfca..b417e6988 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Existential Riddle (1) 38a30a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Existential Riddle (1) 38a30a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379045 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09052\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Insight. Paradox.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Insight. Paradox.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 38a30a Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 16.67 posY: 3.38 posZ: 65.93 - rotX: 358.38 - rotY: 270.03 - rotZ: 358.24 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Expedition Journal 9dc3d4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Expedition Journal 9dc3d4.yaml index 8677a298a..00c320af5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Expedition Journal 9dc3d4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Expedition Journal 9dc3d4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 235649 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2356': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04148\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\ - \n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\": 2,\n \"\ + cycle\": \"The Forgotten Age\"\n}" GUID: 9dc3d4 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.74 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Expeditious Retreat (1) ea8324.yaml b/unpacked/Bag All Player Cards 15bb07/Card Expeditious Retreat (1) ea8324.yaml index 3e2aa1189..783e7f9c2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Expeditious Retreat (1) ea8324.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Expeditious Retreat (1) ea8324.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 447734 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4477': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06246\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 1,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"level\": 1,\n \"traits\": \"Innate. Developed.\",\n \"agilityIcons\": 1,\n\ + \ \"cycle\": \"The Dream-Eaters\"\n}" GUID: ea8324 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 4.13 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Exploit Weakness b6857b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Exploit Weakness b6857b.yaml index b52e4101e..45283e235 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Exploit Weakness b6857b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Exploit Weakness b6857b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379129 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09105\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Tactic. Trick.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Tactic. Trick.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: b6857b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 16.72 posY: 3.37 posZ: 65.64 - rotX: 359.65 + rotX: 0.0 rotY: 270.0 - rotZ: 0.41 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Explosive Ward f86c67.yaml b/unpacked/Bag All Player Cards 15bb07/Card Explosive Ward f86c67.yaml index ce7424d14..0d1086ed2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Explosive Ward f86c67.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Explosive Ward f86c67.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379111 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09087\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"combatIcons\": 2\n}" + ,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"combatIcons\": 2,\n \"cycle\"\ + : \"The Scarlet Keys\"\n}" GUID: f86c67 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 358.6 - rotY: 270.03 - rotZ: 358.48 + rotX: 359.0 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Expose Weakness (1) 2e93fd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Expose Weakness (1) 2e93fd.yaml index 427c86cd8..d14ba5bb0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Expose Weakness (1) 2e93fd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Expose Weakness (1) 2e93fd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430635 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02228\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 2,\n\ - \ \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 2e93fd Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 4.18 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Expose Weakness (3) 77f92c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Expose Weakness (3) 77f92c.yaml index 79aa8b9e5..61c8748a6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Expose Weakness (3) 77f92c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Expose Weakness (3) 77f92c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 262203 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2622': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04195\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\ + \n}" GUID: 77f92c Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 9.2 posY: 3.0 posZ: -16.73 - rotX: 0.05 - rotY: 269.8 - rotZ: 359.31 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Extensive Research (1) 3dc25c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Extensive Research (1) 3dc25c.yaml index e867dde7f..bd6e7b125 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Extensive Research (1) 3dc25c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Extensive Research (1) 3dc25c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 447833 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4478': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06198\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 10,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"cost\": 10,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 3dc25c Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.02 posY: 3.97 posZ: -16.7 - rotX: 359.8 - rotY: 269.99 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Extensive Research 013446.yaml b/unpacked/Bag All Player Cards 15bb07/Card Extensive Research 013446.yaml index 1e3981d2b..9ef562c28 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Extensive Research 013446.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Extensive Research 013446.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538814 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60216\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 12,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 12,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"Investigator Packs\"\n}" GUID: '013446' Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 3.75 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Extra Ammunition (1) f60263.yaml b/unpacked/Bag All Player Cards 15bb07/Card Extra Ammunition (1) f60263.yaml index a111bd4be..b5f0d9176 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Extra Ammunition (1) f60263.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Extra Ammunition (1) f60263.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226337 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,10 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01026\",\n \"alternate_ids\": [\n \"01526\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"cost\": 2,\n \"level\"\ - : 1,\n \"traits\": \"Supply.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ - : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n\ - }" + : 1,\n \"traits\": \"Supply.\",\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ + \ \"count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n\ + \ }\n ],\n \"cycle\": \"Core\"\n}" GUID: f60263 Grid: true GridProjection: false @@ -48,9 +47,9 @@ Transform: posX: 18.52 posY: 3.38 posZ: -56.92 - rotX: 359.96 - rotY: 269.99 - rotZ: 0.3 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eye of Chaos (4) f68105.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eye of Chaos (4) f68105.yaml index 12a1ff78b..50c012443 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eye of Chaos (4) f68105.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eye of Chaos (4) f68105.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 579707 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5797': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07227\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 5,\n \"level\": 4,\n \"traits\": \"Spell. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\ - \n}" + ,\n \"cost\": 5,\n \"level\": 4,\n \"traits\": \"Spell. Cursed.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \ + \ \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ + : \"The Innsmouth Conspiracy\"\n}" GUID: f68105 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 5.33 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eye of Chaos 9a5782.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eye of Chaos 9a5782.yaml index f32b6fc53..7711ed293 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eye of Chaos 9a5782.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eye of Chaos 9a5782.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553110 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5531': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07118\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 5,\n \"level\": 0,\n \"traits\": \"Spell. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 5,\n \"level\": 0,\n \"traits\": \"Spell. Cursed.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\ + \n}" GUID: 9a5782 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.01 posY: 3.69 posZ: -16.7 - rotX: 0.1 - rotY: 270.01 - rotZ: 359.97 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Eye of the Djinn (2) df182a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Eye of the Djinn (2) df182a.yaml index f46eed839..27072c9ca 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Eye of the Djinn (2) df182a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Eye of the Djinn (2) df182a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 590105 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5901': BackIsHidden: true @@ -21,8 +21,7 @@ Description: Vessel of Good and Evil DragSelectable: true GMNotes: "{\n \"id\": \"07225\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Relic. Blessed. Cursed.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \ - \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"intellectIcons\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: df182a Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.81 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ezra Graves efe0dd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ezra Graves efe0dd.yaml index 3b73bff35..b8b92faf0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ezra Graves efe0dd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ezra Graves efe0dd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558005 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5580': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Professor of the Arcane DragSelectable: true GMNotes: "{\n \"id\": \"87023\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Scientist. Ally. Present.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Scientist. Ally. Present.\",\n \"intellectIcons\"\ + : 2,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}" GUID: efe0dd Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 78.62 posY: 3.32 posZ: 8.37 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 359.12 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card False Awakening 3bf831.yaml b/unpacked/Bag All Player Cards 15bb07/Card False Awakening 3bf831.yaml index f1d701698..e43fc9cb8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card False Awakening 3bf831.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card False Awakening 3bf831.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448519 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4485': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"06275\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \ - \ \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"traits\": \"Curse.\",\n \"weakness\": true,\n \"cycle\": \"The Dream-Eaters\"\ + \n}" GUID: 3bf831 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.2 posY: 3.11 posZ: -16.73 - rotX: 0.07 - rotY: 269.8 - rotZ: 359.21 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card False Covenant (2) 3442f5.yaml b/unpacked/Bag All Player Cards 15bb07/Card False Covenant (2) 3442f5.yaml index b0d8068b8..1ecf8512f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card False Covenant (2) 3442f5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card False Covenant (2) 3442f5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553108 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5531': BackIsHidden: true @@ -21,7 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07116\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"level\": 2,\n \"traits\": \"Covenant. Cursed.\",\n \"permanent\": true,\n\ - \ \"weakness\": false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 3442f5 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.95 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Familiar Spirit 971d52.yaml b/unpacked/Bag All Player Cards 15bb07/Card Familiar Spirit 971d52.yaml index 2cf598516..5746f7888 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Familiar Spirit 971d52.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Familiar Spirit 971d52.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538708 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60410\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Ally. Creature. Summon.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"\ - cycle\": \"Investigator Packs\"\n}" + \ \"willpowerIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 971d52 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 - posY: 4.14 + posY: 4.13 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Family Inheritance 394603.yaml b/unpacked/Bag All Player Cards 15bb07/Card Family Inheritance 394603.yaml index 1fed7c9b9..90685facb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Family Inheritance 394603.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Family Inheritance 394603.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 431557 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4315': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Boon.\",\n \"permanent\": true,\n \"weakness\": false,\n \"\ - cycle\": \"The Circle Undone\"\n}" + ,\n \"traits\": \"Boon.\",\n \"permanent\": true,\n \"cycle\": \"The Circle Undone\"\ + \n}" GUID: '394603' Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.17 posY: 2.96 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fang of Tyr'thrha (4) e2dc13.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fang of Tyr'thrha (4) e2dc13.yaml index be4d86b2e..6396e04bd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fang of Tyr'thrha (4) e2dc13.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fang of Tyr'thrha (4) e2dc13.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379019 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08029\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"combatIcons\"\ + : 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: e2dc13 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.2 posY: 2.74 posZ: -16.73 - rotX: 0.01 - rotY: 269.8 - rotZ: 359.51 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Farsight (4) b4121c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Farsight (4) b4121c.yaml index 25d3df48b..f913c2846 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Farsight (4) b4121c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Farsight (4) b4121c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538829 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60231\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"willpowerIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: b4121c Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.82 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Father Mateo df852c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Father Mateo df852c.yaml index 1de5bb913..477df9c4e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Father Mateo df852c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Father Mateo df852c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 262119 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2621': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"04004-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"04004-m\",\n \"type\": \"Minicard\"\n}" GUID: df852c Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.81 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Father Mateo eb96e6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Father Mateo eb96e6.yaml index b1ed087ae..c88472cd4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Father Mateo eb96e6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Father Mateo eb96e6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449601 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4496': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.94 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Faustian Bargain 17d34b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Faustian Bargain 17d34b.yaml index 1c3a2e25e..50734b697 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Faustian Bargain 17d34b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Faustian Bargain 17d34b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 586622 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5866': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07028\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Pact. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Pact. Cursed.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 17d34b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.03 posY: 3.68 posZ: -16.7 - rotX: 0.09 - rotY: 269.98 - rotZ: 359.94 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Favor of the Moon (1) 542a70.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Favor of the Moon (1) 542a70.ttslua index 000cd744a..63d2a5430 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Favor of the Moon (1) 542a70.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Favor of the Moon (1) 542a70.ttslua @@ -78,4 +78,4 @@ function getChaosBag() end if chaosbag == nil then printToAll("No chaos bag found") end return chaosbag -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Favor of the Moon (1) 542a70.yaml b/unpacked/Bag All Player Cards 15bb07/Card Favor of the Moon (1) 542a70.yaml index a8bf5d6d6..6f9948f5a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Favor of the Moon (1) 542a70.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Favor of the Moon (1) 542a70.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449610 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4496': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07271\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Pact. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Pact. Cursed.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 542a70 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.0 posY: 3.83 posZ: -16.69 - rotX: 0.13 - rotY: 270.01 - rotZ: 359.97 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Favor of the Sun (1) 1e6a06.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Favor of the Sun (1) 1e6a06.ttslua index ab3fe3f1b..d819038d5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Favor of the Sun (1) 1e6a06.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Favor of the Sun (1) 1e6a06.ttslua @@ -78,4 +78,4 @@ function getChaosBag() end if chaosbag == nil then printToAll("No chaos bag found") end return chaosbag -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Favor of the Sun (1) 1e6a06.yaml b/unpacked/Bag All Player Cards 15bb07/Card Favor of the Sun (1) 1e6a06.yaml index ff8f5ac1c..9a315e6ed 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Favor of the Sun (1) 1e6a06.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Favor of the Sun (1) 1e6a06.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449611 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4496': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07272\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Pact. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Pact. Blessed.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 1e6a06 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.12 posY: 4.07 posZ: -16.72 - rotX: 0.08 - rotY: 269.82 - rotZ: 359.92 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fearless (2) b2e27e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fearless (2) b2e27e.yaml index f3d7510be..351eeb2b2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fearless (2) b2e27e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fearless (2) b2e27e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230337 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02268\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\"\ - ,\n \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\ - \n}" + ,\n \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: b2e27e Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.2 posY: 2.88 posZ: -16.73 - rotX: 0.03 - rotY: 269.8 - rotZ: 359.41 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fearless cd0ac1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fearless cd0ac1.yaml index 48f0d0d9b..dd17cce06 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fearless cd0ac1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fearless cd0ac1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230303 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01067\",\n \"alternate_ids\": [\n \"01567\"\n ],\n \ \ \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"level\": 0,\n \"traits\"\ - : \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\"\ - : 1,\n \"cycle\": \"Core\"\n}" + : \"Innate.\",\n \"willpowerIcons\": 1,\n \"cycle\": \"Core\"\n}" GUID: cd0ac1 Grid: true GridProjection: false @@ -44,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 32.98 - posY: 3.32 + posY: 3.33 posZ: -47.41 - rotX: 1.15 - rotY: 270.01 - rotZ: 1.7 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Feed the Mind (3) bc4788.yaml b/unpacked/Bag All Player Cards 15bb07/Card Feed the Mind (3) bc4788.yaml index 50434a599..860941f3e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Feed the Mind (3) bc4788.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Feed the Mind (3) bc4788.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 262200 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2622': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04267\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n\ + }" GUID: bc4788 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.69 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Feed the Mind a614de.yaml b/unpacked/Bag All Player Cards 15bb07/Card Feed the Mind a614de.yaml index 792628de1..9ecac7340 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Feed the Mind a614de.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Feed the Mind a614de.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538807 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60209\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n\ + }" GUID: a614de Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.04 posY: 3.91 posZ: -16.7 - rotX: 359.84 - rotY: 269.96 - rotZ: 0.07 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fence (1) 2423e7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fence (1) 2423e7.yaml index 96d597bc7..f6cde106e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fence (1) 2423e7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fence (1) 2423e7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315238 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04108\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Connection. Illicit.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\"\ - : \"The Forgotten Age\"\n}" + agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 2423e7 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.02 posY: 3.94 posZ: -16.7 - rotX: 359.79 - rotY: 269.99 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fend Off (3) 0c2449.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fend Off (3) 0c2449.yaml index 54067529f..8e85539b4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fend Off (3) 0c2449.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fend Off (3) 0c2449.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378911 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08082\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Gambit. Trick.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"Edge of\ - \ the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Gambit. Trick.\",\n \"agilityIcons\"\ + : 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 0c2449 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.2 posY: 2.75 posZ: -16.73 - rotX: 0.01 - rotY: 269.8 - rotZ: 359.51 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fey (1) f10690.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fey (1) f10690.yaml index c43de90ae..2565a8354 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fey (1) f10690.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fey (1) f10690.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 579402 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5794': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07222\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 1,\n \"traits\": \"Innate. Cursed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 2,\n \"cycle\"\ - : \"The Innsmouth Conspiracy\"\n}" + ,\n \"level\": 1,\n \"traits\": \"Innate. Cursed.\",\n \"willpowerIcons\": 1,\n\ + \ \"wildIcons\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: f10690 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.15 posY: 3.77 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fickle Fortune (3) 1b4684.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fickle Fortune (3) 1b4684.yaml index 1844ba9ef..3cc9257fa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fickle Fortune (3) 1b4684.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fickle Fortune (3) 1b4684.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379142 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09118\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 3,\n \"traits\": \"Dilemma. Fortune.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}" + ,\n \"level\": 3,\n \"traits\": \"Dilemma. Fortune.\",\n \"intellectIcons\":\ + \ 2,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 1b4684 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 16.72 posY: 3.37 posZ: 65.64 - rotX: 359.55 + rotX: 0.0 rotY: 270.0 - rotZ: 0.51 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Field Agent (2) babfb6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Field Agent (2) babfb6.yaml index 6e89ad480..7c21fd24e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Field Agent (2) babfb6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Field Agent (2) babfb6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379026 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09033\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Ally. Agency.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Ally. Agency.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: babfb6 Grid: true GridProjection: false @@ -44,12 +43,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 17.03 + posX: 17.02 posY: 3.34 posZ: 65.98 - rotX: 357.67 - rotY: 270.03 - rotZ: 358.62 + rotX: 358.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fieldwork d6771f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fieldwork d6771f.yaml index 98660e6c0..14fb5f7e4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fieldwork d6771f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fieldwork d6771f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368429 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03024\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: d6771f Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.0 posY: 3.78 posZ: -16.69 - rotX: 0.04 - rotY: 270.01 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fight or Flight 00af4f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fight or Flight 00af4f.yaml index b818cb623..c68bf9b48 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fight or Flight 00af4f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fight or Flight 00af4f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368813 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03155\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"cycle\": \"\ + The Path to Carcosa\"\n}" GUID: 00af4f Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.05 posY: 3.91 posZ: -16.7 - rotX: 359.8 - rotY: 269.96 - rotZ: 0.09 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fighting Lessons fc2432.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fighting Lessons fc2432.yaml index e45d648a0..0be4dbc2c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fighting Lessons fc2432.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fighting Lessons fc2432.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379023 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09030\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\"\ - ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\"\ - : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"combatIcons\": 1,\n \"agilityIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: fc2432 Grid: true GridProjection: false @@ -43,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 17.03 + posX: 17.02 posY: 3.36 posZ: 65.98 - rotX: 358.36 - rotY: 270.02 - rotZ: 359.03 + rotX: 358.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Final Rhapsody 2c901b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Final Rhapsody 2c901b.yaml index caa9c75bf..392dbd05d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Final Rhapsody 2c901b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Final Rhapsody 2c901b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 372011 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3720': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Endtimes.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"traits\": \"Endtimes.\",\n \"weakness\": true,\n \"cycle\": \"The Dunwich\ + \ Legacy\"\n}" GUID: 2c901b Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.02 posY: 4.05 posZ: -16.7 - rotX: 359.85 + rotX: 0.0 rotY: 270.0 - rotZ: 0.03 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fine Clothes 5cb973.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fine Clothes 5cb973.yaml index f02ae369b..b1efae1f8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fine Clothes 5cb973.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fine Clothes 5cb973.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368511 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02272\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Clothing.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Clothing.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 5cb973 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 5.01 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fine Print 39452d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fine Print 39452d.yaml index ed0ce77dd..0ff994225 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fine Print 39452d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fine Print 39452d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545213 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5452': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"53014\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - cycle\": \"Return to the Forgotten Age\"\n}" + ,\n \"traits\": \"Pact.\",\n \"weakness\": true,\n \"cycle\": \"Return to the\ + \ Forgotten Age\"\n}" GUID: 39452d Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.02 posY: 4.01 posZ: -16.7 - rotX: 359.87 + rotX: 0.0 rotY: 270.0 - rotZ: 0.03 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fingerprint Kit (4) 33b09e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fingerprint Kit (4) 33b09e.yaml index abc39790b..f16d5970f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fingerprint Kit (4) 33b09e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fingerprint Kit (4) 33b09e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379050 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09057\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 5,\n \"level\": 4,\n \"traits\": \"Item. Tool.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\ - \n }\n ]\n}" + ,\n \"cost\": 5,\n \"level\": 4,\n \"traits\": \"Item. Tool.\",\n \"intellectIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 33b09e Grid: true GridProjection: false @@ -46,11 +45,11 @@ Tags: Tooltip: true Transform: posX: 16.67 - posY: 3.36 + posY: 3.35 posZ: 65.93 - rotX: 357.5 - rotY: 270.06 - rotZ: 357.29 + rotX: 358.0 + rotY: 270.0 + rotZ: 357.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fingerprint Kit b9bb2a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fingerprint Kit b9bb2a.yaml index dc80ef056..967128e7a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fingerprint Kit b9bb2a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fingerprint Kit b9bb2a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430810 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4308': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05024\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n\ + }" GUID: b9bb2a Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 4.01 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Finn Edwards 82dc80.yaml b/unpacked/Bag All Player Cards 15bb07/Card Finn Edwards 82dc80.yaml index 69b751a3e..254679289 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Finn Edwards 82dc80.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Finn Edwards 82dc80.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 261918 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2619': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"04003-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"04003-m\",\n \"type\": \"Minicard\"\n}" GUID: 82dc80 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.87 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Finn Edwards dd40c0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Finn Edwards dd40c0.yaml index 9cfc5def4..34dfdd6ec 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Finn Edwards dd40c0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Finn Edwards dd40c0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 271518 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2715': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 50.42 - posY: 2.49 + posY: 2.5 posZ: 23.82 - rotX: 1.81 - rotY: 179.99 + rotX: 2.0 + rotY: 180.0 rotZ: 0.0 - scaleX: 1.1 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Finn's Trusty .38 848d9c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Finn's Trusty .38 848d9c.yaml index a94874e6e..ccf177a46 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Finn's Trusty .38 848d9c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Finn's Trusty .38 848d9c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 376739 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3767': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"agilityIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ + : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten\ + \ Age\"\n}" GUID: 848d9c Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.55 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fire Axe 9da37c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fire Axe 9da37c.yaml index aa5e15488..0f44663d3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fire Axe 9da37c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fire Axe 9da37c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368825 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02032\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\"\ - : \"The Dunwich Legacy\"\n}" + combatIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 9da37c Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.52 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fire Extinguisher (1) 8a4673.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fire Extinguisher (1) 8a4673.yaml index 321aaa772..6a7558128 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fire Extinguisher (1) 8a4673.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fire Extinguisher (1) 8a4673.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368838 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02114\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Tool. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\"\ - : \"The Dunwich Legacy\"\n}" + agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 8a4673 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.03 posY: 3.68 posZ: -16.7 - rotX: 359.96 - rotY: 269.98 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fire Extinguisher (3) fb019d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fire Extinguisher (3) fb019d.yaml index 2fd6d0ed4..51495bf26 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fire Extinguisher (3) fb019d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fire Extinguisher (3) fb019d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378909 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08080\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Tool. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\"\ - : \"Edge of the Earth\"\n}" + agilityIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: fb019d Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.95 posZ: -16.73 - rotX: 359.91 - rotY: 269.8 - rotZ: 0.08 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card First Aid (3) 3c7eb1.yaml b/unpacked/Bag All Player Cards 15bb07/Card First Aid (3) 3c7eb1.yaml index 733d37d13..a786df252 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card First Aid (3) 3c7eb1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card First Aid (3) 3c7eb1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587215 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5872': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01683\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Talent. Science.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 4,\n \"type\": \"Supply\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Core\"\n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Talent. Science.\",\n \"willpowerIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}" GUID: 3c7eb1 Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 78.92 posY: 3.32 posZ: 7.63 - rotX: 359.07 - rotY: 269.99 - rotZ: 0.81 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card First Aid (3) bc80ab.yaml b/unpacked/Bag All Player Cards 15bb07/Card First Aid (3) bc80ab.yaml index d55cdb9fe..87a468793 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card First Aid (3) bc80ab.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card First Aid (3) bc80ab.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226353 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -19,12 +19,11 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"03230\",\n \"alternate_ids\": [\n \"01683\"\n ],\n \ - \ \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 2,\n \"level\"\ - : 3,\n \"traits\": \"Talent. Science.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n \"count\": 4,\n\ - \ \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ - : \"The Path to Carcosa\"\n}" +GMNotes: "{\n \"id\": \"03230\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Talent. Science.\",\n \"willpowerIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\ + \n}" GUID: bc80ab Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 4.19 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.97 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card First Aid 56b8ad.yaml b/unpacked/Bag All Player Cards 15bb07/Card First Aid 56b8ad.yaml index 125f261c4..bfa5726fd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card First Aid 56b8ad.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card First Aid 56b8ad.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587200 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5872': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01519\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent. Science.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Core\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent. Science.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}" GUID: 56b8ad Grid: true GridProjection: false @@ -41,15 +40,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 78.81 posY: 3.32 - posZ: 7.66 - rotX: 358.95 - rotY: 269.99 + posZ: 7.67 + rotX: 359.0 + rotY: 270.0 rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card First Aid 5cd622.yaml b/unpacked/Bag All Player Cards 15bb07/Card First Aid 5cd622.yaml index c2a825e0d..b090731ce 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card First Aid 5cd622.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card First Aid 5cd622.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226324 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01019\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent. Science.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Core\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent. Science.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}" GUID: 5cd622 Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.83 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card First Watch 0bb3da.yaml b/unpacked/Bag All Player Cards 15bb07/Card First Watch 0bb3da.yaml index 6db3e19d8..a7d158678 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card First Watch 0bb3da.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card First Watch 0bb3da.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379828 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3798': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06110\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 0bb3da Grid: true GridProjection: false @@ -46,8 +45,8 @@ Transform: posX: 9.05 posY: 3.76 posZ: -16.71 - rotX: 359.94 - rotY: 269.95 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fishing Net c7b748.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fishing Net c7b748.yaml index cc294413f..3f7a03fb2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fishing Net c7b748.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fishing Net c7b748.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 7502 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '75': BackIsHidden: true @@ -20,8 +20,7 @@ CustomDeck: Description: Trap. DragSelectable: true GMNotes: "{\n \"id\": \"81021\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Trap.\",\n \"permanent\": false,\n \"weakness\": false,\n \ - \ \"cycle\": \"Standalone\"\n}" + ,\n \"traits\": \"Trap.\",\n \"cycle\": \"Standalone\"\n}" GUID: c7b748 Grid: true GridProjection: false @@ -39,16 +38,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.35 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Five of Pentacles (1) 46187b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Five of Pentacles (1) 46187b.yaml index 8e1b2207a..e70b97297 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Five of Pentacles (1) 46187b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Five of Pentacles (1) 46187b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 274609 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2746': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: From the Brink DragSelectable: true GMNotes: "{\n \"id\": \"05039\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"cycle\": \"The\ + \ Circle Undone\"\n}" GUID: 46187b Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.06 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Flamethrower (5) (Taboo) 8f170b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Flamethrower (5) (Taboo) 8f170b.yaml index cd59a05a3..8c4591f29 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Flamethrower (5) (Taboo) 8f170b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Flamethrower (5) (Taboo) 8f170b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450608 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04305-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Item. Weapon. Firearm.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"wildIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}" + \ \"combatIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\"\ + : 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"\ + cycle\": \"The Forgotten Age\"\n}" GUID: 8f170b Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.17 posY: 3.18 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Flamethrower (5) cf4f15.yaml b/unpacked/Bag All Player Cards 15bb07/Card Flamethrower (5) cf4f15.yaml index 826947b17..c84d282f5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Flamethrower (5) cf4f15.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Flamethrower (5) cf4f15.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 314002 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3140': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04305-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Item. Weapon. Firearm.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"wildIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}" + \ \"combatIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\"\ + : 4,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"\ + cycle\": \"The Forgotten Age\"\n}" GUID: cf4f15 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.8 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Flare (1) 017821.yaml b/unpacked/Bag All Player Cards 15bb07/Card Flare (1) 017821.yaml index 4a38ec4c1..275755bc1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Flare (1) 017821.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Flare (1) 017821.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368839 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02115\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 017821 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.03 posY: 3.68 posZ: -16.7 - rotX: 359.93 - rotY: 269.98 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Flashlight (3) 2b3301.yaml b/unpacked/Bag All Player Cards 15bb07/Card Flashlight (3) 2b3301.yaml index 8b7f93619..23f6fc5b3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Flashlight (3) 2b3301.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Flashlight (3) 2b3301.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379146 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -19,11 +19,11 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09122\",\n \"type\": \"Asset\",\n \"cost\": 2,\n \"level\"\ - : 3,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"\ - count\": 4,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n\ - \ ]\n}" +GMNotes: "{\n \"id\": \"09122\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Tool.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"\ + type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + The Scarlet Keys\"\n}" GUID: 2b3301 Grid: true GridProjection: false @@ -48,9 +48,9 @@ Transform: posX: 16.72 posY: 3.37 posZ: 65.64 - rotX: 359.52 + rotX: 0.0 rotY: 270.0 - rotZ: 0.55 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Flashlight bb1cce.yaml b/unpacked/Bag All Player Cards 15bb07/Card Flashlight bb1cce.yaml index 7250114f9..4110fa55c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Flashlight bb1cce.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Flashlight bb1cce.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368515 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -21,10 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01087\",\n \"alternate_ids\": [\n \"01587\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"level\":\ - \ 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ - : \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\ - \n}" + \ 0,\n \"traits\": \"Item. Tool.\",\n \"intellectIcons\": 1,\n \"uses\": [\n\ + \ {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\ + \n }\n ],\n \"cycle\": \"Core\"\n}" GUID: bb1cce Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 270.01 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Flesh Ward 52c686.yaml b/unpacked/Bag All Player Cards 15bb07/Card Flesh Ward 52c686.yaml index 89e947932..30fe45d1c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Flesh Ward 52c686.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Flesh Ward 52c686.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545304 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60106\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ritual.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n\ + }" GUID: 52c686 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 4.18 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) (Taboo) 669c4e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) (Taboo) 669c4e.yaml index 1a7206f71..6f4173934 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) (Taboo) 669c4e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) (Taboo) 669c4e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558213 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07268-t\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"level\": 4,\n \"traits\": \"Item. Instrument. Relic. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"level\": 4,\n \"traits\": \"Item. Instrument. Relic. Cursed.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth\ + \ Conspiracy\"\n}" GUID: 669c4e Grid: true GridProjection: false @@ -47,9 +47,9 @@ Transform: posX: 21.84 posY: 4.46 posZ: -48.41 - rotX: 359.99 - rotY: 269.85 - rotZ: 0.21 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) 3cc1e2.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) 3cc1e2.ttslua index 000cd744a..63d2a5430 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) 3cc1e2.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) 3cc1e2.ttslua @@ -78,4 +78,4 @@ function getChaosBag() end if chaosbag == nil then printToAll("No chaos bag found") end return chaosbag -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) 3cc1e2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) 3cc1e2.yaml index 7e132045c..60cc36fbd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) 3cc1e2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Flute of the Outer Gods (4) 3cc1e2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449607 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4496': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07268\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"level\": 4,\n \"traits\": \"Item. Instrument. Relic. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"level\": 4,\n \"traits\": \"Item. Instrument. Relic. Cursed.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth\ + \ Conspiracy\"\n}" GUID: 3cc1e2 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.99 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Followed 0cc3e7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Followed 0cc3e7.yaml index c3c6c68e1..16a694dff 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Followed 0cc3e7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Followed 0cc3e7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 380025 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3800': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06114\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 0cc3e7 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 3.73 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fool me once... (1) b6506d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fool me once... (1) b6506d.yaml index 417012535..ed193b48d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fool me once... (1) b6506d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fool me once... (1) b6506d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379830 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3798': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06156\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Insight. Tactic.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: b6506d Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.16 posY: 4.18 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Foolishness fa777f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Foolishness fa777f.yaml index 0ea069ff7..a085bf8e2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Foolishness fa777f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Foolishness fa777f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230502 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2305': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"98011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 4,\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Promo\"\n}" + ,\n \"cost\": 4,\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"wildIcons\"\ + : 2,\n \"cycle\": \"Promo\"\n}" GUID: fa777f Grid: true GridProjection: false @@ -39,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.78 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Forbidden Knowledge 80acd2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Forbidden Knowledge 80acd2.yaml index 9e779d979..3937552ce 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Forbidden Knowledge 80acd2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Forbidden Knowledge 80acd2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230316 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,10 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01058\",\n \"alternate_ids\": [\n \"01558\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 0,\n \"level\": 0,\n\ - \ \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \ - \ \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\"\ - : \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\ - \n}" + \ \"traits\": \"Talent.\",\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \ + \ \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n\ + \ }\n ],\n \"cycle\": \"Core\"\n}" GUID: 80acd2 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 32.98 - posY: 3.32 + posY: 3.33 posZ: -47.41 - rotX: 1.15 - rotY: 270.02 - rotZ: 1.69 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome (3) 2f4507.yaml b/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome (3) 2f4507.yaml index 0d962cc66..809cf1610 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome (3) 2f4507.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome (3) 2f4507.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538827 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -21,8 +21,8 @@ Description: Dark Knowledge DragSelectable: true GMNotes: "{\n \"id\": \"60229\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Relic. Tome.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\"\ - : 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" + willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"\ + Investigator Packs\"\n}" GUID: 2f4507 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.09 posY: 3.68 posZ: -16.71 - rotX: 359.91 - rotY: 269.89 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome (3) f375bf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome (3) f375bf.yaml index c0bf7562a..475ff14ce 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome (3) f375bf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome (3) f375bf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538828 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -21,8 +21,8 @@ Description: Secrets Revealed DragSelectable: true GMNotes: "{\n \"id\": \"60230\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Relic. Tome.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" + intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\":\ + \ \"Investigator Packs\"\n}" GUID: f375bf Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.46 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome 0a4d22.yaml b/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome 0a4d22.yaml index c5aa6956d..c3a8263f5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome 0a4d22.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Forbidden Tome 0a4d22.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538808 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -21,9 +21,9 @@ Description: Untranslated DragSelectable: true GMNotes: "{\n \"id\": \"60210\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Relic. Tome.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"uses\": [\n\ - \ {\n \"count\": 5,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Secret\"\ + ,\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\ + \n}" GUID: 0a4d22 Grid: true GridProjection: false @@ -41,15 +41,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.76 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Forced Learning fa06f9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Forced Learning fa06f9.yaml index 863184021..be26976a7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Forced Learning fa06f9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Forced Learning fa06f9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379021 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,7 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08031\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"level\": 0,\n \"traits\": \"Talent. Ritual.\",\n \"permanent\": true,\n\ - \ \"weakness\": false,\n \"cycle\": \"Edge of the Earth\"\n}" + \ \"cycle\": \"Edge of the Earth\"\n}" GUID: fa06f9 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.15 posZ: -16.74 - rotX: 359.92 - rotY: 269.79 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Foresight (1) c09a15.yaml b/unpacked/Bag All Player Cards 15bb07/Card Foresight (1) c09a15.yaml index 532ea22cf..bf72d7c61 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Foresight (1) c09a15.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Foresight (1) c09a15.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379054 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08064\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Augury.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Edge\ - \ of the Earth\"\n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Augury.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: c09a15 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.19 posY: 2.31 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Forewarned (1) c17f2c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Forewarned (1) c17f2c.yaml index 87c680f70..31a6da0f3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Forewarned (1) c17f2c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Forewarned (1) c17f2c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430636 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03150\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: c17f2c Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.16 posY: 3.52 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.94 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fortuitous Discovery dacbf0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fortuitous Discovery dacbf0.yaml index d6443dd99..ebb0f0af6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fortuitous Discovery dacbf0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fortuitous Discovery dacbf0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 440627 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4406': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06034\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 0,\n \"traits\": \"Fortune. Insight.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Fortune. Insight.\",\n \"cycle\": \"The Dream-Eaters\"\ + \n}" GUID: dacbf0 Grid: true GridProjection: false @@ -45,8 +45,8 @@ Transform: posX: 9.15 posY: 3.97 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Fortune or Fate (2) e674e8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Fortune or Fate (2) e674e8.yaml index 1ef914803..6786f4c15 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Fortune or Fate (2) e674e8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Fortune or Fate (2) e674e8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 293015 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2930': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05237\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Fortune. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Fortune. Blessed.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: e674e8 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.01 posY: 3.76 posZ: -16.7 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Four of Cups (1) dd4e2a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Four of Cups (1) dd4e2a.yaml index 3e4a010b8..70639c219 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Four of Cups (1) dd4e2a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Four of Cups (1) dd4e2a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430905 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4309': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Chalice of the Heart DragSelectable: true GMNotes: "{\n \"id\": \"05035\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"cycle\": \"The\ + \ Circle Undone\"\n}" GUID: dd4e2a Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 3.44 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.94 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Friends in Low Places c332af.yaml b/unpacked/Bag All Player Cards 15bb07/Card Friends in Low Places c332af.yaml index 3da914803..355915a8e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Friends in Low Places c332af.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Friends in Low Places c332af.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379053 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,26 +20,25 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09060\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Favor.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"customizations\": [\n {\n \"name\": \"Helpful\",\n \"xp\"\ - : 1,\n \"text\": \"When you play Friends in Low Places, you may choose another\ - \ investigator at your location to resolve its effects.\"\n },\n {\n \ - \ \"name\": \"Versatile\",\n \"xp\": 2,\n \"text\": \"Choose another Trait.\ - \ When you play Friends in Low Places, you may choose one of the looked-at cards\ - \ with both chosen Traits to add to your hand without spending 1 resource.\"\n \ - \ },\n {\n \"name\": \"Bolstering\",\n \"xp\": 2,\n \"text\"\ - : \"Each card added to your hand by Friends in Low Places gains a ? icon until the\ - \ end of the phase.\"\n },\n {\n \"name\": \"Clever\",\n \"xp\"\ - : 2,\n \"text\": \"Instead of shuffling the remaining cards into your deck,\ - \ you may place each of them on the top of your deck, in any order.\"\n },\n\ - \ {\n \"name\": \"Prompt\",\n \"xp\": 2,\n \"text\": \"Friends\ - \ in Low Places gains fast and \uFFFD\u20AC\uFFFDplay during any ? window.\uFFFD\ - \u20AC?\"\n },\n {\n \"name\": \"Experienced\",\n \"xp\": 3,\n \ - \ \"text\": \"Increase the number of cards looked at by 3.\"\n },\n {\n\ - \ \"name\": \"Swift\",\n \"xp\": 3,\n \"text\": \"You may play one\ - \ of the cards added to your hand (paying its cost).\"\n }\n ],\n \"cycle\"\ - : \"The Scarlet Keys\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Favor.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"customizations\": [\n {\n \"name\": \"\ + Helpful\",\n \"xp\": 1,\n \"text\": \"When you play Friends in Low Places,\ + \ you may choose another investigator at your location to resolve its effects.\"\ + \n },\n {\n \"name\": \"Versatile\",\n \"xp\": 2,\n \"text\"\ + : \"Choose another Trait. When you play Friends in Low Places, you may choose one\ + \ of the looked-at cards with both chosen Traits to add to your hand without spending\ + \ 1 resource.\"\n },\n {\n \"name\": \"Bolstering\",\n \"xp\": 2,\n\ + \ \"text\": \"Each card added to your hand by Friends in Low Places gains a\ + \ ? icon until the end of the phase.\"\n },\n {\n \"name\": \"Clever\"\ + ,\n \"xp\": 2,\n \"text\": \"Instead of shuffling the remaining cards\ + \ into your deck, you may place each of them on the top of your deck, in any order.\"\ + \n },\n {\n \"name\": \"Prompt\",\n \"xp\": 2,\n \"text\":\ + \ \"Friends in Low Places gains fast and \u201Cplay during any \U0001F5F2 window.\u201D\ + \"\n },\n {\n \"name\": \"Experienced\",\n \"xp\": 3,\n \"\ + text\": \"Increase the number of cards looked at by 3.\"\n },\n {\n \"\ + name\": \"Swift\",\n \"xp\": 3,\n \"text\": \"You may play one of the\ + \ cards added to your hand (paying its cost).\"\n }\n ],\n \"cycle\": \"The\ + \ Scarlet Keys\"\n}" GUID: c332af Grid: true GridProjection: false @@ -63,9 +62,9 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 359.01 - rotY: 270.01 - rotZ: 358.93 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Frostbitten 8abd77.yaml b/unpacked/Bag All Player Cards 15bb07/Card Frostbitten 8abd77.yaml index 30d71fc67..fa4153890 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Frostbitten 8abd77.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Frostbitten 8abd77.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450318 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4503': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness. DragSelectable: true GMNotes: "{\n \"id\": \"08646\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Injury.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Injury.\",\n \"weakness\": true,\n \"cycle\": \"Edge of the\ + \ Earth\"\n}" GUID: 8abd77 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 79.12 posY: 3.33 posZ: 7.26 - rotX: 359.77 - rotY: 269.99 - rotZ: 0.38 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Galvanize (1) 9e7f6a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Galvanize (1) 9e7f6a.yaml index 13424c447..1aad2df7e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Galvanize (1) 9e7f6a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Galvanize (1) 9e7f6a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545319 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60121\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 9e7f6a Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.16 posY: 4.07 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gang Up (1) 09cc35.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gang Up (1) 09cc35.yaml index e7e61bc4e..8667831d0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gang Up (1) 09cc35.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gang Up (1) 09cc35.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379012 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08022\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Spirit. Synergy.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Spirit. Synergy.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 09cc35 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.2 posY: 2.35 posZ: -16.74 - rotX: 359.96 - rotY: 269.8 - rotZ: 359.77 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Garrote Wire (2) b45c82.yaml b/unpacked/Bag All Player Cards 15bb07/Card Garrote Wire (2) b45c82.yaml index 1f02f9264..0db9931f2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Garrote Wire (2) b45c82.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Garrote Wire (2) b45c82.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449034 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4490': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06280\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon.\",\n \"combatIcons\"\ + : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: b45c82 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.71 posZ: -16.69 - rotX: 359.93 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gate Box b8c891.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gate Box b8c891.yaml index d8feee148..d7c969971 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gate Box b8c891.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gate Box b8c891.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 582507 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5825': BackIsHidden: true @@ -21,10 +21,10 @@ Description: Worlds within Worlds DragSelectable: true GMNotes: "{\n \"id\": \"06013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ ,\n \"startsInPlay\": true,\n \"cost\": 3,\n \"traits\": \"Item. Relic.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \ - \ \"count\": 1,\n \"id\": \"06015a\"\n }\n ],\n \"uses\": [\n {\n \ - \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n\ - \ }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}" + \ \"bonded\": [\n {\n \"count\": 1,\n \"id\": \"06015a\"\n }\n\ + \ ],\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n\ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n\ + }" GUID: b8c891 Grid: true GridProjection: false @@ -42,16 +42,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.08 posY: 3.69 posZ: -16.71 - rotX: 0.01 - rotY: 269.9 - rotZ: 359.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gavriella Mizrah 2237f4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gavriella Mizrah 2237f4.yaml index 4f7b823f8..d585422a4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gavriella Mizrah 2237f4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gavriella Mizrah 2237f4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 312511 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3125': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Not Going Down That Easily DragSelectable: true GMNotes: "{\n \"id\": \"05258\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Ally. Veteran.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Circle Undone\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Ally. Veteran.\",\n \"combatIcons\": 1,\n \"\ + wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 2237f4 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.77 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gaze of Ouraxsh (2) b7c316.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gaze of Ouraxsh (2) b7c316.yaml index 77b1a159d..276c82cdc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gaze of Ouraxsh (2) b7c316.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gaze of Ouraxsh (2) b7c316.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232103 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2321': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07155\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell. Cursed.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: b7c316 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.2 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Geared Up 028cf7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Geared Up 028cf7.yaml index 2e8c0274c..eb1e55bc1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Geared Up 028cf7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Geared Up 028cf7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379009 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08019\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"Edge of the Earth\"\n}" GUID: 028cf7 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.99 posZ: -16.73 - rotX: 0.05 - rotY: 269.8 - rotZ: 359.31 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Geas (2) b7223c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Geas (2) b7223c.yaml index abaacdb4e..64b8fd253 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Geas (2) b7223c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Geas (2) b7223c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449604 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4496': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07265\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Pact.\",\n \"cycle\": \"The\ + \ Innsmouth Conspiracy\"\n}" GUID: b7223c Grid: true GridProjection: false @@ -39,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.09 posY: 3.71 posZ: -16.71 - rotX: 359.95 - rotY: 269.88 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gené Beauregard (3) (Taboo) ab32db.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gené Beauregard (3) (Taboo) ab32db.yaml index 58dde3b1b..093283cc1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gené Beauregard (3) (Taboo) ab32db.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gené Beauregard (3) (Taboo) ab32db.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558204 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Intrepid Explorer DragSelectable: true GMNotes: "{\n \"id\": \"08099-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue\"\ - ,\n \"cost\": 5,\n \"level\": 3,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 5,\n \"level\": 3,\n \"traits\": \"Ally. Wayfarer.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: ab32db Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 21.85 posY: 4.65 posZ: -52.36 - rotX: 359.99 - rotY: 269.85 - rotZ: 0.21 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gené Beauregard (3) 255aa3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gené Beauregard (3) 255aa3.yaml index c4b041a78..37e8cb8c9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gené Beauregard (3) 255aa3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gené Beauregard (3) 255aa3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378937 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Intrepid Explorer DragSelectable: true GMNotes: "{\n \"id\": \"08099\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue\"\ - ,\n \"cost\": 5,\n \"level\": 3,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 5,\n \"level\": 3,\n \"traits\": \"Ally. Wayfarer.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 255aa3 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.7 posZ: -16.73 - rotX: 359.89 - rotY: 269.8 - rotZ: 0.19 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Get behind me! 76270e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Get behind me! 76270e.yaml index 2a0ca1ea7..a72ff64e3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Get behind me! 76270e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Get behind me! 76270e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379011 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08021\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 76270e Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.2 posY: 2.35 posZ: -16.74 - rotX: 359.96 - rotY: 269.8 - rotZ: 359.77 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Get over here! (2) 415ca2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Get over here! (2) 415ca2.yaml index 531ad2aa1..ef6c8e75e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Get over here! (2) 415ca2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Get over here! (2) 415ca2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545321 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60123\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spirit. Tactic.\",\n \"willpowerIcons\"\ + : 2,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 415ca2 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.05 posY: 3.89 posZ: -16.7 - rotX: 359.78 - rotY: 269.96 - rotZ: 0.1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Get over here! 5b0f86.yaml b/unpacked/Bag All Player Cards 15bb07/Card Get over here! 5b0f86.yaml index 1b6047619..cb4be5355 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Get over here! 5b0f86.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Get over here! 5b0f86.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545312 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60114\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 5b0f86 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.17 posY: 3.13 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ghastly Possession 63282f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ghastly Possession 63282f.yaml index 0362ed7b7..fe90c0c0c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ghastly Possession 63282f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ghastly Possession 63282f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379114 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09090\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\"\ - ,\n \"level\": 1,\n \"traits\": \"Innate. Spell.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 1\n}" + ,\n \"level\": 1,\n \"traits\": \"Innate. Spell.\",\n \"wildIcons\": 1,\n \"\ + cycle\": \"The Scarlet Keys\"\n}" GUID: 63282f Grid: true GridProjection: false @@ -45,8 +45,8 @@ Transform: posX: 16.7 posY: 3.35 posZ: 65.71 - rotX: 358.38 - rotY: 269.99 + rotX: 358.0 + rotY: 270.0 rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ghastly Revelation b7c503.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ghastly Revelation b7c503.yaml index ca3f7c54d..5782a4b78 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ghastly Revelation b7c503.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ghastly Revelation b7c503.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 592318 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5923': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05275\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"The Circle Undone\"\n}" GUID: b7c503 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.19 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gilded Volto d0e108.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gilded Volto d0e108.yaml index ade361115..f2cfe5b5c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gilded Volto d0e108.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gilded Volto d0e108.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 295604 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2956': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"82026\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"\ - Standalone\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Item. Mask.\",\n \"agilityIcons\": 1,\n \"\ + wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}" GUID: d0e108 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.66 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Girish Kadakia (4) bdd70d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Girish Kadakia (4) bdd70d.yaml index 7df66102c..869e4a595 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Girish Kadakia (4) bdd70d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Girish Kadakia (4) bdd70d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379031 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: ICPC Punjab Detective DragSelectable: true GMNotes: "{\n \"id\": \"09038\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ally. Police.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ally. Police.\",\n \"willpowerIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: bdd70d Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 16.67 posY: 3.35 posZ: 65.93 - rotX: 356.92 - rotY: 270.11 - rotZ: 356.66 + rotX: 357.0 + rotY: 270.0 + rotZ: 357.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Glimpse the Unthinkable (1) 6e4d54.yaml b/unpacked/Bag All Player Cards 15bb07/Card Glimpse the Unthinkable (1) 6e4d54.yaml index 84140dafa..7eb8f98e3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Glimpse the Unthinkable (1) 6e4d54.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Glimpse the Unthinkable (1) 6e4d54.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538819 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60221\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 6e4d54 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.04 posY: 3.89 posZ: -16.7 - rotX: 359.82 - rotY: 269.96 - rotZ: 0.08 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Glimpse the Unthinkable (5) 090fcf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Glimpse the Unthinkable (5) 090fcf.yaml index b5566a2b3..d107119aa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Glimpse the Unthinkable (5) 090fcf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Glimpse the Unthinkable (5) 090fcf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 591922 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5919': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05318\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 5,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 3,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 1,\n \"level\": 5,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 3,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 090fcf Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.11 posY: 3.82 posZ: -16.72 - rotX: 359.96 - rotY: 269.84 - rotZ: -0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gloria Goldberg 571596.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gloria Goldberg 571596.yaml index 8ac78da4c..9fa5e40f0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gloria Goldberg 571596.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gloria Goldberg 571596.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 270200 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2702': BackIsHidden: true @@ -39,17 +39,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 2.13 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Glory 273584.yaml b/unpacked/Bag All Player Cards 15bb07/Card Glory 273584.yaml index cb6838d0e..57fbcb722 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Glory 273584.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Glory 273584.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545313 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60115\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"Investigator Packs\"\n}" GUID: '273584' Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 3.81 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Granny Orne (3) 52a66f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Granny Orne (3) 52a66f.yaml index 0d1384888..ff14e3d92 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Granny Orne (3) 52a66f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Granny Orne (3) 52a66f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550825 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Tough Old Bird DragSelectable: true GMNotes: "{\n \"id\": \"60527\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Ally.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"\ - cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Ally.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 52a66f Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.72 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Granny Orne 1cccfe.yaml b/unpacked/Bag All Player Cards 15bb07/Card Granny Orne 1cccfe.yaml index 3fc3620ea..4441de20b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Granny Orne 1cccfe.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Granny Orne 1cccfe.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550806 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Tough Old Bird DragSelectable: true GMNotes: "{\n \"id\": \"60508\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator Packs\"\ - \n}" + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 1cccfe Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.08 posY: 3.68 posZ: -16.71 - rotX: 359.92 - rotY: 269.91 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grappling Hook 09f1a2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grappling Hook 09f1a2.yaml index 0f49b2e37..349b45b55 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grappling Hook 09f1a2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grappling Hook 09f1a2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379005 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -19,10 +19,9 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09009\",\n \"type\": \"Asset\",\n \"cost\": 3,\n \"traits\"\ - : \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\"\ - : 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\ - \n}" +GMNotes: "{\n \"id\": \"09009\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ + ,\n \"cost\": 3,\n \"traits\": \"Item. Tool.\",\n \"intellectIcons\": 1,\n \"\ + agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 09f1a2 Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 17.98 posY: 2.21 posZ: 59.36 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gravedigger's Shovel (2) 96a440.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gravedigger's Shovel (2) 96a440.yaml index 95ee794a0..53d966f69 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gravedigger's Shovel (2) 96a440.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gravedigger's Shovel (2) 96a440.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 440622 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4406': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"52010\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Item. Tool. Weapon. Melee.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"\ - cycle\": \"Return to the Path to Carcosa\"\n}" + ,\n \"combatIcons\": 2,\n \"cycle\": \"Return to the Path to Carcosa\"\n}" GUID: 96a440 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.01 posY: 3.99 posZ: -16.7 - rotX: 359.88 + rotX: 0.0 rotY: 270.0 - rotZ: 0.03 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gravedigger's Shovel 3fe6de.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gravedigger's Shovel 3fe6de.yaml index 8d479bf7e..6b8b90a80 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gravedigger's Shovel 3fe6de.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gravedigger's Shovel 3fe6de.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368829 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03037\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tool. Weapon. Melee.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - cycle\": \"The Path to Carcosa\"\n}" + ,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 3fe6de Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.66 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Graveyard Ghouls 80b7c6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Graveyard Ghouls 80b7c6.yaml index 0c2fa81cb..ed56350ce 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Graveyard Ghouls 80b7c6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Graveyard Ghouls 80b7c6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 373819 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3738': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03017\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Humanoid. Monster. Ghoul.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"traits\": \"Humanoid. Monster. Ghoul.\",\n \"weakness\": true,\n \"cycle\"\ + : \"The Path to Carcosa\"\n}" GUID: 80b7c6 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.98 posY: 3.92 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gray's Anatomy (5) f4e7f3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gray's Anatomy (5) f4e7f3.yaml index 1b7d66db6..8aaad25f5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gray's Anatomy (5) f4e7f3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gray's Anatomy (5) f4e7f3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379051 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: The Doctors' Bible DragSelectable: true GMNotes: "{\n \"id\": \"09058\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Tome.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Scarlet\ + \ Keys\"\n}" GUID: f4e7f3 Grid: true GridProjection: false @@ -47,9 +47,9 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 358.96 - rotY: 270.01 - rotZ: 358.87 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Greed 0ca36f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Greed 0ca36f.yaml index 0f8216f3b..8819c4194 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Greed 0ca36f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Greed 0ca36f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379000 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"08018\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Flaw.\",\n \"weakness\": true,\n \"cycle\": \"Edge of the Earth\"\ + \n}" GUID: 0ca36f Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.2 posY: 2.43 posZ: -16.74 - rotX: 359.97 - rotY: 269.8 - rotZ: 359.72 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Green Man Medallion c729ab.yaml b/unpacked/Bag All Player Cards 15bb07/Card Green Man Medallion c729ab.yaml index 62c04912d..1ac4c00e7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Green Man Medallion c729ab.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Green Man Medallion c729ab.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 371565 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3715': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Hour of the Huntress DragSelectable: true GMNotes: "{\n \"id\": \"98002\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Promo\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Item. Relic.\",\n \"wildIcons\": 2,\n \"cycle\"\ + : \"Promo\"\n}" GUID: c729ab Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.68 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Green Soapstone d36d80.yaml b/unpacked/Bag All Player Cards 15bb07/Card Green Soapstone d36d80.yaml index e97c87340..696291022 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Green Soapstone d36d80.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Green Soapstone d36d80.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450306 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4503': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Jinxed Idol DragSelectable: true GMNotes: "{\n \"id\": \"08614\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Item. Expedition.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 2,\n \"wildIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Item. Expedition.\",\n \"combatIcons\": 2,\n\ + \ \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\"\ + : \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of\ + \ the Earth\"\n}" GUID: d36d80 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 79.37 posY: 3.33 posZ: 7.63 - rotX: 359.48 - rotY: 269.99 - rotZ: 0.18 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gregory Gry 90bf93.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gregory Gry 90bf93.yaml index df11067a2..3a800aed6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gregory Gry 90bf93.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gregory Gry 90bf93.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 380029 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3800': BackIsHidden: true @@ -21,9 +21,9 @@ Description: Muckraker DragSelectable: true GMNotes: "{\n \"id\": \"06162\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Criminal. Dreamer.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"\ - uses\": [\n {\n \"count\": 9,\n \"type\": \"Resource\",\n \"token\"\ - : \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}" + \ \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 9,\n \"type\"\ + : \"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The\ + \ Dream-Eaters\"\n}" GUID: 90bf93 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.02 posY: 4.03 posZ: -16.7 - rotX: 359.81 - rotY: 269.99 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grete Wagner (3) b39b78.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grete Wagner (3) b39b78.yaml index fdc723600..773c5e778 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grete Wagner (3) b39b78.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grete Wagner (3) b39b78.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545326 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: The Purifier DragSelectable: true GMNotes: "{\n \"id\": \"60128\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 5,\n \"level\": 3,\n \"traits\": \"Ally. Hunter.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 5,\n \"level\": 3,\n \"traits\": \"Ally. Hunter.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\ + \n}" GUID: b39b78 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.14 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grete Wagner f6dfe5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grete Wagner f6dfe5.yaml index d41f2c20f..593624619 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grete Wagner f6dfe5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grete Wagner f6dfe5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545305 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: The Purifier DragSelectable: true GMNotes: "{\n \"id\": \"60107\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 5,\n \"level\": 0,\n \"traits\": \"Ally. Hunter.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 5,\n \"level\": 0,\n \"traits\": \"Ally. Hunter.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: f6dfe5 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.06 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grievous Wound d7c63c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grievous Wound d7c63c.yaml index d5e6fd142..ec9bf91bd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grievous Wound d7c63c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grievous Wound d7c63c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379020 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09027\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Scarlet\ - \ Keys\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"combatIcons\"\ + : 2,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: d7c63c Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 13.02 posY: 2.21 posZ: 51.63 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grim Memoir d1f1d9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grim Memoir d1f1d9.yaml index de21cb877..3a2cb0bc5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grim Memoir d1f1d9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grim Memoir d1f1d9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379037 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09044\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"\ - count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n\ - \ ]\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: d1f1d9 Grid: true GridProjection: false @@ -48,9 +47,9 @@ Transform: posX: 16.67 posY: 3.4 posZ: 65.93 - rotX: 359.3 - rotY: 270.01 - rotZ: 359.24 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grimm's Fairy Tales 1d75d0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grimm's Fairy Tales 1d75d0.yaml index ef6d92bc0..b586c5df5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grimm's Fairy Tales 1d75d0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grimm's Fairy Tales 1d75d0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550804 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60506\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n\ + }" GUID: 1d75d0 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.02 posY: 4.05 posZ: -16.7 - rotX: 359.82 - rotY: 269.99 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem (3) 1433eb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem (3) 1433eb.yaml index db13a5d55..0def0e07a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem (3) 1433eb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem (3) 1433eb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 293217 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2932': BackIsHidden: true @@ -21,8 +21,8 @@ Description: Seeker DragSelectable: true GMNotes: "{\n \"id\": \"05194\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Charm. Cursed.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"cycle\": \"The Circle Undone\"\n}" + willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\ + \n}" GUID: 1433eb Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.02 posY: 3.99 posZ: -16.7 - rotX: 359.8 - rotY: 269.99 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem (3) 5fae20.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem (3) 5fae20.yaml index 5f6eb745f..1c290cbac 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem (3) 5fae20.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem (3) 5fae20.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 293016 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2930': BackIsHidden: true @@ -21,8 +21,8 @@ Description: Survivor DragSelectable: true GMNotes: "{\n \"id\": \"05195\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Charm. Blessed.\",\n \ - \ \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"\ - agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" + \ \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\ + \n}" GUID: 5fae20 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.17 - posY: 2.91 + posY: 2.92 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem a20887.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem a20887.yaml index fb2dc75b7..02f4c2ff3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem a20887.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grisly Totem a20887.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 277606 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2776': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05119\",\n \"type\": \"Asset\",\n \"class\": \"Survivor|Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: a20887 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.69 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grit Your Teeth a92a90.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grit Your Teeth a92a90.yaml index fa77ba9ec..56f3e1ea7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grit Your Teeth a92a90.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grit Your Teeth a92a90.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550813 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60515\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: a92a90 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 5.33 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grizzled 9417a7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grizzled 9417a7.yaml index e5a44b14f..dcd3e43ce 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grizzled 9417a7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grizzled 9417a7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379125 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,21 +20,21 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09101\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 1,\n \"customizations\": [\n {\n \ - \ \"name\": \"Specialist\",\n \"xp\": 1,\n \"text\": \"Choose another\ - \ trait.\"\n },\n {\n \"name\": \"Specialist\",\n \"xp\": 2,\n \ - \ \"text\": \"Choose another trait.\"\n },\n {\n \"name\": \"Nemesis\"\ - ,\n \"xp\": 3,\n \"text\": \"If this is a skill test on or against an\ - \ enemy with a chosen trait and the test is successful, you may attach Grizzled\ - \ to that enemy. Reduce the difficulty of tests on or against the attached enemy\ - \ by 1.\"\n },\n {\n \"name\": \"Mythos-Hardened\",\n \"xp\": 4,\n\ - \ \"text\": \"If this skill test is on a treachery with a chosen trait and\ - \ the test is successful, you may add both Grizzled and that treachery to the victory\ - \ display.\"\n },\n {\n \"name\": \"Always Prepared\",\n \"xp\"\ - : 5,\n \"text\": \"After you draw an encounter card with a chosen trait, return\ - \ one copy of Grizzled from your discard pile to your hand. (Max once per round.)\"\ - \n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate. Developed.\",\n \"wildIcons\": 1,\n\ + \ \"customizations\": [\n {\n \"name\": \"Specialist\",\n \"xp\":\ + \ 1,\n \"text\": \"Choose another trait.\"\n },\n {\n \"name\":\ + \ \"Specialist\",\n \"xp\": 2,\n \"text\": \"Choose another trait.\"\n\ + \ },\n {\n \"name\": \"Nemesis\",\n \"xp\": 3,\n \"text\":\ + \ \"If this is a skill test on or against an enemy with a chosen trait and the test\ + \ is successful, you may attach Grizzled to that enemy. Reduce the difficulty of\ + \ tests on or against the attached enemy by 1.\"\n },\n {\n \"name\"\ + : \"Mythos-Hardened\",\n \"xp\": 4,\n \"text\": \"If this skill test is\ + \ on a treachery with a chosen trait and the test is successful, you may add both\ + \ Grizzled and that treachery to the victory display.\"\n },\n {\n \"\ + name\": \"Always Prepared\",\n \"xp\": 5,\n \"text\": \"After you draw\ + \ an encounter card with a chosen trait, return one copy of Grizzled from your discard\ + \ pile to your hand. (Max once per round.)\"\n }\n ],\n \"cycle\": \"The Scarlet\ + \ Keys\"\n}" GUID: 9417a7 Grid: true GridProjection: false @@ -58,9 +58,9 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359.3 + rotX: 359.0 rotY: 270.0 - rotZ: 0.78 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grotesque Statue (2) 6b2e97.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grotesque Statue (2) 6b2e97.yaml index bf6093dbe..452f3ffd0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grotesque Statue (2) 6b2e97.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grotesque Statue (2) 6b2e97.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538719 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60421\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n\ - }" + ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"\ + type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + Investigator Packs\"\n}" GUID: 6b2e97 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.52 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grotesque Statue (4) 07bc04.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grotesque Statue (4) 07bc04.yaml index 8123c695e..9daeb5eaf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grotesque Statue (4) 07bc04.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grotesque Statue (4) 07bc04.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230356 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,10 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01071\",\n \"alternate_ids\": [\n \"01571\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 2,\n \"level\": 4,\n\ - \ \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\"\ - : \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\ - \n}" + \ \"traits\": \"Item. Relic.\",\n \"wildIcons\": 1,\n \"uses\": [\n {\n \ + \ \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n\ + \ }\n ],\n \"cycle\": \"Core\"\n}" GUID: 07bc04 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 32.98 - posY: 3.32 + posY: 3.33 posZ: -47.41 - rotX: 1.14 - rotY: 270.01 - rotZ: 1.69 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grounded (1) 98fc57.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grounded (1) 98fc57.yaml index d94ca4a07..3435e3a4c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grounded (1) 98fc57.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grounded (1) 98fc57.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230332 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03113\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Talent. Composure.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\"\ - : \"The Path to Carcosa\"\n}" + willpowerIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 98fc57 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.04 posY: 3.93 posZ: -16.7 - rotX: 359.87 - rotY: 269.97 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Grounded (3) edb064.yaml b/unpacked/Bag All Player Cards 15bb07/Card Grounded (3) edb064.yaml index 41cd048d0..e1744a4b5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Grounded (3) edb064.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Grounded (3) edb064.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379059 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08069\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Talent. Composure.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"\ - Edge of the Earth\"\n}" + wildIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: edb064 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.19 posY: 2.37 posZ: -16.73 - rotX: 359.88 - rotY: 269.8 - rotZ: 0.26 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guard Dog (2) 9009db.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guard Dog (2) 9009db.yaml index 70aa9a52f..2bf484511 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guard Dog (2) 9009db.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guard Dog (2) 9009db.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379027 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09034\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ally. Creature.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1\n\ - }" + ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ally. Creature.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 9009db Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 17.03 posY: 3.33 posZ: 65.98 - rotX: 357.23 - rotY: 270.05 - rotZ: 358.36 + rotX: 357.0 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guard Dog 001ae8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guard Dog 001ae8.yaml index 7c2210900..52c7e6a17 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guard Dog 001ae8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guard Dog 001ae8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587201 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5872': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01521\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Creature.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n\ - }" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Creature.\",\n \"combatIcons\"\ + : 1,\n \"cycle\": \"Core\"\n}" GUID: 001ae8 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 78.92 posY: 3.31 posZ: 7.76 - rotX: 358.79 + rotX: 359.0 rotY: 270.0 - rotZ: 0.25 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guard Dog 08bdf1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guard Dog 08bdf1.yaml index cdaf553f8..d84e965fd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guard Dog 08bdf1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guard Dog 08bdf1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226326 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01021\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Creature.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n\ - }" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Creature.\",\n \"combatIcons\"\ + : 1,\n \"cycle\": \"Core\"\n}" GUID: 08bdf1 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 83.38 posY: 1.99 posZ: -10.39 - rotX: 359.99 - rotY: 270.01 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guardian Angel 3c0249.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guardian Angel 3c0249.yaml index c64b80780..74560e469 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guardian Angel 3c0249.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guardian Angel 3c0249.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 580500 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5805': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Ritual. Blessed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\"\ - : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Ritual. Blessed.\",\n \"willpowerIcons\": 1,\n\ + \ \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\ + \n}" GUID: 3c0249 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.69 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guardian of the Crystallizer aec357.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guardian of the Crystallizer aec357.yaml index 8fc4fceb3..3eeb2d6aa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guardian of the Crystallizer aec357.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guardian of the Crystallizer aec357.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 440723 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4407': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06025\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Monster.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"traits\": \"Monster.\",\n \"weakness\": true,\n \"cycle\": \"The Dream-Eaters\"\ + \n}" GUID: aec357 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.01 posY: 3.85 posZ: -16.7 - rotX: 359.9 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guidance (1) 425841.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guidance (1) 425841.yaml index b084c0b44..e3893e629 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guidance (1) 425841.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guidance (1) 425841.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379046 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09053\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1\n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Insight.\",\n \"willpowerIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: '425841' Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 16.67 posY: 3.4 posZ: 65.93 - rotX: 359.28 - rotY: 270.01 - rotZ: 359.22 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guidance bbfe9b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guidance bbfe9b.yaml index 20472d787..11a8c93cd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guidance bbfe9b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guidance bbfe9b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368406 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03265\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to\ - \ Carcosa\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: bbfe9b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.96 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guided by the Unseen (3) 477e79.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guided by the Unseen (3) 477e79.yaml index f1aadc920..812a505d4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guided by the Unseen (3) 477e79.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guided by the Unseen (3) 477e79.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 590706 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5907': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07223\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\ - \n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Ritual.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \ + \ \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ + : \"The Innsmouth Conspiracy\"\n}" GUID: 477e79 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.17 posY: 3.14 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guiding Spirit (1) 9375f4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guiding Spirit (1) 9375f4.yaml index 73c13cacc..a8e5dd205 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guiding Spirit (1) 9375f4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guiding Spirit (1) 9375f4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 588405 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5884': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05236\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Ally. Geist.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Ally. Geist.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 9375f4 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.09 posY: 3.68 posZ: -16.71 - rotX: 359.94 - rotY: 269.88 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Gumption (1) 4cb0c9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Gumption (1) 4cb0c9.yaml index 39c437858..b6f110309 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Gumption (1) 4cb0c9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Gumption (1) 4cb0c9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379136 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09112\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 1,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}" + ,\n \"level\": 1,\n \"traits\": \"Innate.\",\n \"cycle\": \"The Scarlet Keys\"\ + \n}" GUID: 4cb0c9 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 16.72 posY: 3.37 posZ: 65.64 - rotX: 359.56 + rotX: 0.0 rotY: 270.0 - rotZ: 0.51 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guts (2) 219c78.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guts (2) 219c78.yaml index 218edcbd3..faafb063f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guts (2) 219c78.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guts (2) 219c78.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538722 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60424\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\"\ - ,\n \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 3,\n \"cycle\": \"Investigator Packs\"\ - \n}" + ,\n \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"willpowerIcons\"\ + : 3,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 219c78 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.17 posY: 3.12 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Guts 8f7289.yaml b/unpacked/Bag All Player Cards 15bb07/Card Guts 8f7289.yaml index 8a13ee6b1..3587dfb60 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Guts 8f7289.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Guts 8f7289.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368500 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01089\",\n \"alternate_ids\": [\n \"01589\"\n ],\n \ \ \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"level\": 0,\n \"traits\"\ - : \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\"\ - : 2,\n \"cycle\": \"Core\"\n}" + : \"Innate.\",\n \"willpowerIcons\": 2,\n \"cycle\": \"Core\"\n}" GUID: 8f7289 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 269.99 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hallow (3) (Taboo) 3a85c4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hallow (3) (Taboo) 3a85c4.yaml index 7b8bab100..49639a5ef 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hallow (3) (Taboo) 3a85c4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hallow (3) (Taboo) 3a85c4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 585607 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5856': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07301-t\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell. Blessed.\",\n \"willpowerIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 3a85c4 Grid: true GridProjection: false @@ -43,11 +42,11 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.15 + posX: 9.14 posY: 3.69 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hallow (3) e40802.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hallow (3) e40802.yaml index da8d5e628..092655827 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hallow (3) e40802.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hallow (3) e40802.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 589100 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5891': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07301\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell. Blessed.\",\n \"willpowerIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: e40802 Grid: true GridProjection: false @@ -46,8 +45,8 @@ Transform: posX: 8.99 posY: 3.73 posZ: -16.69 - rotX: 359.98 - rotY: 270.01 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hallowed Chalice 3fa5b8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hallowed Chalice 3fa5b8.yaml index 29be7d9a2..ac40a145a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hallowed Chalice 3fa5b8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hallowed Chalice 3fa5b8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379108 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09084\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Scarlet\ - \ Keys\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 3fa5b8 Grid: true GridProjection: false @@ -45,11 +44,11 @@ Tags: Tooltip: true Transform: posX: 16.67 - posY: 3.37 + posY: 3.38 posZ: 65.93 - rotX: 359.24 - rotY: 270.01 - rotZ: 359.18 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hallowed Mirror (3) 78858f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hallowed Mirror (3) 78858f.yaml index 419667b06..6c22f1295 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hallowed Mirror (3) 78858f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hallowed Mirror (3) 78858f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449522 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4495': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"54002\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Relic. Occult. Blessed.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \ - \ \"count\": 3,\n \"id\": \"05314\"\n }\n ],\n \"willpowerIcons\": 2,\n\ - \ \"cycle\": \"Return to the Circle Undone\"\n}" + ,\n \"bonded\": [\n {\n \"count\": 3,\n \"id\": \"05314\"\n }\n\ + \ ],\n \"willpowerIcons\": 2,\n \"cycle\": \"Return to the Circle Undone\"\n}" GUID: 78858f Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.05 posY: 3.68 posZ: -16.71 - rotX: 359.91 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hallowed Mirror 312d38.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hallowed Mirror 312d38.yaml index 50e45be2e..474958944 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hallowed Mirror 312d38.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hallowed Mirror 312d38.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378620 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3786': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05313\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Relic. Occult. Blessed.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \ - \ \"count\": 3,\n \"id\": \"05314\"\n }\n ],\n \"willpowerIcons\": 1,\n\ - \ \"cycle\": \"The Circle Undone\"\n}" + ,\n \"bonded\": [\n {\n \"count\": 3,\n \"id\": \"05314\"\n }\n\ + \ ],\n \"willpowerIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 312d38 Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.72 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hand of Fate 1ad931.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hand of Fate 1ad931.yaml index 81fe6fbb7..8c7a2213f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hand of Fate 1ad931.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hand of Fate 1ad931.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 588314 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5883': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07020\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell. Blessed.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 1ad931 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 3.9 posZ: -16.72 - rotX: 0.18 - rotY: 269.8 - rotZ: 359.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Handcuffs (2) 07c480.yaml b/unpacked/Bag All Player Cards 15bb07/Card Handcuffs (2) 07c480.yaml index 119efa0bc..2aab7a9a3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Handcuffs (2) 07c480.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Handcuffs (2) 07c480.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379028 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09035\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Item. Police.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1\n\ - }" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Item. Police.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 07c480 Grid: true GridProjection: false @@ -44,12 +43,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 17.03 + posX: 17.02 posY: 3.38 posZ: 65.98 - rotX: 359.84 + rotX: 0.0 rotY: 270.0 - rotZ: 359.91 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Handcuffs 5f33be.yaml b/unpacked/Bag All Player Cards 15bb07/Card Handcuffs 5f33be.yaml index ce021cd2c..45fe03038 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Handcuffs 5f33be.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Handcuffs 5f33be.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 313301 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3133': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04265\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Police.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Police.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 5f33be Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.18 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks (2) 15643b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks (2) 15643b.yaml index fe02a0091..b03fed834 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks (2) 15643b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks (2) 15643b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315242 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"50005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n\ - \ \"cycle\": \"Return to the Night of the Zealot\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"combatIcons\"\ + : 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Return to the Night of the Zealot\"\ + \n}" GUID: 15643b Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 - posY: 4.15 + posY: 4.16 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.97 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks (4) 9565f0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks (4) 9565f0.yaml index aeffb1756..9b647b611 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks (4) 9565f0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks (4) 9565f0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449605 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4496': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07266\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"agilityIcons\": 2,\n\ - \ \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Resource\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\ - \n}" + ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Talent.\",\n \"combatIcons\"\ + : 2,\n \"agilityIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \"\ + replenish\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n\ + \ }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 9565f0 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 3.87 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks 132069.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks 132069.yaml index e6f9cc3a2..a3ad83862 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks 132069.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks 132069.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587207 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5872': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01549\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"Core\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}" GUID: '132069' Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 78.81 posY: 3.32 posZ: 7.67 - rotX: 359.23 - rotY: 269.99 - rotZ: 0.74 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks 68744b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks 68744b.yaml index 193502008..f8a155e8e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks 68744b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hard Knocks 68744b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368623 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3686': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01049\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"Core\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}" GUID: 68744b Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.08 posY: 3.68 posZ: -16.71 - rotX: 359.92 - rotY: 269.91 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Harmony Restored (2) 7885cf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Harmony Restored (2) 7885cf.yaml index 3132959bb..991f8a4c9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Harmony Restored (2) 7885cf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Harmony Restored (2) 7885cf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 580010 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5800': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07230\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Fortune. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Innsmouth\ - \ Conspiracy\"\n}" + ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Fortune. Blessed.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 7885cf Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 3.81 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Harvey Walters 1fa944.yaml b/unpacked/Bag All Player Cards 15bb07/Card Harvey Walters 1fa944.yaml index fd98a9119..79f1fdbf1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Harvey Walters 1fa944.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Harvey Walters 1fa944.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 234901 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2349': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 - posY: 1.61 + posY: 1.6 posZ: -73.09 - rotX: 0.03 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Harvey Walters 2d6db0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Harvey Walters 2d6db0.yaml index 309df19b8..3ccd03a6a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Harvey Walters 2d6db0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Harvey Walters 2d6db0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 274217 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2742': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"60201-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"60201-m\",\n \"type\": \"Minicard\"\n}" GUID: 2d6db0 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 2.2 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Haste (2) 1bd139.yaml b/unpacked/Bag All Player Cards 15bb07/Card Haste (2) 1bd139.yaml index 551d30782..7f9a1011b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Haste (2) 1bd139.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Haste (2) 1bd139.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 447632 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4476': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06239\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 1bd139 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 5.13 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hatchet Man 857238.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hatchet Man 857238.yaml index 351bbb9e3..d63fb34f0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hatchet Man 857238.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hatchet Man 857238.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 261704 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2617': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04155\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n\ - }" + ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"agilityIcons\": 1,\n \"\ + cycle\": \"The Forgotten Age\"\n}" GUID: '857238' Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.12 posY: 4.07 posZ: -16.72 - rotX: 0.05 - rotY: 269.83 - rotZ: 359.94 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Haunted 249d83.yaml b/unpacked/Bag All Player Cards 15bb07/Card Haunted 249d83.yaml index f59148087..758dae76d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Haunted 249d83.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Haunted 249d83.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527402 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5274': BackIsHidden: true @@ -21,8 +21,7 @@ Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"01098\",\n \"alternate_ids\": [\n \"01598\"\n ],\n \ \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n\ - \ \"cycle\": \"Core\"\n}" + ,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"Core\"\n}" GUID: 249d83 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 78.8 posY: 3.32 posZ: 26.95 - rotX: 359.52 + rotX: 0.0 rotY: 270.0 - rotZ: 359.47 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hawk-Eye Folding Camera 5ada0a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hawk-Eye Folding Camera 5ada0a.yaml index eed10737e..8dd4ca4bc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hawk-Eye Folding Camera 5ada0a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hawk-Eye Folding Camera 5ada0a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 277813 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2778': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05154\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 5ada0a Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.83 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Headdress of Y'ha-nthlei e44c96.yaml b/unpacked/Bag All Player Cards 15bb07/Card Headdress of Y'ha-nthlei e44c96.yaml index 5661014d2..b79b9f3ed 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Headdress of Y'ha-nthlei e44c96.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Headdress of Y'ha-nthlei e44c96.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 451114 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4511': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07181\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\":\ - \ \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\": 1,\n \ + \ \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: e44c96 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.51 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Healing Words (3) f2726b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Healing Words (3) f2726b.yaml index 6b594d568..de475377d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Healing Words (3) f2726b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Healing Words (3) f2726b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379058 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08068\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n\ + }" GUID: f2726b Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.19 - posY: 2.36 + posY: 2.35 posZ: -16.73 - rotX: 359.91 - rotY: 269.8 - rotZ: 0.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Healing Words bba97a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Healing Words bba97a.yaml index 651fc3dbd..745e61d83 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Healing Words bba97a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Healing Words bba97a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 380127 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3801': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06163\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 2,\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 Dream-Eaters\"\n}" GUID: bba97a Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.15 posY: 3.67 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Heavy Furs 275450.yaml b/unpacked/Bag All Player Cards 15bb07/Card Heavy Furs 275450.yaml index e1a7ead46..1bfa4a8a6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Heavy Furs 275450.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Heavy Furs 275450.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378913 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08126\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Armor.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of\ - \ the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Armor.\",\n \"combatIcons\"\ + : 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: '275450' Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: - posX: 9.17 + posX: 9.18 posY: 2.94 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Heed the Dream (2) 3b7419.yaml b/unpacked/Bag All Player Cards 15bb07/Card Heed the Dream (2) 3b7419.yaml index 5726ee9c2..60b3d9431 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Heed the Dream (2) 3b7419.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Heed the Dream (2) 3b7419.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379139 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09115\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 2,\n \"traits\": \"Augury. Dilemma.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"level\": 2,\n \"traits\": \"Augury. Dilemma.\",\n \"cycle\": \"The Scarlet\ + \ Keys\"\n}" GUID: 3b7419 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359.37 + rotX: 359.0 rotY: 270.0 - rotZ: 0.71 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Heirloom of Hyperborea bf151d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Heirloom of Hyperborea bf151d.yaml index e6df7a2a4..1aef1a27b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Heirloom of Hyperborea bf151d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Heirloom of Hyperborea bf151d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 585400 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5854': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Artifact from Another Life (Advanced) DragSelectable: true GMNotes: "{\n \"id\": \"90018\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\"\ - : 2,\n \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\": 1,\n \ + \ \"combatIcons\": 1,\n \"wildIcons\": 2,\n \"cycle\": \"Standalone\"\n}" GUID: bf151d Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.01 posY: 3.69 posZ: -16.7 - rotX: 0.1 - rotY: 270.01 - rotZ: 359.97 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Heirloom of Hyperborea e929f9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Heirloom of Hyperborea e929f9.yaml index b734d1649..1747c72f7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Heirloom of Hyperborea e929f9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Heirloom of Hyperborea e929f9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 290422 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2904': BackIsHidden: true @@ -21,8 +21,8 @@ Description: Artifact from Another Life DragSelectable: true GMNotes: "{\n \"id\": \"01012\",\n \"alternate_ids\": [\n \"01512\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 3,\n \"traits\"\ - : \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\"\ - : 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}" + : \"Item. Relic.\",\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\"\ + : 1,\n \"cycle\": \"Core\"\n}" GUID: e929f9 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 270.01 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Helping Hand 7d93b4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Helping Hand 7d93b4.yaml index 2c8a3c180..5189501d2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Helping Hand 7d93b4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Helping Hand 7d93b4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379024 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09031\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"cycle\": \"The Scarlet Keys\"\ + \n}" GUID: 7d93b4 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 17.03 posY: 3.32 posZ: 65.98 - rotX: 356.28 - rotY: 270.09 - rotZ: 357.79 + rotX: 356.0 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hemispheric Map (3) d2663c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hemispheric Map (3) d2663c.yaml index 5d2f42c05..ce7f45112 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hemispheric Map (3) d2663c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hemispheric Map (3) d2663c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 261101 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2611': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04275\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: d2663c Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 4.17 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Henry Wan 9df9df.yaml b/unpacked/Bag All Player Cards 15bb07/Card Henry Wan 9df9df.yaml index af256ae64..a2af662bf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Henry Wan 9df9df.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Henry Wan 9df9df.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 277709 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2777': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Aspiring Actor DragSelectable: true GMNotes: "{\n \"id\": \"05155\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Criminal.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Criminal.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 9df9df Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 - posY: 3.82 + posY: 3.81 posZ: -16.69 - rotX: 359.69 - rotY: 270.01 - rotZ: 0.07 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Heroic Rescue (2) 93381d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Heroic Rescue (2) 93381d.yaml index c786992cb..58da3d60c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Heroic Rescue (2) 93381d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Heroic Rescue (2) 93381d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 447934 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4479': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06234\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spirit. Tactic.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ + \n}" GUID: 93381d Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 9.04 posY: 3.95 posZ: -16.7 - rotX: 359.88 - rotY: 269.97 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Heroic Rescue bb0f6a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Heroic Rescue bb0f6a.yaml index b081dd747..c34416ed0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Heroic Rescue bb0f6a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Heroic Rescue bb0f6a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226311 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03106\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: bb0f6a Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.76 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hidden Pocket 9bef61.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hidden Pocket 9bef61.yaml index 9b972d7e1..4a5dd2aae 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hidden Pocket 9bef61.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hidden Pocket 9bef61.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379058 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09065\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Upgrade. Illicit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Upgrade. Illicit.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 9bef61 Grid: true GridProjection: false @@ -47,8 +46,8 @@ Transform: posY: 3.36 posZ: 65.93 rotX: 358.0 - rotY: 270.04 - rotZ: 357.83 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hiding Spot dd130e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hiding Spot dd130e.yaml index d1cef09e0..5a43ac3e2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hiding Spot dd130e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hiding Spot dd130e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368808 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03038\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic. Trick.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic. Trick.\",\n \"agilityIcons\"\ + : 2,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: dd130e Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 3.72 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card High Roller (2) ce1b89.yaml b/unpacked/Bag All Player Cards 15bb07/Card High Roller (2) ce1b89.yaml index 61db82ec7..b72acdfbe 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card High Roller (2) ce1b89.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card High Roller (2) ce1b89.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315247 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04156\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: ce1b89 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.05 posY: 3.86 posZ: -16.7 - rotX: 359.78 - rotY: 269.95 - rotZ: 0.11 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Higher Education (3) (Taboo) 833501.yaml b/unpacked/Bag All Player Cards 15bb07/Card Higher Education (3) (Taboo) 833501.yaml index 4d8ae66b8..7dde8a1a0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Higher Education (3) (Taboo) 833501.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Higher Education (3) (Taboo) 833501.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450604 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02187-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"The Dunwich Legacy\"\n}" GUID: '833501' Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.15 posY: 4.11 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Higher Education (3) d48b25.yaml b/unpacked/Bag All Player Cards 15bb07/Card Higher Education (3) d48b25.yaml index 1de75223a..18d65c5c2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Higher Education (3) d48b25.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Higher Education (3) d48b25.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430649 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02187\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"The Dunwich Legacy\"\n}" GUID: d48b25 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 3.71 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Higher Education 8595fb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Higher Education 8595fb.yaml index 175211213..f388e3959 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Higher Education 8595fb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Higher Education 8595fb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538809 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60211\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 8595fb Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.17 posY: 3.14 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hiking Boots (1) b03e83.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hiking Boots (1) b03e83.yaml index 7681d5862..be5013dfc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hiking Boots (1) b03e83.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hiking Boots (1) b03e83.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379025 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08035\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Clothing. Footwear.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"\ - cycle\": \"Edge of the Earth\"\n}" + ,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: b03e83 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.21 posZ: -16.74 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hired Muscle (1) cdd6aa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hired Muscle (1) cdd6aa.yaml index 9978ed9df..512bed256 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hired Muscle (1) cdd6aa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hired Muscle (1) cdd6aa.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315234 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02027\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Ally. Criminal.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Ally. Criminal.\",\n \"combatIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: cdd6aa Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.02 posY: 4.0 posZ: -16.7 - rotX: 359.83 + rotX: 0.0 rotY: 270.0 - rotZ: 0.04 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hit and Run 408bce.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hit and Run 408bce.yaml index e95e3846d..95acd9ca6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hit and Run 408bce.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hit and Run 408bce.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379059 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09066\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic. Trick.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic. Trick.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 408bce Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 357.82 - rotY: 270.05 - rotZ: 357.64 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hit me! 431c15.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hit me! 431c15.yaml index 4e1d99348..ecaaff63a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hit me! 431c15.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hit me! 431c15.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378950 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08112\",\n \"type\": \"Event\",\n \"class\": \"Rogue|Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Fortune. Gambit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of\ - \ the Earth\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Fortune. Gambit.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 431c15 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.2 posY: 3.06 posZ: -16.73 - rotX: 0.06 - rotY: 269.8 - rotZ: 359.26 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Holy Rosary (2) 2d2246.yaml b/unpacked/Bag All Player Cards 15bb07/Card Holy Rosary (2) 2d2246.yaml index e69e1a96b..762b28940 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Holy Rosary (2) 2d2246.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Holy Rosary (2) 2d2246.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 579300 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5793': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07220\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Charm. Blessed.\",\n \ - \ \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"\ - agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + \ \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\ + \n}" GUID: 2d2246 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.88 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Holy Rosary fa1d67.yaml b/unpacked/Bag All Player Cards 15bb07/Card Holy Rosary fa1d67.yaml index 00ac95aa7..2673385e2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Holy Rosary fa1d67.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Holy Rosary fa1d67.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230323 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01059\",\n \"alternate_ids\": [\n \"01559\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 2,\n \"level\": 0,\n\ - \ \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Item. Charm.\",\n \"willpowerIcons\": 1,\n \"cycle\": \"Core\"\ + \n}" GUID: fa1d67 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 32.98 - posY: 3.32 + posY: 3.33 posZ: -47.41 - rotX: 1.14 - rotY: 270.01 - rotZ: 1.69 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Holy Spear (5) 28289a.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Holy Spear (5) 28289a.ttslua index d34e54625..9347ec579 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Holy Spear (5) 28289a.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Holy Spear (5) 28289a.ttslua @@ -90,4 +90,4 @@ function getChaosBag() end if chaosbag == nil then printToAll("No chaos bag found") end return chaosbag -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Holy Spear (5) 28289a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Holy Spear (5) 28289a.yaml index e4cff462a..84b8f23be 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Holy Spear (5) 28289a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Holy Spear (5) 28289a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 590001 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5900': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07302\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Item. Weapon. Melee. Blessed.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \ - \ \"combatIcons\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"willpowerIcons\": 1,\n \"combatIcons\": 2,\n \"cycle\": \"The Innsmouth\ + \ Conspiracy\"\n}" GUID: 28289a Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.16 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Honed Instinct 1cde62.yaml b/unpacked/Bag All Player Cards 15bb07/Card Honed Instinct 1cde62.yaml index a92d7afe8..154bfb068 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Honed Instinct 1cde62.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Honed Instinct 1cde62.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379054 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,28 +20,27 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09061\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"agilityIcons\": 1,\n \"customizations\": [\n {\n\ - \ \"name\": \"Reflex Response\",\n \"xp\": 1,\n \"text\": \"Add the\ - \ following play condition: \uFFFD\u20AC\uFFFD\\u003d You take damage or horror.\uFFFD\ - \u20AC?\"\n },\n {\n \"name\": \"Situational Awareness\",\n \"xp\"\ - : 1,\n \"text\": \"Add the following play condition: \uFFFD\u20AC\uFFFD\\u003d\ - \ A location enters play or is revealed.\uFFFD\u20AC?\"\n },\n {\n \"\ - name\": \"Killer Instinct\",\n \"xp\": 1,\n \"text\": \"Add the following\ - \ play condition: \uFFFD\u20AC\uFFFD\\u003d An enemy engages you.\uFFFD\u20AC?\"\ - \n },\n {\n \"name\": \"Gut Reaction\",\n \"xp\": 1,\n \"text\"\ - : \"Add the following play condition: \uFFFD\u20AC\uFFFD\\u003d A treachery enters\ - \ your threat area .\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Muscle Memory\"\ - ,\n \"xp\": 1,\n \"text\": \"Add the following play condition: \uFFFD\u20AC\ - \uFFFD\\u003d You play an asset.\uFFFD\u20AC?\"\n },\n {\n \"name\":\ - \ \"Sharpened Talent\",\n \"xp\": 2,\n \"text\": \"During the action granted\ - \ by Honed Instinct, you get +2 to each of your skills.\"\n },\n {\n \ - \ \"name\": \"Impulse Control\",\n \"xp\": 3,\n \"text\": \"You may include\ - \ up to three copies of Honed Instinct in your deck. Honed Instinct gets \uFFFD\u20AC\ - \u201C1 cost.\",\n \"replaces\": {\n \"cost\": 0\n }\n },\n\ - \ {\n \"name\": \"Force of Habit\",\n \"xp\": 5,\n \"text\": \"\ - When you play Honed Instinct, you may take 2 actions instead of 1 (one at a time).\ - \ Then, remove it from the game.\"\n }\n ]\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Gambit.\",\n \"agilityIcons\"\ + : 1,\n \"customizations\": [\n {\n \"name\": \"Reflex Response\",\n \ + \ \"xp\": 1,\n \"text\": \"Add the following play condition: \u201C\\u003d\ + \ You take damage or horror.\u201D\"\n },\n {\n \"name\": \"Situational\ + \ Awareness\",\n \"xp\": 1,\n \"text\": \"Add the following play condition:\ + \ \u201C\\u003d A location enters play or is revealed.\u201D\"\n },\n {\n\ + \ \"name\": \"Killer Instinct\",\n \"xp\": 1,\n \"text\": \"Add the\ + \ following play condition: \u201C\\u003d An enemy engages you.\u201D\"\n },\n\ + \ {\n \"name\": \"Gut Reaction\",\n \"xp\": 1,\n \"text\": \"\ + Add the following play condition: \u201C\\u003d A treachery enters your threat area\ + \ .\u201D\"\n },\n {\n \"name\": \"Muscle Memory\",\n \"xp\": 1,\n\ + \ \"text\": \"Add the following play condition: \u201C\\u003d You play an asset.\u201D\ + \"\n },\n {\n \"name\": \"Sharpened Talent\",\n \"xp\": 2,\n \ + \ \"text\": \"During the action granted by Honed Instinct, you get +2 to each\ + \ of your skills.\"\n },\n {\n \"name\": \"Impulse Control\",\n \ + \ \"xp\": 3,\n \"text\": \"You may include up to three copies of Honed Instinct\ + \ in your deck. Honed Instinct gets \u20131 cost.\",\n \"replaces\": {\n \ + \ \"cost\": 0\n }\n },\n {\n \"name\": \"Force of Habit\",\n\ + \ \"xp\": 5,\n \"text\": \"When you play Honed Instinct, you may take\ + \ 2 actions instead of 1 (one at a time). Then, remove it from the game.\"\n \ + \ }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 1cde62 Grid: true GridProjection: false @@ -65,9 +64,9 @@ Transform: posX: 16.67 posY: 3.38 posZ: 65.93 - rotX: 358.63 - rotY: 270.02 - rotZ: 358.51 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hoods 785f68.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hoods 785f68.yaml index 6e2bc39da..2debd9dc7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hoods 785f68.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hoods 785f68.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378863 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3788': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05017\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Humanoid. Cultist.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"traits\": \"Humanoid. Cultist.\",\n \"weakness\": true,\n \"cycle\": \"\ + The Circle Undone\"\n}" GUID: 785f68 Grid: true GridProjection: false @@ -45,8 +45,8 @@ Transform: posX: 9.14 posY: 3.78 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hope 45c582.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hope 45c582.yaml index c7d166071..4c3ba49c3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hope 45c582.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hope 45c582.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 440624 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4406': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06031\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 45c582 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.9 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hospital Debts 47d6c9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hospital Debts 47d6c9.yaml index d2273b5ca..0caccbbf8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hospital Debts 47d6c9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hospital Debts 47d6c9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 431425 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4314': BackIsHidden: true @@ -21,7 +21,7 @@ Description: Signature DragSelectable: true GMNotes: "{\n \"id\": \"01011\",\n \"alternate_ids\": [\n \"01511\"\n ],\n \ \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n\ - \ \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"Core\"\n}" + \ \"weakness\": true,\n \"cycle\": \"Core\"\n}" GUID: 47d6c9 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 269.99 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hot Streak (2) f2508d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hot Streak (2) f2508d.yaml index 1248fb6ba..9afe65e52 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hot Streak (2) f2508d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hot Streak (2) f2508d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315250 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"50006\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 5,\n \"level\": 2,\n \"traits\": \"Fortune.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Return\ - \ to the Night of the Zealot\"\n}" + ,\n \"cost\": 5,\n \"level\": 2,\n \"traits\": \"Fortune.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"Return to the Night of the Zealot\"\n}" GUID: f2508d Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 3.84 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hot Streak (4) 4eb231.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hot Streak (4) 4eb231.yaml index c653311ee..8a9dca0ff 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hot Streak (4) 4eb231.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hot Streak (4) 4eb231.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315258 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01057\",\n \"alternate_ids\": [\n \"01557\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 4,\n\ - \ \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Fortune.\",\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}" GUID: 4eb231 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0.08 + rotX: 0.0 rotY: 270.0 - rotZ: 0.01 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hunter's Armor a85f1d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hunter's Armor a85f1d.yaml index 0d960e58d..eb142eaf7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hunter's Armor a85f1d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hunter's Armor a85f1d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379014 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,27 +20,25 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09021\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Armor.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"customizations\"\ - : [\n {\n \"name\": \"Enchanted\",\n \"xp\": 1,\n \"text\": \"\ - Hunter\uFFFD\u20AC\uFFFDs Armor gains the Relic trait and takes up an arcane slot\ - \ instead of a body slot.\",\n \"replaces\": {\n \"traits\": \"Item.\ - \ Armor. Relic.\"\n }\n },\n {\n \"name\": \"Protective Runes\"\ - ,\n \"xp\": 2,\n \"text\": \"Hunter\uFFFD\u20AC\uFFFDs Armor may be assigned\ + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Armor.\",\n \"willpowerIcons\"\ + : 1,\n \"customizations\": [\n {\n \"name\": \"Enchanted\",\n \"xp\"\ + : 1,\n \"text\": \"Hunter\u2019s Armor gains the Relic trait and takes up an\ + \ arcane slot instead of a body slot.\",\n \"replaces\": {\n \"traits\"\ + : \"Item. Armor. Relic.\"\n }\n },\n {\n \"name\": \"Protective\ + \ Runes\",\n \"xp\": 2,\n \"text\": \"Hunter\u2019s Armor may be assigned\ \ damage and/or horror dealt to other investigators at your location.\"\n },\n\ - \ {\n \"name\": \"Durable\",\n \"xp\": 2,\n \"text\": \"Hunter\uFFFD\ - \u20AC\uFFFDs Armor gets +2 health.\"\n },\n {\n \"name\": \"Hallowed\"\ - ,\n \"xp\": 2,\n \"text\": \"Hunter\uFFFD\u20AC\uFFFDs Armor gets +2 sanity.\"\ - \n },\n {\n \"name\": \"Lightweight\",\n \"xp\": 2,\n \"text\"\ - : \"Hunter\uFFFD\u20AC\uFFFDs Armor gets \uFFFD\u20AC\u201C1 cost and playing it\ - \ does not provoke attacks of opportunity.\",\n \"replaces\": {\n \"\ - cost\": 3\n }\n },\n {\n \"name\": \"Hexdrinker\",\n \"xp\"\ - : 3,\n \"text\": \"After 1 or more damage or horror is assigned to Hunter\uFFFD\ - \u20AC\uFFFDs Armor from a treachery effect, you may exhaust it to draw 1 card.\"\ - \n },\n {\n \"name\": \"Armor of Thorns\",\n \"xp\": 3,\n \"\ - text\": \"After 1 or more damage or horror is assigned to Hunter\uFFFD\u20AC\uFFFD\ - s Armor from an enemy attack, you may exhaust it to deal 1 damage to that enemy.\"\ - \n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" + \ {\n \"name\": \"Durable\",\n \"xp\": 2,\n \"text\": \"Hunter\u2019\ + s Armor gets +2 health.\"\n },\n {\n \"name\": \"Hallowed\",\n \"\ + xp\": 2,\n \"text\": \"Hunter\u2019s Armor gets +2 sanity.\"\n },\n {\n\ + \ \"name\": \"Lightweight\",\n \"xp\": 2,\n \"text\": \"Hunter\u2019\ + s Armor gets \u20131 cost and playing it does not provoke attacks of opportunity.\"\ + ,\n \"replaces\": {\n \"cost\": 3\n }\n },\n {\n \"\ + name\": \"Hexdrinker\",\n \"xp\": 3,\n \"text\": \"After 1 or more damage\ + \ or horror is assigned to Hunter\u2019s Armor from a treachery effect, you may\ + \ exhaust it to draw 1 card.\"\n },\n {\n \"name\": \"Armor of Thorns\"\ + ,\n \"xp\": 3,\n \"text\": \"After 1 or more damage or horror is assigned\ + \ to Hunter\u2019s Armor from an enemy attack, you may exhaust it to deal 1 damage\ + \ to that enemy.\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: a85f1d Grid: true GridProjection: false @@ -64,10 +62,10 @@ Tooltip: true Transform: posX: 10.38 posY: 2.2 - posZ: 45.5 - rotX: 0.02 + posZ: 45.51 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness (2) 23c3e5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness (2) 23c3e5.yaml index 697df0af9..c86165343 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness (2) 23c3e5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness (2) 23c3e5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430644 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"50003\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"agilityIcons\":\ - \ 2,\n \"cycle\": \"Return to the Night of the Zealot\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"intellectIcons\"\ + : 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Return to the Night of the Zealot\"\ + \n}" GUID: 23c3e5 Grid: true GridProjection: false @@ -40,15 +40,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 posY: 3.8 posZ: -16.69 - rotX: -0.01 - rotY: 270.01 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness (4) 78adda.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness (4) 78adda.yaml index c8f72cc2f..50a617196 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness (4) 78adda.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness (4) 78adda.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449603 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4496': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07264\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"agilityIcons\":\ - \ 2,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Resource\",\n\ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\ - \n}" + ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Talent.\",\n \"intellectIcons\"\ + : 2,\n \"agilityIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \"\ + replenish\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n\ + \ }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 78adda Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.0 posY: 3.93 posZ: -16.7 - rotX: 0.43 - rotY: 270.01 - rotZ: 359.89 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness e5dd39.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness e5dd39.yaml index ddead443e..2cb1252cb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness e5dd39.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hyperawareness e5dd39.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368424 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01034\",\n \"alternate_ids\": [\n \"01534\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 0,\n\ - \ \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false,\n \ - \ \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Talent.\",\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n\ + \ \"cycle\": \"Core\"\n}" GUID: e5dd39 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 18.99 - posY: 3.37 + posY: 3.38 posZ: -56.89 - rotX: 359.49 - rotY: 270.02 - rotZ: 0.17 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hyperphysical Shotcaster 2a6e0d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hyperphysical Shotcaster 2a6e0d.yaml index 7f962a99f..9b7280026 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hyperphysical Shotcaster 2a6e0d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hyperphysical Shotcaster 2a6e0d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379143 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -21,34 +21,32 @@ Description: Theoretical Device DragSelectable: true GMNotes: "{\n \"id\": \"09119\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Relic. Weapon. Firearm.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 4,\n \"type\": \"Aether\",\n \"token\": \"\ - resource\"\n }\n ],\n \"customizations\": [\n {\n \"name\": \"Railshooter\"\ - ,\n \"xp\": 2,\n \"text\": \"Hyperphysical Shotcaster has this form: \uFFFD\ - \u20AC\uFFFDManifest \uFFFD\u20AC\u201C Fight. Fight with any skill. This attack\ - \ deals +1 damage.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Telescanner\"\ - ,\n \"xp\": 2,\n \"text\": \"Hyperphysical Shotcaster has this form: \uFFFD\ - \u20AC\uFFFDManifest \uFFFD\u20AC\u201C Investigate. Investigate with any skill.\ + ,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\"\ + : \"Aether\",\n \"token\": \"resource\"\n }\n ],\n \"customizations\"\ + : [\n {\n \"name\": \"Railshooter\",\n \"xp\": 2,\n \"text\":\ + \ \"Hyperphysical Shotcaster has this form: \u201CManifest \u2013 Fight. Fight with\ + \ any skill. This attack deals +1 damage.\u201D\"\n },\n {\n \"name\"\ + : \"Telescanner\",\n \"xp\": 2,\n \"text\": \"Hyperphysical Shotcaster\ + \ has this form: \u201CManifest \u2013 Investigate. Investigate with any skill.\ \ If you succeed, discover a clue at any revealed location instead of your location.\"\ \n },\n {\n \"name\": \"Translocator\",\n \"xp\": 2,\n \"text\"\ - : \"Hyperphysical Shotcaster has this form: \uFFFD\u20AC\uFFFDManifest \uFFFD\u20AC\ - \u201C Evade. Attempt to evade with any skill. Before or after this attempt, you\ - \ may move an investigator or a non-Elite enemy at your location to a connecting\ - \ location, or vice versa.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Realitycollapser\"\ - ,\n \"xp\": 2,\n \"text\": \"Hyperphysical Shotcaster has this form: \uFFFD\ - \u20AC\uFFFDManifest \uFFFD\u20AC\u201C Test any skill (3). If you succeed, discard\ - \ from play a non\uFFFD\u20AC\u2018weakness treachery that is not attached to an\ - \ Elite enemy.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Matterweaver\",\n\ - \ \"xp\": 2,\n \"text\": \"Hyperphysical Shotcaster has this form: \uFFFD\ - \u20AC\uFFFDManifest \uFFFD\u20AC\u201C Choose an asset in your hand and test any\ - \ skill (X), where X is that asset\uFFFD\u20AC\uFFFDs cost. If you succeed, play\ - \ that asset at no cost.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Aetheric\ - \ Link\",\n \"xp\": 4,\n \"text\": \"Hyperphysical Shotcaster enters play\ - \ with 2 additional aether.\",\n \"replaces\": {\n \"uses\": [\n \ - \ {\n \"count\": 6,\n \"type\": \"Aether\",\n \ - \ \"token\": \"resource\"\n }\n ]\n }\n },\n {\n\ - \ \"name\": \"Empowered Configuration\",\n \"xp\": 4,\n \"text\"\ - : \"While using a Manifest ability, you get +2 skill value.\"\n }\n ]\n}" + : \"Hyperphysical Shotcaster has this form: \u201CManifest \u2013 Evade. Attempt\ + \ to evade with any skill. Before or after this attempt, you may move an investigator\ + \ or a non-Elite enemy at your location to a connecting location, or vice versa.\u201D\ + \"\n },\n {\n \"name\": \"Realitycollapser\",\n \"xp\": 2,\n \ + \ \"text\": \"Hyperphysical Shotcaster has this form: \u201CManifest \u2013 Test\ + \ any skill (3). If you succeed, discard from play a non\u2011weakness treachery\ + \ that is not attached to an Elite enemy.\u201D\"\n },\n {\n \"name\"\ + : \"Matterweaver\",\n \"xp\": 2,\n \"text\": \"Hyperphysical Shotcaster\ + \ has this form: \u201CManifest \u2013 Choose an asset in your hand and test any\ + \ skill (X), where X is that asset\u2019s cost. If you succeed, play that asset\ + \ at no cost.\u201D\"\n },\n {\n \"name\": \"Aetheric Link\",\n \ + \ \"xp\": 4,\n \"text\": \"Hyperphysical Shotcaster enters play with 2 additional\ + \ aether.\",\n \"replaces\": {\n \"uses\": [\n {\n \ + \ \"count\": 6,\n \"type\": \"Aether\",\n \"token\": \"\ + resource\"\n }\n ]\n }\n },\n {\n \"name\": \"Empowered\ + \ Configuration\",\n \"xp\": 4,\n \"text\": \"While using a Manifest ability,\ + \ you get +2 skill value.\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 2a6e0d Grid: true GridProjection: false @@ -73,9 +71,9 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359.21 + rotX: 359.0 rotY: 270.0 - rotZ: 0.87 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Gaze (2) e2bc49.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Gaze (2) e2bc49.yaml index 1a289fd90..426e3223f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Gaze (2) e2bc49.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Gaze (2) e2bc49.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538721 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60423\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 2,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}" GUID: e2bc49 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 3.8 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Gaze 8f3c8e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Gaze 8f3c8e.yaml index f7643314c..99af03cc1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Gaze 8f3c8e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Gaze 8f3c8e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230313 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02153\",\n \"alternate_ids\": [\n \"60414\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 3,\n \"level\": 0,\n\ - \ \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"\ - combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n\ - }" + \ \"traits\": \"Spell.\",\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"\ + cycle\": \"The Dunwich Legacy\"\n}" GUID: 8f3c8e Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 8.97 posY: 4.14 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Therapy 7f1b48.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Therapy 7f1b48.yaml index ada8662c7..b905d0f8e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Therapy 7f1b48.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hypnotic Therapy 7f1b48.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 591753 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5917': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05007\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Talent.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 7f1b48 Grid: true GridProjection: false @@ -40,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.72 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Hypochondria 88ee43.yaml b/unpacked/Bag All Player Cards 15bb07/Card Hypochondria 88ee43.yaml index 0235a2204..c86b108b9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Hypochondria 88ee43.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Hypochondria 88ee43.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527404 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5274': BackIsHidden: true @@ -21,8 +21,7 @@ Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"01100\",\n \"alternate_ids\": [\n \"01600\"\n ],\n \ \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n\ - \ \"cycle\": \"Core\"\n}" + ,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"Core\"\n}" GUID: 88ee43 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 79.05 posY: 3.32 posZ: 27.23 - rotX: 359.6 - rotY: 269.99 - rotZ: 359.44 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card I'll see you in hell! 84ba9d.yaml b/unpacked/Bag All Player Cards 15bb07/Card I'll see you in hell! 84ba9d.yaml index 342524abd..2a1e80d9a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card I'll see you in hell! 84ba9d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card I'll see you in hell! 84ba9d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226307 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03189\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"combatIcons\"\ + : 2,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 84ba9d Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.05 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card I'll take that! 691652.yaml b/unpacked/Bag All Player Cards 15bb07/Card I'll take that! 691652.yaml index 71f7c647b..1c5efa8cd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card I'll take that! 691652.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card I'll take that! 691652.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379060 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09067\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Trick. Upgrade. Illicit.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"\ - agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" + \ \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\ + \n}" GUID: '691652' Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 16.67 posY: 3.35 posZ: 65.93 - rotX: 357.52 - rotY: 270.06 - rotZ: 357.32 + rotX: 358.0 + rotY: 270.0 + rotZ: 357.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card I'm done runnin'! d8a324.yaml b/unpacked/Bag All Player Cards 15bb07/Card I'm done runnin'! d8a324.yaml index c94826bea..e3dce06ca 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card I'm done runnin'! d8a324.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card I'm done runnin'! d8a324.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378762 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3787': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05016\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \ - \ \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Spirit.\",\n \"combatIcons\": 1,\n \"agilityIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: d8a324 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.15 posY: 4.11 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card I'm outta here! 62cf25.yaml b/unpacked/Bag All Player Cards 15bb07/Card I'm outta here! 62cf25.yaml index a34543d0c..43853c495 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card I'm outta here! 62cf25.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card I'm outta here! 62cf25.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368707 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3687': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02151\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Trick. Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Trick. Spirit.\",\n \"agilityIcons\"\ + : 2,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 62cf25 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 5.01 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card I've got a plan! (2) 344e90.yaml b/unpacked/Bag All Player Cards 15bb07/Card I've got a plan! (2) 344e90.yaml index 15f7c4bf5..2dd79c31f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card I've got a plan! (2) 344e90.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card I've got a plan! (2) 344e90.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538823 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60225\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Insight. Tactic.\",\n \"intellectIcons\"\ + : 2,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 344e90 Grid: true GridProjection: false @@ -44,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 9.09 - posY: 3.68 + posY: 3.69 posZ: -16.71 - rotX: 359.92 - rotY: 269.89 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card I've got a plan! acd0da.yaml b/unpacked/Bag All Player Cards 15bb07/Card I've got a plan! acd0da.yaml index a8b1182f9..13cf7c626 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card I've got a plan! acd0da.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card I've got a plan! acd0da.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368418 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02107\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Insight. Tactic.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: acd0da Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 5.2 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card I've had worse��‚�� (4) 3b6834.yaml b/unpacked/Bag All Player Cards 15bb07/Card I've had worse (4) 3b6834.yaml similarity index 74% rename from unpacked/Bag All Player Cards 15bb07/Card I've had worse��‚�� (4) 3b6834.yaml rename to unpacked/Bag All Player Cards 15bb07/Card I've had worse (4) 3b6834.yaml index 7db54987b..abce4460d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card I've had worse��‚�� (4) 3b6834.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card I've had worse (4) 3b6834.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226355 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02261\",\n \"alternate_ids\": [\n \"01684\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"cost\": 0,\n \"level\"\ - : 4,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 2,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\ - \n}" + : 4,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\": 2,\n \"agilityIcons\":\ + \ 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 3b6834 Grid: true GridProjection: false @@ -36,7 +35,7 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Card -Nickname: "\"I've had worse\uFFFD\uFFFD\u201A\uFFFD\uFFFD\" (4)" +Nickname: '"I''ve had worse" (4)' SidewaysCard: false Snap: true Sticky: true @@ -47,9 +46,9 @@ Transform: posX: 19.1 posY: 3.37 posZ: -57.68 - rotX: 359.76 + rotX: 0.0 rotY: 270.0 - rotZ: 0.72 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card I've had worse��‚�� (2) 76147b.yaml b/unpacked/Bag All Player Cards 15bb07/Card I've had worse... (2) 76147b.yaml similarity index 74% rename from unpacked/Bag All Player Cards 15bb07/Card I've had worse��‚�� (2) 76147b.yaml rename to unpacked/Bag All Player Cards 15bb07/Card I've had worse... (2) 76147b.yaml index 2476e76b3..f2321b954 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card I've had worse��‚�� (2) 76147b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card I've had worse... (2) 76147b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378619 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3786': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05315\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 76147b Grid: true GridProjection: false @@ -35,7 +34,7 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Card -Nickname: "\"I've had worse\uFFFD\uFFFD\u201A\uFFFD\uFFFD\" (2)" +Nickname: '"I''ve had worse..." (2)' SidewaysCard: false Snap: true Sticky: true @@ -44,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 9.14 - posY: 3.78 + posY: 3.79 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ice Pick (1) 8b065c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ice Pick (1) 8b065c.yaml index b7bdd8426..8866364eb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ice Pick (1) 8b065c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ice Pick (1) 8b065c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378943 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08105\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Survivor\"\ ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Item. Tool. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\"\ - : \"Edge of the Earth\"\n}" + combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 8b065c Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.72 posZ: -16.73 - rotX: 359.89 - rotY: 269.8 - rotZ: 0.18 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ice Pick (3) 70f9f7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ice Pick (3) 70f9f7.yaml index 53367501a..169531a82 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ice Pick (3) 70f9f7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ice Pick (3) 70f9f7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378945 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08107\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Survivor\"\ ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Tool. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\"\ - : 1,\n \"cycle\": \"Edge of the Earth\"\n}" + intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n\ + }" GUID: 70f9f7 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 - posY: 2.86 + posY: 2.87 posZ: -16.73 - rotX: 359.9 - rotY: 269.8 - rotZ: 0.14 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ichtaca 29fc24.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ichtaca 29fc24.yaml index 7f30b17e7..0ba3d22ce 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ichtaca 29fc24.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ichtaca 29fc24.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 235648 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2356': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: The Forgotten Guardian DragSelectable: true GMNotes: "{\n \"id\": \"04147\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 4,\n \"traits\": \"Ally. Eztli. Wayfarer.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\"\ - : 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 4,\n \"traits\": \"Ally. Eztli. Wayfarer.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten\ + \ Age\"\n}" GUID: 29fc24 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.08 posY: 3.73 posZ: -16.71 - rotX: 359.99 - rotY: 269.9 - rotZ: 359.97 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Idol of Xanatos 8f6f39.yaml b/unpacked/Bag All Player Cards 15bb07/Card Idol of Xanatos 8f6f39.yaml index c23efe022..d9b0692d2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Idol of Xanatos 8f6f39.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Idol of Xanatos 8f6f39.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379126 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Watcher Beyond Time DragSelectable: true GMNotes: "{\n \"id\": \"09102\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Scarlet\ - \ Keys\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 8f6f39 Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 16.72 posY: 3.38 posZ: 65.64 - rotX: -0.01 + rotX: 0.0 rotY: 270.0 - rotZ: 0.04 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card If it bleeds... acf2b0.yaml b/unpacked/Bag All Player Cards 15bb07/Card If it bleeds... acf2b0.yaml index 8d682f391..64a72298f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card If it bleeds... acf2b0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card If it bleeds... acf2b0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226312 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02225\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\"\ - : \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"willpowerIcons\": 1,\n \"combatIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: acf2b0 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 96.32 posY: 1.99 posZ: 18.18 - rotX: 359.99 - rotY: 270.02 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ikiaq (3) 9d7d4a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ikiaq (3) 9d7d4a.yaml index 6ddd7257a..559b0499a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ikiaq (3) 9d7d4a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ikiaq (3) 9d7d4a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449606 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4496': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: The Council's Chosen DragSelectable: true GMNotes: "{\n \"id\": \"07267\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Ally. Sorcerer.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 9d7d4a Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.88 posZ: -16.72 - rotX: 0.19 - rotY: 269.8 - rotZ: 359.85 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Impromptu Barrier 9591ac.yaml b/unpacked/Bag All Player Cards 15bb07/Card Impromptu Barrier 9591ac.yaml index 9c0bdccca..811252d60 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Impromptu Barrier 9591ac.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Impromptu Barrier 9591ac.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430503 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4305': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04312\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic. Improvised.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Forgotten Age\"\n\ - }" + cycle\": \"The Forgotten Age\"\n}" GUID: 9591ac Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 4.03 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Improvisation 9aee7f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Improvisation 9aee7f.yaml index 6f2cb9a34..8ce62c115 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Improvisation 9aee7f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Improvisation 9aee7f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 374834 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3748': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03018\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Insight.\",\n \"wildIcons\": 2,\n \"cycle\"\ + : \"The Path to Carcosa\"\n}" GUID: 9aee7f Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.2 posY: 1.99 posZ: -16.73 - rotX: 0.07 - rotY: 269.8 - rotZ: 359.21 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Improvised Shield 616c43.yaml b/unpacked/Bag All Player Cards 15bb07/Card Improvised Shield 616c43.yaml index 0ba3903c3..512a5c1b0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Improvised Shield 616c43.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Improvised Shield 616c43.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379127 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09103\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Armor. Improvised.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\ - \n}" + \ \"cycle\": \"The Scarlet Keys\"\n}" GUID: 616c43 Grid: true GridProjection: false @@ -45,11 +44,11 @@ Tags: Tooltip: true Transform: posX: 16.72 - posY: 3.37 + posY: 3.38 posZ: 65.64 - rotX: 359.97 + rotX: 0.0 rotY: 270.0 - rotZ: 0.07 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Improvised Weapon 30f90b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Improvised Weapon 30f90b.yaml index 931958e8d..1634fbc8e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Improvised Weapon 30f90b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Improvised Weapon 30f90b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368811 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04033\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic. Improvised.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Forgotten Age\"\n\ - }" + cycle\": \"The Forgotten Age\"\n}" GUID: 30f90b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.04 posY: 3.91 posZ: -16.7 - rotX: 359.85 - rotY: 269.97 - rotZ: 0.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card In the Know (1) 7b42b6.yaml b/unpacked/Bag All Player Cards 15bb07/Card In the Know (1) 7b42b6.yaml index 3cf4b3cf8..51744726e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card In the Know (1) 7b42b6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card In the Know (1) 7b42b6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430640 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03027\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Talent.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\ + \n}" GUID: 7b42b6 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.56 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card In the Shadows 2561b9.yaml b/unpacked/Bag All Player Cards 15bb07/Card In the Shadows 2561b9.yaml index 8eb0ed889..4be578992 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card In the Shadows 2561b9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card In the Shadows 2561b9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 582904 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5829': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07010\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"agilityIcons\": 2,\n \"wildIcons\": 2,\n \"cycle\": \"The Innsmouth\ - \ Conspiracy\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Tactic.\",\n \"agilityIcons\": 2,\n \"wildIcons\"\ + : 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 2561b9 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.11 posY: 4.01 posZ: -16.72 - rotX: 0.02 - rotY: 269.83 - rotZ: 359.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card In the Thick of It bdd102.yaml b/unpacked/Bag All Player Cards 15bb07/Card In the Thick of It bdd102.yaml index 033936339..eb89a7501 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card In the Thick of It bdd102.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card In the Thick of It bdd102.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378912 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08125\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"level\": 0,\n \"traits\": \"Curse.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Curse.\",\n \"permanent\": true,\n \"cycle\"\ + : \"Edge of the Earth\"\n}" GUID: bdd102 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.94 posZ: -16.73 - rotX: 359.91 - rotY: 269.8 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Indebted b2ef43.yaml b/unpacked/Bag All Player Cards 15bb07/Card Indebted b2ef43.yaml index 1a5b0407a..39900f71e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Indebted b2ef43.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Indebted b2ef43.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 431205 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4312': BackIsHidden: true @@ -45,9 +45,9 @@ Transform: posX: 9.09 posY: 3.69 posZ: -16.71 - rotX: 359.94 - rotY: 269.89 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth (3) 943332.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth (3) 943332.yaml index 67bc0a362..8b06489c1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth (3) 943332.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth (3) 943332.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538725 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60427\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n\ - }" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"\ + type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + Investigator Packs\"\n}" GUID: '943332' Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.17 - posY: 3.07 + posY: 3.08 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth (5) f00301.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth (5) f00301.yaml index f9eaadc51..776342da5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth (5) f00301.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth (5) f00301.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538730 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60432\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n\ - }" + ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 2,\n \"uses\": [\n {\n \"count\": 3,\n \"\ + type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + Investigator Packs\"\n}" GUID: f00301 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.1 posY: 3.73 - posZ: -16.72 - rotX: 359.96 - rotY: 269.86 - rotZ: 359.99 + posZ: -16.71 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth c6caf6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth c6caf6.yaml index 61dd6fffd..18a3e2aae 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth c6caf6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ineffable Truth c6caf6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538707 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60409\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"agilityIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n\ + }" GUID: c6caf6 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.68 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Infighting (3) c803ba.yaml b/unpacked/Bag All Player Cards 15bb07/Card Infighting (3) c803ba.yaml index 6cc2389e0..3bd158299 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Infighting (3) c803ba.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Infighting (3) c803ba.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368854 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03314\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"agilityIcons\":\ - \ 2,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"intellectIcons\"\ + : 2,\n \"agilityIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: c803ba Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.04 posY: 3.9 posZ: -16.7 - rotX: 359.86 - rotY: 269.97 - rotZ: 0.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Inquiring Mind 5c3aea.yaml b/unpacked/Bag All Player Cards 15bb07/Card Inquiring Mind 5c3aea.yaml index 5b8d92981..fbd63b011 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Inquiring Mind 5c3aea.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Inquiring Mind 5c3aea.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368401 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02227\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 3,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"wildIcons\": 3,\n \"cycle\"\ + : \"The Dunwich Legacy\"\n}" GUID: 5c3aea Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 5.29 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Inspiring Presence 80628f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Inspiring Presence 80628f.yaml index 66824f9bd..a3f44b0b9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Inspiring Presence 80628f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Inspiring Presence 80628f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226301 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03228\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"combatIcons\"\ - : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 80628f Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 5.08 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Intel Report 5115d9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Intel Report 5115d9.yaml index e116c85ba..6f504d1c6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Intel Report 5115d9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Intel Report 5115d9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 277710 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2777': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05111\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Favor. Service.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Favor. Service.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 5115d9 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.76 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Internal Injury 4fb446.yaml b/unpacked/Bag All Player Cards 15bb07/Card Internal Injury 4fb446.yaml index af946c93b..60ed116d6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Internal Injury 4fb446.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Internal Injury 4fb446.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 431206 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4312': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"02038\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Injury.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"traits\": \"Injury.\",\n \"weakness\": true,\n \"basicWeaknessCount\":\ + \ 2,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 4fb446 Grid: true GridProjection: false @@ -43,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 9.09 - posY: 3.68 + posY: 3.69 posZ: -16.71 - rotX: 359.93 - rotY: 269.87 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Interrogate c70ad8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Interrogate c70ad8.yaml index b019cd8aa..32a93c90e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Interrogate c70ad8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Interrogate c70ad8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 431008 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4310': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05020\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Tactic. Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Tactic. Insight.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: c70ad8 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.05 posY: 3.86 posZ: -16.7 - rotX: 359.78 - rotY: 269.95 - rotZ: 0.11 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Intrepid 99d061.yaml b/unpacked/Bag All Player Cards 15bb07/Card Intrepid 99d061.yaml index 164b71f67..01146d576 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Intrepid 99d061.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Intrepid 99d061.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226304 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04192\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"willpowerIcons\": 1,\n \"cycle\"\ + : \"The Forgotten Age\"\n}" GUID: 99d061 Grid: true GridProjection: false @@ -43,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 9.13 - posY: 3.78 + posY: 3.77 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Investments b65011.yaml b/unpacked/Bag All Player Cards 15bb07/Card Investments b65011.yaml index 29afeb8b2..8b3f12e01 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Investments b65011.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Investments b65011.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 292913 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2929': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05233\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Connection.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 0,\n \"type\": \"Supply\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Connection.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 0,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n\ + }" GUID: b65011 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.03 posY: 3.67 posZ: -16.7 - rotX: 359.92 - rotY: 269.98 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Empty Fort dde61c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Isamara Ordoñez 860cd7.yaml similarity index 57% rename from unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Empty Fort dde61c.yaml rename to unpacked/Bag All Player Cards 15bb07/Card Isamara Ordoñez 860cd7.yaml index 3f34c3cdd..943bf7daa 100644 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Empty Fort dde61c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Isamara Ordoñez 860cd7.yaml @@ -3,28 +3,28 @@ AltLookAngle: y: 0.0 z: 0.0 Autoraise: true -CardID: 592412 +CardID: 550927 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: - '5924': + '5509': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 + FaceURL: http://cloud-3.steamusercontent.com/ugc/1874087305860138601/7094CA9FD63C5320D7AD2F3142B30DE5221A2657/ + NumHeight: 6 + NumWidth: 8 Type: 0 UniqueBack: false -Description: '' +Description: The Torch Singer DragSelectable: true GMNotes: '' -GUID: dde61c +GUID: 860cd7 Grid: true GridProjection: false Hands: true -HideWhenFaceDown: true +HideWhenFaceDown: false IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false @@ -32,18 +32,20 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Card -Nickname: Empty Fort +Nickname: "Isamara Ordo\xF1ez" SidewaysCard: false Snap: true Sticky: true +Tags: +- PlayerCard Tooltip: true Transform: - posX: 2.11 - posY: 1.32 - posZ: -63.05 - rotX: 0.02 + posX: 78.87 + posY: 3.28 + posZ: 27.32 + rotX: 358.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jacob Morrison (3) aa38d0.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Jacob Morrison (3) aa38d0.ttslua index 003b1787a..c11e5d72c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jacob Morrison (3) aa38d0.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Jacob Morrison (3) aa38d0.ttslua @@ -1 +1 @@ -do_not_ready = true +do_not_ready = true \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jacob Morrison (3) aa38d0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jacob Morrison (3) aa38d0.yaml index e2e76e2ec..a01196e0d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jacob Morrison (3) aa38d0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jacob Morrison (3) aa38d0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 589808 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5898': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Coast Guard Captain DragSelectable: true GMNotes: "{\n \"id\": \"07309\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Ally. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth\ - \ Conspiracy\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Ally. Blessed.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: aa38d0 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 78.98 posY: 3.32 posZ: 8.45 - rotX: 359.72 + rotX: 0.0 rotY: 270.0 - rotZ: 359.19 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jacqueline Fine 9b0378.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jacqueline Fine 9b0378.yaml index 1650b7158..6ae24443f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jacqueline Fine 9b0378.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jacqueline Fine 9b0378.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 274219 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2742': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"60401-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"60401-m\",\n \"type\": \"Minicard\"\n}" GUID: 9b0378 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 2.06 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jacqueline Fine a2cd75.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jacqueline Fine a2cd75.yaml index 99955fff7..a7c27d432 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jacqueline Fine a2cd75.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jacqueline Fine a2cd75.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 234903 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2349': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.74 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jake Williams 7c958e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jake Williams 7c958e.yaml index 754e7c1d3..dfb2debee 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jake Williams 7c958e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jake Williams 7c958e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 377343 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3773': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Forgotten Age\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Ally. Wayfarer.\",\n \"intellectIcons\": 1,\n\ + \ \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 7c958e Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.75 - posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes (promo version) f8d3f7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes (promo version) f8d3f7.yaml index b90ea08b1..6d9532dca 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes (promo version) f8d3f7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes (promo version) f8d3f7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 273631 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2736': BackIsHidden: true @@ -40,6 +40,7 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: @@ -48,9 +49,9 @@ Transform: posZ: -73.09 rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes 48b174.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes 48b174.yaml index c428b7c30..7753068c7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes 48b174.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes 48b174.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 259007 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2590': BackIsHidden: true @@ -20,7 +20,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02003-m\",\n \"alternate_ids\": [\n \"98001-m\"\n ],\n\ - \ \"type\": \"Minicard\",\n \"traits\": \"\"\n}" + \ \"type\": \"Minicard\"\n}" GUID: 48b174 Grid: true GridProjection: false @@ -38,15 +38,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.97 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes 9058d3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes 9058d3.yaml index f93504afc..d0f77beb3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes 9058d3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes 9058d3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450104 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4501': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.62 posZ: -73.09 - rotX: 0.01 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes f4e909.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes f4e909.yaml index 2cb51cc99..86748597e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes f4e909.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jenny Barnes f4e909.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 273410 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2734': BackIsHidden: true @@ -20,7 +20,7 @@ CustomDeck: Description: Promo version DragSelectable: true GMNotes: "{\n \"id\": \"02003-promo-m\",\n \"alternate_ids\": [\n \"98001-m\"\ - \n ],\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}" + \n ],\n \"type\": \"Minicard\"\n}" GUID: f4e909 Grid: true GridProjection: false @@ -38,15 +38,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.95 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jenny's Twin .45s d87128.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jenny's Twin .45s d87128.yaml index c63eb46fd..69774523b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jenny's Twin .45s d87128.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jenny's Twin .45s d87128.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 371308 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3713': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"agilityIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"agilityIcons\": 2,\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: d87128 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: - posX: 9.0 + posX: 9.01 posY: 3.86 posZ: -16.7 - rotX: 0.6 - rotY: 270.01 - rotZ: 359.85 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jeremiah Kirby (Taboo) 71e4a0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jeremiah Kirby (Taboo) 71e4a0.yaml index d0d5cfbbf..7d18ff2cf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jeremiah Kirby (Taboo) 71e4a0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jeremiah Kirby (Taboo) 71e4a0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558203 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -21,8 +21,7 @@ Description: Arctic Archaeologist DragSelectable: true GMNotes: "{\n \"id\": \"08032-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic. Wayfarer.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"intellectIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 71e4a0 Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 21.61 posY: 4.32 posZ: -55.3 - rotX: 0.13 - rotY: 269.82 - rotZ: 2.84 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jeremiah Kirby 98e5f5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jeremiah Kirby 98e5f5.yaml index 4d5f1c355..0403adf23 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jeremiah Kirby 98e5f5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jeremiah Kirby 98e5f5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379022 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,8 +21,7 @@ Description: Arctic Archaeologist DragSelectable: true GMNotes: "{\n \"id\": \"08032\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic. Wayfarer.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"intellectIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 98e5f5 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.18 posZ: -16.74 - rotX: 359.94 - rotY: 269.8 - rotZ: 359.88 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jerome Davids d99735.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jerome Davids d99735.yaml index 005cb6893..61f856488 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jerome Davids d99735.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jerome Davids d99735.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 312512 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3125': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: In Way Over His Head DragSelectable: true GMNotes: "{\n \"id\": \"05259\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Circle Undone\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Ally. Assistant.\",\n \"intellectIcons\": 1,\n\ + \ \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: d99735 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.06 posY: 3.86 posZ: -16.71 - rotX: 0.16 - rotY: 269.94 - rotZ: 359.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jessica Hyde (1) b8380d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jessica Hyde (1) b8380d.yaml index b17a49f13..23c467106 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jessica Hyde (1) b8380d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jessica Hyde (1) b8380d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 380228 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3802': BackIsHidden: true @@ -21,8 +21,9 @@ Description: Wrong Place, Wrong Time DragSelectable: true GMNotes: "{\n \"id\": \"06118\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Ally. Wayfarer. Cursed.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\"\ - : \"The Dream-Eaters\"\n}" + \ \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\"\ + : \"Damage\",\n \"token\": \"damage\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\ + \n}" GUID: b8380d Grid: true GridProjection: false @@ -40,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.04 - posY: 3.95 + posY: 3.94 posZ: -16.7 - rotX: 359.86 - rotY: 269.97 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) (Taboo) 213e21.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) (Taboo) 213e21.yaml index e3415fcec..c080c5f5f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) (Taboo) 213e21.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) (Taboo) 213e21.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558206 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Gift of the Homunculi DragSelectable: true GMNotes: "{\n \"id\": \"02269-t\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Relic.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 213e21 Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 21.83 posY: 4.42 posZ: -47.42 - rotX: 359.99 - rotY: 269.85 - rotZ: 0.21 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) 6bae15.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) 6bae15.yaml index c344e49c5..de8c18c89 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) 6bae15.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jewel of Aureolus (3) 6bae15.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230352 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Gift of the Homunculi DragSelectable: true GMNotes: "{\n \"id\": \"02269\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Relic.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 6bae15 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.8 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jim Culver b7a676.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jim Culver b7a676.yaml index 53b27e16f..c89bcb9e1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jim Culver b7a676.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jim Culver b7a676.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 259308 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2593': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"02004-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"02004-m\",\n \"type\": \"Minicard\"\n}" GUID: b7a676 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.97 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jim Culver ca079b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jim Culver ca079b.yaml index 12562a7b6..c65f3ee93 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jim Culver ca079b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jim Culver ca079b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449705 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4497': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.56 posZ: -73.09 - rotX: 359.83 + rotX: 0.0 rotY: 180.0 - rotZ: 0.02 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jim's Trumpet 03c6a7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jim's Trumpet 03c6a7.yaml index 6a25a61bb..50d211740 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jim's Trumpet 03c6a7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jim's Trumpet 03c6a7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 372110 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3721': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Instrument. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Instrument. Relic.\",\n \"willpowerIcons\"\ + : 2,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 03c6a7 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 posY: 3.71 posZ: -16.69 - rotX: 0.02 - rotY: 270.01 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Joe Diamond 6dc626.yaml b/unpacked/Bag All Player Cards 15bb07/Card Joe Diamond 6dc626.yaml index 662695136..e48d4b8d5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Joe Diamond 6dc626.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Joe Diamond 6dc626.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 271822 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2718': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.53 posZ: -73.09 - rotX: 359.93 + rotX: 0.0 rotY: 180.0 rotZ: 0.0 - scaleX: 1.1 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Joe Diamond d55364.yaml b/unpacked/Bag All Player Cards 15bb07/Card Joe Diamond d55364.yaml index 526cece12..577c52d03 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Joe Diamond d55364.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Joe Diamond d55364.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 272903 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2729': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"05002-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"05002-m\",\n \"type\": \"Minicard\"\n}" GUID: d55364 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.99 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Joey The Rat Vigil (3) 48c9ff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Joey The Rat Vigil (3) 48c9ff.yaml index e9144c728..2636a9f96 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Joey The Rat Vigil (3) 48c9ff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Joey The Rat Vigil (3) 48c9ff.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449036 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4490': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: 'Lookin'' Out For #1' DragSelectable: true GMNotes: "{\n \"id\": \"06326\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Ally. Criminal.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Ally. Criminal.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 48c9ff Grid: true GridProjection: false @@ -40,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.15 posY: 4.06 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Joey The Rat Vigil b51688.yaml b/unpacked/Bag All Player Cards 15bb07/Card Joey The Rat Vigil b51688.yaml index 68ce54658..ee19efb9e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Joey The Rat Vigil b51688.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Joey The Rat Vigil b51688.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368629 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3686': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: 'Lookin'' Out For #1' DragSelectable: true GMNotes: "{\n \"id\": \"02265\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Criminal.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Criminal.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: b51688 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.83 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card John & Jessie Burke cfb393.yaml b/unpacked/Bag All Player Cards 15bb07/Card John & Jessie Burke cfb393.yaml index cf8070a64..490593321 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card John & Jessie Burke cfb393.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card John & Jessie Burke cfb393.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 454740 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4547': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Ally. Government. DragSelectable: true GMNotes: "{\n \"id\": \"83055\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 4,\n \"traits\": \"Ally. Government.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\"\ - : 1,\n \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 4,\n \"traits\": \"Ally. Government.\",\n \"combatIcons\": 1,\n\ + \ \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}" GUID: cfb393 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.11 - posY: 3.68 + posY: 3.67 posZ: -16.72 - rotX: 359.92 - rotY: 269.85 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Join the Caravan (1) 6367dd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Join the Caravan (1) 6367dd.yaml index 0413232e8..79a197488 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Join the Caravan (1) 6367dd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Join the Caravan (1) 6367dd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379026 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08036\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 5,\n \"level\": 1,\n \"traits\": \"Insight. Synergy.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 5,\n \"level\": 1,\n \"traits\": \"Insight. Synergy.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 6367dd Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.2 posY: 2.74 posZ: -16.73 - rotX: 0.01 - rotY: 269.8 - rotZ: 359.51 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Jury-Rig 29d06d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Jury-Rig 29d06d.yaml index 335af5001..8e6432cf7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Jury-Rig 29d06d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Jury-Rig 29d06d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378903 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08074\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Upgrade.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Durability\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Upgrade.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"\ + type\": \"Durability\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ + : \"Edge of the Earth\"\n}" GUID: 29d06d Grid: true GridProjection: false @@ -47,9 +47,9 @@ Transform: posX: 9.18 posY: 2.91 posZ: -16.73 - rotX: 359.91 - rotY: 269.8 - rotZ: 0.09 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Justify the Means (3) 025ed2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Justify the Means (3) 025ed2.yaml index a262df6e3..79f11a176 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Justify the Means (3) 025ed2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Justify the Means (3) 025ed2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 589505 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5895': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07306\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 3,\n \"traits\": \"Practiced. Cursed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"level\": 3,\n \"traits\": \"Practiced. Cursed.\",\n \"cycle\": \"The Innsmouth\ + \ Conspiracy\"\n}" GUID: 025ed2 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 3.8 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Katja Eastbank (2) 2f100c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Katja Eastbank (2) 2f100c.yaml index 10b8e536d..dccf71947 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Katja Eastbank (2) 2f100c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Katja Eastbank (2) 2f100c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379138 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Keeper of Esoteric Lore DragSelectable: true GMNotes: "{\n \"id\": \"09114\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ally. Scholar.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1\n}" + ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ally. Scholar.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 2f100c Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 16.72 posY: 3.37 posZ: 65.64 - rotX: 359.47 + rotX: 359.0 rotY: 270.0 - rotZ: 0.6 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Keen Eye (3) 2f9de4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Keen Eye (3) 2f9de4.yaml index 3d0bc0042..8cfdaf1f5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Keen Eye (3) 2f9de4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Keen Eye (3) 2f9de4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226351 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02185\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"The Dunwich Legacy\"\n}" GUID: 2f9de4 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 4.07 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Keen Eye 0dc75e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Keen Eye 0dc75e.yaml index 7ca35a639..9a8a84e58 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Keen Eye 0dc75e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Keen Eye 0dc75e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232100 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2321': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07152\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 0dc75e Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.0 posY: 3.85 - posZ: -16.69 - rotX: 0.3 - rotY: 270.01 - rotZ: 359.92 + posZ: -16.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Keep Faith 8b46b2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Keep Faith 8b46b2.yaml index 748449e0a..105c32bd7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Keep Faith 8b46b2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Keep Faith 8b46b2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 584328 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5843': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07034\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Fortune. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Innsmouth\ - \ Conspiracy\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Fortune. Blessed.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 8b46b2 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.17 posY: 2.96 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Kensler's Log 8d5c12.yaml b/unpacked/Bag All Player Cards 15bb07/Card Kensler's Log 8d5c12.yaml index d8d78a17f..d35dcfef4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Kensler's Log 8d5c12.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Kensler's Log 8d5c12.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 452305 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4523': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08735\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n\ - \ {\n \"count\": 2,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\": 1,\n \"\ + wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Secret\"\ + ,\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\ + \n}" GUID: 8d5c12 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 79.27 posY: 3.32 posZ: 7.38 - rotX: 359.49 - rotY: 269.99 - rotZ: 0.53 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Kerosene (1) 25ad44.yaml b/unpacked/Bag All Player Cards 15bb07/Card Kerosene (1) 25ad44.yaml index 8c36bf72e..8ad8e5f4d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Kerosene (1) 25ad44.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Kerosene (1) 25ad44.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 314003 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3140': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04304\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Item.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"\ - count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n\ - \ ],\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Item.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n\ + }" GUID: 25ad44 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.76 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Key of Ys (5) (Taboo) 244d61.yaml b/unpacked/Bag All Player Cards 15bb07/Card Key of Ys (5) (Taboo) 244d61.yaml index f221d2709..42a6ae3aa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Key of Ys (5) (Taboo) 244d61.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Key of Ys (5) (Taboo) 244d61.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450619 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Let the Storm Rage DragSelectable: true GMNotes: "{\n \"id\": \"03315-t\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 244d61 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 3.68 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Key of Ys (5) 1c98ff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Key of Ys (5) 1c98ff.yaml index b1ade83fe..a25df7c70 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Key of Ys (5) 1c98ff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Key of Ys (5) 1c98ff.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368527 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Let the Storm Rage DragSelectable: true GMNotes: "{\n \"id\": \"03315\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 1c98ff Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.07 posY: 3.84 posZ: -16.71 - rotX: 0.41 - rotY: 269.93 - rotZ: 359.71 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Khopesh of the Abyss dc674e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Khopesh of the Abyss dc674e.yaml index 713bee618..2777e0dea 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Khopesh of the Abyss dc674e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Khopesh of the Abyss dc674e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 546916 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5469': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Item. Weapon. Relic. Melee. DragSelectable: true GMNotes: "{\n \"id\": \"83057\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 4,\n \"traits\": \"Item. Weapon. Relic. Melee.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 4,\n \"traits\": \"Item. Weapon. Relic. Melee.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}" GUID: dc674e Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.07 posY: 3.84 posZ: -16.71 - rotX: 0.41 - rotY: 269.93 - rotZ: 359.71 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Kicking the Hornet's Nest 4d6da5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Kicking the Hornet's Nest 4d6da5.yaml index 545ff3228..9d1524f79 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Kicking the Hornet's Nest 4d6da5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Kicking the Hornet's Nest 4d6da5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379061 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09068\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Gambit. Tactic.\",\n \"permanent\": false,\n \"weakness\":\ - \ false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Gambit. Tactic.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 4d6da5 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 16.67 posY: 3.4 posZ: 65.93 - rotX: 359.58 - rotY: 270.01 - rotZ: 359.54 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Kleptomania 447a08.yaml b/unpacked/Bag All Player Cards 15bb07/Card Kleptomania 447a08.yaml index da15d55af..f02ac24a5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Kleptomania 447a08.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Kleptomania 447a08.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 438126 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4381': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"06036\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness. Talent.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"traits\": \"Madness. Talent.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 447a08 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.96 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Knife 0ab3f1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Knife 0ab3f1.yaml index 61245ccb5..ef8d4a383 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Knife 0ab3f1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Knife 0ab3f1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368512 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01086\",\n \"alternate_ids\": [\n \"01586\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 1,\n \"level\":\ - \ 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"combatIcons\": 1,\n \"cycle\"\ + : \"Core\"\n}" GUID: 0ab3f1 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 + rotX: 0.0 rotY: 270.0 - rotZ: 0.01 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Knight of Swords (3) 159f82.yaml b/unpacked/Bag All Player Cards 15bb07/Card Knight of Swords (3) 159f82.yaml index ee496e657..0a2fcd21e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Knight of Swords (3) 159f82.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Knight of Swords (3) 159f82.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449525 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4495': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Charge Ever Onward DragSelectable: true GMNotes: "{\n \"id\": \"54005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tarot.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"cycle\": \"Return to the Circle Undone\"\n\ - }" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tarot.\",\n \"cycle\": \"Return\ + \ to the Circle Undone\"\n}" GUID: 159f82 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.83 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Knowledge is Power (Taboo) eccb8a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Knowledge is Power (Taboo) eccb8a.yaml index bec1f850a..1e808df6e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Knowledge is Power (Taboo) eccb8a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Knowledge is Power (Taboo) eccb8a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450611 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05231-t\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: eccb8a Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.07 posY: 3.89 posZ: -16.71 - rotX: 0.33 - rotY: 269.93 - rotZ: 359.76 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Knowledge is Power 6de21b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Knowledge is Power 6de21b.yaml index ba3e63a25..f2e76c856 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Knowledge is Power 6de21b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Knowledge is Power 6de21b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 293215 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2932': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05231\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 6de21b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.69 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Knuckleduster 5690d1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Knuckleduster 5690d1.yaml index 3e3b83501..0874c37b6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Knuckleduster 5690d1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Knuckleduster 5690d1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368627 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3686': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03110\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee. Illicit.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - cycle\": \"The Path to Carcosa\"\n}" + ,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 5690d1 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.68 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Kukri 756a35.yaml b/unpacked/Bag All Player Cards 15bb07/Card Kukri 756a35.yaml index 201538f6a..e1113a215 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Kukri 756a35.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Kukri 756a35.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368516 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02036\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\"\ - : \"The Dunwich Legacy\"\n}" + combatIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 756a35 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.81 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Kymani Jones 9a9830.yaml b/unpacked/Bag All Player Cards 15bb07/Card Kymani Jones 9a9830.yaml index d9fb4c013..1a0549ea3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Kymani Jones 9a9830.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Kymani Jones 9a9830.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 843402 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8434': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 17.83 posY: 2.21 posZ: 54.01 - rotX: 0.02 - rotY: 180.01 - rotZ: 359.98 - scaleX: 1.0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.0 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Kymani Jones d3d7fb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Kymani Jones d3d7fb.yaml index ceee4f477..52fb8aa68 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Kymani Jones d3d7fb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Kymani Jones d3d7fb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 846102 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8461': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09008-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"09008-m\",\n \"type\": \"Minicard\"\n}" GUID: d3d7fb Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 14.2 posY: 2.21 posZ: 57.02 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lab Coat (1) a825ad.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lab Coat (1) a825ad.yaml index 4849a1557..8fe2e195e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lab Coat (1) a825ad.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lab Coat (1) a825ad.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379043 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,7 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09050\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Clothing. Science.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1\n}" + \ \"willpowerIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: a825ad Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 357.76 - rotY: 270.05 - rotZ: 357.57 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Laboratory Assistant 147cb2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Laboratory Assistant 147cb2.yaml index 171e1cfe7..5527a8ee1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Laboratory Assistant 147cb2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Laboratory Assistant 147cb2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 586506 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5865': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02020\",\n \"alternate_ids\": [\n \"60212\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 0,\n\ - \ \"traits\": \"Ally. Miskatonic. Science.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + \ \"traits\": \"Ally. Miskatonic. Science.\",\n \"intellectIcons\": 1,\n \"cycle\"\ + : \"The Dunwich Legacy\"\n}" GUID: 147cb2 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.76 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lady Esprit ab24a6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lady Esprit ab24a6.yaml index 0f8a7e3e0..fa0a9734d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lady Esprit ab24a6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lady Esprit ab24a6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449703 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4497': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Dangerous Bokor DragSelectable: true GMNotes: "{\n \"id\": \"81019\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 4,\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"\ - wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 4,\n \"traits\": \"Ally. Sorcerer.\",\n \"willpowerIcons\": 1,\n\ + \ \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}" GUID: ab24a6 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.46 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lantern (2) bda4fd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lantern (2) bda4fd.yaml index 91c146df3..1ab6f2409 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lantern (2) bda4fd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lantern (2) bda4fd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 440621 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4406': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"52009\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Item. Tool.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Return\ - \ to the Path to Carcosa\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Item. Tool.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"Return to the Path to Carcosa\"\n}" GUID: bda4fd Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.69 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lantern e66002.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lantern e66002.yaml index d6ea6c040..695ef8dc7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lantern e66002.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lantern e66002.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368827 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03036\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: e66002 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.12 posY: 3.95 posZ: -16.72 - rotX: 0.11 - rotY: 269.82 - rotZ: 359.9 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Last Chance 1fe462.yaml b/unpacked/Bag All Player Cards 15bb07/Card Last Chance 1fe462.yaml index 8d15c2d7e..b2ca33d12 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Last Chance 1fe462.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Last Chance 1fe462.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368804 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04036\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 0,\n \"traits\": \"Gambit.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 5,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Gambit.\",\n \"wildIcons\": 5,\n \"cycle\"\ + : \"The Forgotten Age\"\n}" GUID: 1fe462 Grid: true GridProjection: false @@ -44,10 +44,10 @@ Tooltip: true Transform: posX: 9.05 posY: 3.75 - posZ: -16.71 - rotX: 359.76 - rotY: 269.95 - rotZ: 0.12 + posZ: -16.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leadership (2) 80fafa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leadership (2) 80fafa.yaml index 89a18d775..87175d605 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leadership (2) 80fafa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leadership (2) 80fafa.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 447935 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4479': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06235\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\"\ - ,\n \"level\": 2,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"level\": 2,\n \"traits\": \"Practiced.\",\n \"wildIcons\": 1,\n \"cycle\"\ + : \"The Dream-Eaters\"\n}" GUID: 80fafa Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.98 posY: 3.8 posZ: -16.69 - rotX: 359.96 - rotY: 270.01 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leadership 83d8d7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leadership 83d8d7.yaml index 52642de46..5e5dea233 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leadership 83d8d7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leadership 83d8d7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226303 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02260\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\"\ - ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"wildIcons\": 1,\n \"cycle\"\ + : \"The Dunwich Legacy\"\n}" GUID: 83d8d7 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 3.77 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leather Coat (1) 5b1550.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leather Coat (1) 5b1550.yaml index fd066f9f3..27203b624 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leather Coat (1) 5b1550.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leather Coat (1) 5b1550.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550819 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60521\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Item. Armor.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Item. Armor.\",\n \"combatIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 5b1550 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.09 posY: 3.68 posZ: -16.71 - rotX: 359.92 - rotY: 269.89 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leather Coat 593deb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leather Coat 593deb.yaml index 2b8c6268d..61dc4f45a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leather Coat 593deb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leather Coat 593deb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368820 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01072\",\n \"alternate_ids\": [\n \"01572\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 0,\n \"level\"\ - : 0,\n \"traits\": \"Item. Armor.\",\n \"permanent\": false,\n \"weakness\":\ - \ false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}" + : 0,\n \"traits\": \"Item. Armor.\",\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\ + \n}" GUID: 593deb Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 32.98 - posY: 3.32 + posY: 3.33 posZ: -47.41 - rotX: 1.14 - rotY: 270.01 - rotZ: 1.69 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leather Jacket dfbc13.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leather Jacket dfbc13.yaml index ad1b1896a..b4b48d6e4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leather Jacket dfbc13.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leather Jacket dfbc13.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538608 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60310\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Armor.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Armor.\",\n \"combatIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: dfbc13 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 - posY: 3.68 + posY: 3.69 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leg Injury 46b4a0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leg Injury 46b4a0.yaml index 6501f6ca0..668ff422b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leg Injury 46b4a0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leg Injury 46b4a0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378918 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"08131\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Injury.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Injury.\",\n \"weakness\": true,\n \"basicWeaknessCount\":\ + \ 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 46b4a0 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.19 posY: 2.37 posZ: -16.73 - rotX: 359.88 - rotY: 269.8 - rotZ: 0.26 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leo Anderson 126932.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leo Anderson 126932.yaml index 2f63c3e8b..d8698c7b2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leo Anderson 126932.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leo Anderson 126932.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 271316 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2713': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.76 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leo Anderson 8925b0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leo Anderson 8925b0.yaml index 3b73b1981..ad50fee66 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leo Anderson 8925b0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leo Anderson 8925b0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 262016 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2620': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"04001-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"04001-m\",\n \"type\": \"Minicard\"\n}" GUID: 8925b0 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.77 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leo De Luca (1) 27446e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leo De Luca (1) 27446e.yaml index 740a4d75e..a97f64916 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leo De Luca (1) 27446e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leo De Luca (1) 27446e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315240 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -21,8 +21,8 @@ Description: The Louisiana Lion DragSelectable: true GMNotes: "{\n \"id\": \"01054\",\n \"alternate_ids\": [\n \"01554\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 5,\n \"level\": 1,\n\ - \ \"traits\": \"Ally. Criminal.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Ally. Criminal.\",\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\ + \n}" GUID: 27446e Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0.08 - rotY: 270.03 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Leo De Luca eaa415.yaml b/unpacked/Bag All Player Cards 15bb07/Card Leo De Luca eaa415.yaml index 72973a2ee..bfeca8340 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Leo De Luca eaa415.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Leo De Luca eaa415.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368631 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3686': BackIsHidden: true @@ -21,8 +21,8 @@ Description: The Louisiana Lion DragSelectable: true GMNotes: "{\n \"id\": \"01048\",\n \"alternate_ids\": [\n \"01548\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 6,\n \"level\": 0,\n\ - \ \"traits\": \"Ally. Criminal.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Ally. Criminal.\",\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\ + \n}" GUID: eaa415 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0.08 - rotY: 269.99 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lesson Learned (2) 037b2e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lesson Learned (2) 037b2e.yaml index c533543b9..296ed6b23 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lesson Learned (2) 037b2e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lesson Learned (2) 037b2e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545322 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60124\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Insight. Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 2,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Insight. Spirit.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 2,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 037b2e Grid: true GridProjection: false @@ -43,11 +42,11 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.15 + posX: 9.14 posY: 3.69 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Let God sort them out... d3dcf1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Let God sort them out... d3dcf1.yaml index 61b654067..6b35fc3b0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Let God sort them out... d3dcf1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Let God sort them out... d3dcf1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 380027 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3800': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06160\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Tactic. Fated.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Tactic. Fated.\",\n \"combatIcons\"\ + : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: d3dcf1 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.9 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Let me handle this! 36c0cb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Let me handle this! 36c0cb.yaml index c1efc919d..a2c69ab6e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Let me handle this! 36c0cb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Let me handle this! 36c0cb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226305 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03022\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 36c0cb Grid: true GridProjection: false @@ -43,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.08 - posY: 3.68 + posX: 9.07 + posY: 3.69 posZ: -16.71 - rotX: 359.93 - rotY: 269.92 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Library Docent (1) fab3a9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Library Docent (1) fab3a9.yaml index 5e7095ba4..50548c7e0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Library Docent (1) fab3a9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Library Docent (1) fab3a9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538818 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60220\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Ally. Miskatonic.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: fab3a9 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.12 posY: 4.02 posZ: -16.72 - rotX: 0.04 - rotY: 269.83 - rotZ: 359.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lifeline (1) 895047.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lifeline (1) 895047.yaml index 001ac155e..da3bf2726 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lifeline (1) 895047.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lifeline (1) 895047.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379134 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09110\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Fortune.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1\n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Fortune.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: '895047' Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 16.72 posY: 3.37 posZ: 65.64 - rotX: 359.65 + rotX: 0.0 rotY: 270.0 - rotZ: 0.41 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lightning Gun (5) 2d362c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lightning Gun (5) 2d362c.yaml index ebf4cfd01..3f42b24b0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lightning Gun (5) 2d362c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lightning Gun (5) 2d362c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226361 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,10 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02301\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 6,\n \"level\": 5,\n \"traits\": \"Item. Weapon. Firearm.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"\ - combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"\ - Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + \ \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"\ + count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n \ + \ ],\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 2d362c Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.73 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lily Chen 4d0128.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lily Chen 4d0128.yaml index a108873ee..fc593fc57 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lily Chen 4d0128.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lily Chen 4d0128.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379202 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3792': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"08010-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"08010-m\",\n \"type\": \"Minicard\"\n}" GUID: 4d0128 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 2.13 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lily Chen cc21e0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lily Chen cc21e0.yaml index 48f3f79b5..bfdf9b8a1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lily Chen cc21e0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lily Chen cc21e0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379503 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3795': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.87 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Liquid Courage (1) 5065a6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Liquid Courage (1) 5065a6.yaml index 1565073f0..a2e20b96d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Liquid Courage (1) 5065a6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Liquid Courage (1) 5065a6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538618 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60320\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Item. Illicit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 4,\n \"type\": \"Supply\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Item. Illicit.\",\n \"willpowerIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n\ + }" GUID: 5065a6 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.18 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Liquid Courage c33a10.yaml b/unpacked/Bag All Player Cards 15bb07/Card Liquid Courage c33a10.yaml index 491c48182..ca78a2a60 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Liquid Courage c33a10.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Liquid Courage c33a10.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368620 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3686': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02024\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Illicit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 4,\n \"type\": \"Supply\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Illicit.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n\ + }" GUID: c33a10 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.32 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lita Chantler 3c1944.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lita Chantler 3c1944.yaml index 943d81a99..9ed894d55 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lita Chantler 3c1944.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lita Chantler 3c1944.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 295128 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2951': BackIsHidden: true @@ -20,8 +20,7 @@ CustomDeck: Description: Ally DragSelectable: true GMNotes: "{\n \"id\": \"01117\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Ally.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"cycle\": \"Core\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Ally.\",\n \"cycle\": \"Core\"\n}" GUID: 3c1944 Grid: true GridProjection: false @@ -39,16 +38,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.43 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Live and Learn 050ba1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Live and Learn 050ba1.yaml index 7c141848c..e0d11b222 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Live and Learn 050ba1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Live and Learn 050ba1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368807 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04200\",\n \"alternate_ids\": [\n \"60516\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 0,\n \"level\"\ - : 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" + : 0,\n \"traits\": \"Spirit.\",\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten\ + \ Age\"\n}" GUID: 050ba1 Grid: true GridProjection: false @@ -45,10 +45,10 @@ Tooltip: true Transform: posX: 9.1 posY: 3.72 - posZ: -16.72 - rotX: 0.01 - rotY: 269.86 - rotZ: 359.96 + posZ: -16.71 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Living Ink 42b36d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Living Ink 42b36d.yaml index cc6064f88..b3664c7c7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Living Ink 42b36d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Living Ink 42b36d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379103 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,27 +20,27 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09079\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": [\n {\n \"count\": 3,\n \ - \ \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"customizations\"\ - : [\n {\n \"name\": \"Shifting Ink\",\n \"xp\": 1,\n \"text\"\ - : \"You may play Living Ink under the control of another investigator at your location.\"\ - \n },\n {\n \"name\": \"Subtle Depiction\",\n \"xp\": 1,\n \ - \ \"text\": \"At the start of your turn, you may choose not to remove 1 charge from\ - \ Living Ink and ignore its ability for the remainder of the round.\"\n },\n\ - \ {\n \"name\": \"Imbued Ink\",\n \"xp\": 2,\n \"text\": \"Living\ - \ Ink enters play with 2 additional charges and takes up an arcane slot instead\ - \ of a body slot.\",\n \"replaces\": {\n \"uses\": [\n {\n\ - \ \"count\": 5,\n \"type\": \"Charge\",\n \"token\"\ - : \"resource\"\n }\n ]\n }\n },\n {\n \"name\":\ - \ \"Eldritch Ink\",\n \"xp\": 3,\n \"text\": \"Circle another skill.\"\ - \n },\n {\n \"name\": \"Eldritch Ink\",\n \"xp\": 3,\n \"text\"\ - : \"Circle another skill.\"\n },\n {\n \"name\": \"Macabre Depiction\"\ - ,\n \"xp\": 3,\n \"text\": \"Living Ink gains: \uFFFD\u20AC\uFFFD? After\ - \ you reveal a chaos token with a symbol, exhaust Living Ink: Place 1 charge on\ - \ it.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Vibrancy\",\n \"xp\"\ - : 3,\n \"text\": \"Living Ink grants an additional +1 to the circled skill(s)\ - \ and \uFFFD\u20AC\u201C1 to each other skill.\"\n }\n ]\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Ritual.\",\n \"uses\": [\n\ + \ {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ + \n }\n ],\n \"customizations\": [\n {\n \"name\": \"Shifting Ink\"\ + ,\n \"xp\": 1,\n \"text\": \"You may play Living Ink under the control\ + \ of another investigator at your location.\"\n },\n {\n \"name\": \"\ + Subtle Depiction\",\n \"xp\": 1,\n \"text\": \"At the start of your turn,\ + \ you may choose not to remove 1 charge from Living Ink and ignore its ability for\ + \ the remainder of the round.\"\n },\n {\n \"name\": \"Imbued Ink\",\n\ + \ \"xp\": 2,\n \"text\": \"Living Ink enters play with 2 additional charges\ + \ and takes up an arcane slot instead of a body slot.\",\n \"replaces\": {\n\ + \ \"uses\": [\n {\n \"count\": 5,\n \"type\"\ + : \"Charge\",\n \"token\": \"resource\"\n }\n ]\n \ + \ }\n },\n {\n \"name\": \"Eldritch Ink\",\n \"xp\": 3,\n \ + \ \"text\": \"Circle another skill.\"\n },\n {\n \"name\": \"Eldritch\ + \ Ink\",\n \"xp\": 3,\n \"text\": \"Circle another skill.\"\n },\n\ + \ {\n \"name\": \"Macabre Depiction\",\n \"xp\": 3,\n \"text\"\ + : \"Living Ink gains: \u201C\U0001F5F2 After you reveal a chaos token with a symbol,\ + \ exhaust Living Ink: Place 1 charge on it.\u201D\"\n },\n {\n \"name\"\ + : \"Vibrancy\",\n \"xp\": 3,\n \"text\": \"Living Ink grants an additional\ + \ +1 to the circled skill(s) and \u20131 to each other skill.\"\n }\n ],\n \ + \ \"cycle\": \"The Scarlet Keys\"\n}" GUID: 42b36d Grid: true GridProjection: false @@ -65,9 +65,9 @@ Transform: posX: 16.67 posY: 3.35 posZ: 65.93 - rotX: 357.9 - rotY: 270.05 - rotZ: 357.73 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Livre d'Eibon 55001f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Livre d'Eibon 55001f.yaml index 931282809..24701f41a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Livre d'Eibon 55001f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Livre d'Eibon 55001f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379003 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Hyperborean Grimoire DragSelectable: true GMNotes: "{\n \"id\": \"08005\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Relic. Tome.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Relic. Tome.\",\n \"willpowerIcons\":\ + \ 2,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 55001f Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 posY: 3.75 posZ: -16.69 - rotX: 359.82 - rotY: 270.01 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lockpicks (1) edd6c4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lockpicks (1) edd6c4.yaml index 25218e7e7..323b87fda 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lockpicks (1) edd6c4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lockpicks (1) edd6c4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315237 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -21,10 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03031\",\n \"alternate_ids\": [\n \"01687\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"level\": 1,\n\ - \ \"traits\": \"Item. Tool. Illicit.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n\ - \ \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ - : \"The Path to Carcosa\"\n}" + \ \"traits\": \"Item. Tool. Illicit.\",\n \"intellectIcons\": 1,\n \"uses\":\ + \ [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"\ + resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: edd6c4 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0.08 - rotY: 270.03 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lockpicks cc11e4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lockpicks cc11e4.yaml index 96ec59865..77df3be74 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lockpicks cc11e4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lockpicks cc11e4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538603 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tool. Illicit.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\"\ - : \"Investigator Packs\"\n}" + intellectIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: cc11e4 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.9 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lodge Debts acce72.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lodge Debts acce72.yaml index e495e906c..07949cce9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lodge Debts acce72.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lodge Debts acce72.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 591858 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5918': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05012\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 10,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 10,\n \"traits\": \"Pact.\",\n \"weakness\": true,\n \"cycle\"\ + : \"The Circle Undone\"\n}" GUID: acce72 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 5.02 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Logical Reasoning (4) 1258c6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Logical Reasoning (4) 1258c6.yaml index 64f7eb139..470927a83 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Logical Reasoning (4) 1258c6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Logical Reasoning (4) 1258c6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 441023 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4410': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"52003\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 3,\n \"cycle\": \"Return\ - \ to the Path to Carcosa\"\n}" + ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Insight.\",\n \"willpowerIcons\"\ + : 3,\n \"cycle\": \"Return to the Path to Carcosa\"\n}" GUID: 1258c6 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 5.48 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Logical Reasoning 812175.yaml b/unpacked/Bag All Player Cards 15bb07/Card Logical Reasoning 812175.yaml index 9e9a6cae9..c1a42fbd9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Logical Reasoning 812175.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Logical Reasoning 812175.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368417 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03191\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: '812175' Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.75 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes (Taboo) 475460.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes (Taboo) 475460.yaml index 88ef3c6a0..c0fa3e6b1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes (Taboo) 475460.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes (Taboo) 475460.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558300 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5583': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 99.07 posY: 1.9 posZ: 4.6 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 0.08 - scaleX: 1.0 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.0 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes b127ab.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes b127ab.yaml index 3da6a1f89..887ed36ca 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes b127ab.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes b127ab.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 259915 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2599': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"03006-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"03006-m\",\n \"type\": \"Minicard\"\n}" GUID: b127ab Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.89 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes d37332.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes d37332.yaml index 4af0fdc89..8052fb1f5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes d37332.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lola Hayes d37332.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 271215 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2712': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.48 posZ: -73.09 - rotX: 0.23 + rotX: 0.0 rotY: 180.0 - rotZ: 359.94 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lola Santiago (3) 8bec05.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lola Santiago (3) 8bec05.yaml index ae8b55306..f8c8a8fa5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lola Santiago (3) 8bec05.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lola Santiago (3) 8bec05.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315256 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: No-Nonsense Archaeologist DragSelectable: true GMNotes: "{\n \"id\": \"04196\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Ally. Wayfarer.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 8bec05 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.08 posY: 3.73 posZ: -16.71 - rotX: 359.99 - rotY: 269.9 - rotZ: 359.97 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lone Wolf dc3b07.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lone Wolf dc3b07.yaml index b1b955200..9aaa140d9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lone Wolf dc3b07.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lone Wolf dc3b07.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368619 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3686': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02188\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: dc3b07 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.1 posY: 3.73 - posZ: -16.72 - rotX: 359.96 - rotY: 269.86 - rotZ: 359.99 + posZ: -16.71 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lonnie Ritter ad0ef0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lonnie Ritter ad0ef0.yaml index eb027ec7d..f6768533e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lonnie Ritter ad0ef0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lonnie Ritter ad0ef0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538607 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Feisty Mechanic DragSelectable: true GMNotes: "{\n \"id\": \"60309\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\ - \n}" + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally.\",\n \"combatIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: ad0ef0 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.05 posY: 3.89 posZ: -16.7 - rotX: 359.78 - rotY: 269.96 - rotZ: 0.1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Look what I found! (2) fd393b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Look what I found! (2) fd393b.yaml index 0e7c58207..b4844c219 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Look what I found! (2) fd393b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Look what I found! (2) fd393b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550822 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60524\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Fortune.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Fortune.\",\n \"intellectIcons\"\ + : 2,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: fd393b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 26.1 posY: 3.54 posZ: -7.17 - rotX: 0.22 - rotY: 269.98 - rotZ: 359.76 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Look what I found! 88d3c0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Look what I found! 88d3c0.yaml index 971164cfd..dca8fbc24 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Look what I found! 88d3c0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Look what I found! 88d3c0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368816 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01079\",\n \"alternate_ids\": [\n \"60517\",\n \"\ 01579\"\n ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 2,\n\ - \ \"level\": 0,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"intellectIcons\": 2,\n \"cycle\": \"Core\"\n}" + \ \"level\": 0,\n \"traits\": \"Fortune.\",\n \"intellectIcons\": 2,\n \"cycle\"\ + : \"Core\"\n}" GUID: 88d3c0 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 269.99 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lost Soul 4f903e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lost Soul 4f903e.yaml index e651b26f7..176a1c92c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lost Soul 4f903e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lost Soul 4f903e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232348 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2323': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Madness. Pact. DragSelectable: true GMNotes: "{\n \"id\": \"03227\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness. Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"traits\": \"Madness. Pact.\",\n \"weakness\": true,\n \"cycle\": \"The\ + \ Path to Carcosa\"\n}" GUID: 4f903e Grid: true GridProjection: false @@ -45,8 +45,8 @@ Transform: posX: 9.11 posY: 3.79 posZ: -16.72 - rotX: 359.94 - rotY: 269.84 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lt. Wilson Stewart 4120f3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lt. Wilson Stewart 4120f3.yaml index a7def52f3..155f9f1f1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lt. Wilson Stewart 4120f3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lt. Wilson Stewart 4120f3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 233607 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2336': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Logistical Genius DragSelectable: true GMNotes: "{\n \"id\": \"85032\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"Standalone\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Ally. Agency. Veteran.\",\n \"willpowerIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}" GUID: 4120f3 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: - posX: 8.98 + posX: 8.97 posY: 3.67 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lucid Dreaming (2) 122e98.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lucid Dreaming (2) 122e98.yaml index 5f6658048..17e435a33 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lucid Dreaming (2) 122e98.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lucid Dreaming (2) 122e98.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527312 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5273': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06205\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"cycle\": \"The\ + \ Dream-Eaters\"\n}" GUID: 122e98 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.16 posY: 4.17 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lucky Cigarette Case (3) 0feb74.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lucky Cigarette Case (3) 0feb74.yaml index 3835b24dd..c98de0884 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lucky Cigarette Case (3) 0feb74.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lucky Cigarette Case (3) 0feb74.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538624 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60326\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Charm.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 0feb74 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.0 posY: 3.81 posZ: -16.69 - rotX: 0.08 - rotY: 270.01 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lucky Cigarette Case c607c5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lucky Cigarette Case c607c5.yaml index adf5779cd..8cd18b20d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lucky Cigarette Case c607c5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lucky Cigarette Case c607c5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368624 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3686': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04107\",\n \"alternate_ids\": [\n \"60308\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 0,\n\ - \ \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" + \ \"traits\": \"Item. Charm.\",\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten\ + \ Age\"\n}" GUID: c607c5 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 5.39 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lucky Dice (2) 07b163.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lucky Dice (2) 07b163.yaml index a16ac069b..9ddcf48e4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lucky Dice (2) 07b163.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lucky Dice (2) 07b163.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 580707 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5807': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '... Or Are They?' DragSelectable: true GMNotes: "{\n \"id\": \"02230\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 07b163 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.08 posY: 3.73 posZ: -16.71 - rotX: 359.93 - rotY: 269.91 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lucky Dice (3) c8bb2a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lucky Dice (3) c8bb2a.yaml index 7f668dcc3..5464a2bb2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lucky Dice (3) c8bb2a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lucky Dice (3) c8bb2a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 589606 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5896': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '... Or Are They?' DragSelectable: true GMNotes: "{\n \"id\": \"07307\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: c8bb2a Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.01 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lucky Penny (2) aae31c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lucky Penny (2) aae31c.yaml index c75ef44c8..fdf25e655 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lucky Penny (2) aae31c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lucky Penny (2) aae31c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 579504 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5795': BackIsHidden: true @@ -21,8 +21,8 @@ Description: Omen of Misfortune DragSelectable: true GMNotes: "{\n \"id\": \"07224\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Charm. Cursed.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\ + \n}" GUID: aae31c Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 posY: 3.77 posZ: -16.69 - rotX: 359.8 - rotY: 270.01 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lucky! (2) 439af2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lucky! (2) 439af2.yaml index 9a0e515fc..5334af56d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lucky! (2) 439af2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lucky! (2) 439af2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368846 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01084\",\n \"alternate_ids\": [\n \"01584\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 1,\n \"level\"\ - : 2,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"cycle\": \"Core\"\n}" + : 2,\n \"traits\": \"Fortune.\",\n \"cycle\": \"Core\"\n}" GUID: 439af2 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 + rotX: 0.0 rotY: 270.0 - rotZ: 0.01 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lucky! (3) 04d33d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lucky! (3) 04d33d.yaml index 67e4b7631..a594ed5c2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lucky! (3) 04d33d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lucky! (3) 04d33d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550826 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60528\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Fortune.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Fortune.\",\n \"cycle\": \"\ + Investigator Packs\"\n}" GUID: 04d33d Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 3.86 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lucky! ce0dd5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lucky! ce0dd5.yaml index bfd9ea9df..aaf2e1a14 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lucky! ce0dd5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lucky! ce0dd5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368810 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01080\",\n \"alternate_ids\": [\n \"01580\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 1,\n \"level\"\ - : 0,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"cycle\": \"Core\"\n}" + : 0,\n \"traits\": \"Fortune.\",\n \"cycle\": \"Core\"\n}" GUID: ce0dd5 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 269.99 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Luke Robinson 88c4f4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Luke Robinson 88c4f4.yaml index f4de637a0..7eb05bfc1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Luke Robinson 88c4f4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Luke Robinson 88c4f4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 274013 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2740': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"06004-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"06004-m\",\n \"type\": \"Minicard\"\n}" GUID: 88c4f4 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 - posY: 1.84 + posY: 1.83 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Luke Robinson c59b75.yaml b/unpacked/Bag All Player Cards 15bb07/Card Luke Robinson c59b75.yaml index 6fd89a8dd..4f264ad0f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Luke Robinson c59b75.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Luke Robinson c59b75.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 536234 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5362': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.94 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lupara (3) a6af13.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lupara (3) a6af13.yaml index f67e58bcf..71666f27a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lupara (3) a6af13.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lupara (3) a6af13.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315255 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03309\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - uses\": [\n {\n \"count\": 2,\n \"type\": \"Ammo\",\n \"token\"\ - : \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\"\ + : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path\ + \ to Carcosa\"\n}" GUID: a6af13 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: - posX: 9.16 + posX: 9.15 posY: 4.15 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lure (1) d88407.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lure (1) d88407.yaml index 35f15d0a4..e732b0f11 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lure (1) d88407.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lure (1) d88407.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368836 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02156\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Trick.\",\n \"agilityIcons\"\ + : 2,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: d88407 Grid: true GridProjection: false @@ -46,8 +45,8 @@ Transform: posX: 9.15 posY: 4.13 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lure (2) 1a90a4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lure (2) 1a90a4.yaml index 6a7f21754..03fafd186 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lure (2) 1a90a4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lure (2) 1a90a4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 374420 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3744': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05323\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Trick.\",\n \"agilityIcons\"\ + : 2,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 1a90a4 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 4.06 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Lurker in the Dark 79cc11.yaml b/unpacked/Bag All Player Cards 15bb07/Card Lurker in the Dark 79cc11.yaml index 477966222..bb99b2ce5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Lurker in the Dark 79cc11.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Lurker in the Dark 79cc11.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379148 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -19,8 +19,9 @@ CustomDeck: UniqueBack: false Description: Basic Weakness DragSelectable: true -GMNotes: "{\n \"id\": \"09124\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster.\ - \ Shoggoth.\",\n \"permanent\": false,\n \"weakness\": false\n}" +GMNotes: "{\n \"id\": \"09124\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ + ,\n \"traits\": \"Monster. Shoggoth.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 79cc11 Grid: true GridProjection: false @@ -38,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- ScenarioCard +- PlayerCard Tooltip: true Transform: posX: 16.72 posY: 3.38 posZ: 65.64 - rotX: 359.94 + rotX: 0.0 rotY: 270.0 - rotZ: 0.1 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card M1918 BAR (4) b1ad65.yaml b/unpacked/Bag All Player Cards 15bb07/Card M1918 BAR (4) b1ad65.yaml index c446520f3..7e6ed7625 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card M1918 BAR (4) b1ad65.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card M1918 BAR (4) b1ad65.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226358 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04229\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 5,\n \"level\": 4,\n \"traits\": \"Item. Weapon. Firearm.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"uses\"\ - : [\n {\n \"count\": 8,\n \"type\": \"Ammo\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}" + \ \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 8,\n \"type\"\ + : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten\ + \ Age\"\n}" GUID: b1ad65 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.76 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Machete 86ee68.yaml b/unpacked/Bag All Player Cards 15bb07/Card Machete 86ee68.yaml index a09db8958..6f72ffa7b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Machete 86ee68.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Machete 86ee68.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226327 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01020\",\n \"alternate_ids\": [\n \"01520\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 3,\n \"level\"\ - : 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}" + : 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"combatIcons\": 1,\n \"cycle\"\ + : \"Core\"\n}" GUID: 86ee68 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 19.19 posY: 3.37 posZ: -56.85 - rotX: 359.4 - rotY: 269.98 - rotZ: 0.08 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Madame Labranche 1ee492.yaml b/unpacked/Bag All Player Cards 15bb07/Card Madame Labranche 1ee492.yaml index a42b6d1c5..ebfc38aa9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Madame Labranche 1ee492.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Madame Labranche 1ee492.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368828 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Mysterious Benefactress DragSelectable: true GMNotes: "{\n \"id\": \"03198\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Patron.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Patron.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 1ee492 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.53 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Magnifying Glass (1) 378e84.yaml b/unpacked/Bag All Player Cards 15bb07/Card Magnifying Glass (1) 378e84.yaml index 7bb1d6446..fc1679a76 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Magnifying Glass (1) 378e84.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Magnifying Glass (1) 378e84.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430637 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01040\",\n \"alternate_ids\": [\n \"01540\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 0,\n \"level\": 1,\n\ - \ \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Item. Tool.\",\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\ + \n}" GUID: 378e84 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 19.32 posY: 3.37 posZ: -57.55 - rotX: 359.71 + rotX: 0.0 rotY: 270.0 - rotZ: 0.51 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Magnifying Glass 8cc0a6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Magnifying Glass 8cc0a6.yaml index ee3027c1d..6b09e3b26 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Magnifying Glass 8cc0a6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Magnifying Glass 8cc0a6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368421 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01030\",\n \"alternate_ids\": [\n \"01530\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 1,\n \"level\": 0,\n\ - \ \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"intellectIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Item. Tool.\",\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\ + \n}" GUID: 8cc0a6 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 19.43 posY: 3.37 posZ: -57.03 - rotX: 359.43 - rotY: 270.02 - rotZ: 0.28 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Makeshift Trap aa897f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Makeshift Trap aa897f.yaml index 65af9f84b..7f739d668 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Makeshift Trap aa897f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Makeshift Trap aa897f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379124 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,18 +20,17 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09100\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Improvised. Trap.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Time\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"customizations\": [\n {\n \ - \ \"name\": \"Improved Timer\",\n \"xp\": 1,\n \"text\": \"When you play\ - \ Makeshift Trap, you may increase or decrease its uses by 1.\"\n },\n {\n\ - \ \"name\": \"Tripwire\",\n \"xp\": 1,\n \"text\": \"Only trigger\ - \ Makeshift Trap\uFFFD\u20AC\uFFFDs forced ability if there are 1 or more enemies\ + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Improvised. Trap.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"\ + type\": \"Time\",\n \"token\": \"resource\"\n }\n ],\n \"customizations\"\ + : [\n {\n \"name\": \"Improved Timer\",\n \"xp\": 1,\n \"text\"\ + : \"When you play Makeshift Trap, you may increase or decrease its uses by 1.\"\n\ + \ },\n {\n \"name\": \"Tripwire\",\n \"xp\": 1,\n \"text\"\ + : \"Only trigger Makeshift Trap\u2019s forced ability if there are 1 or more enemies\ \ at attached location.\"\n },\n {\n \"name\": \"Simple\",\n \"\ - xp\": 2,\n \"text\": \"Makeshift Trap gains fast and \uFFFD\u20AC\uFFFDplay\ - \ during any ? window.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Poisonous\"\ - ,\n \"xp\": 2,\n \"text\": \"When you remove 1 or more time from Makeshift\ + xp\": 2,\n \"text\": \"Makeshift Trap gains fast and \u201Cplay during any\ + \ \U0001F5F2 window.\u201D\"\n },\n {\n \"name\": \"Poisonous\",\n \ + \ \"xp\": 2,\n \"text\": \"When you remove 1 or more time from Makeshift\ \ Trap, deal 1 damage to an enemy at attached location.\"\n },\n {\n \ \ \"name\": \"Remote Configuration\",\n \"xp\": 2,\n \"text\": \"When\ \ you play Makeshift Trap, you may attach it to a revealed connecting location.\"\ @@ -39,7 +38,8 @@ GMNotes: "{\n \"id\": \"09100\",\n \"type\": \"Event\",\n \"class\": \"Surviv Non-Elite enemies at attached location cannot move or make attacks of opportunity.\"\ \n },\n {\n \"name\": \"Explosive Device\",\n \"xp\": 4,\n \ \ \"text\": \"When Makeshift Trap has no time and is discarded, deal 3 damage to\ - \ each enemy and investigator at attached location.\"\n }\n ]\n}" + \ each enemy and investigator at attached location.\"\n }\n ],\n \"cycle\"\ + : \"The Scarlet Keys\"\n}" GUID: aa897f Grid: true GridProjection: false @@ -63,9 +63,9 @@ Transform: posX: 16.72 posY: 3.37 posZ: 65.64 - rotX: 359.81 + rotX: 0.0 rotY: 270.0 - rotZ: 0.23 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Making Preparations 18247d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Making Preparations 18247d.yaml index 2682f0875..492ad8dfd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Making Preparations 18247d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Making Preparations 18247d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379130 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09106\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 0,\n \"traits\": \"Dilemma. Tactic.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Dilemma. Tactic.\",\n \"cycle\": \"The Scarlet\ + \ Keys\"\n}" GUID: 18247d Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359.27 + rotX: 359.0 rotY: 270.0 - rotZ: 0.8 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson (Taboo) 754b0a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson (Taboo) 754b0a.yaml index 8761c2aad..a298c8390 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson (Taboo) 754b0a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson (Taboo) 754b0a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558301 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5583': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 98.64 posY: 1.95 posZ: 13.55 - rotX: 1.88 - rotY: 180.01 + rotX: 2.0 + rotY: 180.0 rotZ: 0.0 - scaleX: 1.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.0 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson 12d3de.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson 12d3de.yaml index fb8e0c03c..012181b9e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson 12d3de.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson 12d3de.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 274012 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2740': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"06002-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"06002-m\",\n \"type\": \"Minicard\"\n}" GUID: 12d3de Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 2.13 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson 57d586.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson 57d586.yaml index 0220ad067..73a2eb217 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson 57d586.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mandy Thompson 57d586.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 536333 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5363': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.84 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Manipulate Destiny (2) 5606b3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Manipulate Destiny (2) 5606b3.yaml index 8b5d99d4f..e523e86a6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Manipulate Destiny (2) 5606b3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Manipulate Destiny (2) 5606b3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232110 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2321': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07162\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth\ - \ Conspiracy\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"wildIcons\":\ + \ 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 5606b3 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.02 posY: 3.92 posZ: -16.7 - rotX: 359.79 - rotY: 269.99 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mano a Mano (1) c55160.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mano a Mano (1) c55160.yaml index 0240f6382..cef4e9cc1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mano a Mano (1) c55160.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mano a Mano (1) c55160.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226333 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03229\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Spirit. Bold.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Spirit. Bold.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: c55160 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.07 posY: 3.84 posZ: -16.71 - rotX: 0.41 - rotY: 269.93 - rotZ: 359.71 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mano a Mano (2) 14424c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mano a Mano (2) 14424c.yaml index 9b3fde8b6..02050bce8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mano a Mano (2) 14424c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mano a Mano (2) 14424c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545323 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60125\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spirit. Bold.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spirit. Bold.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 14424c Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 5.08 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Manual Dexterity (2) 982716.yaml b/unpacked/Bag All Player Cards 15bb07/Card Manual Dexterity (2) 982716.yaml index 172987fc5..47846a127 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Manual Dexterity (2) 982716.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Manual Dexterity (2) 982716.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538623 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60325\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"agilityIcons\": 3,\n \"cycle\": \"Investigator Packs\"\ - \n}" + ,\n \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"agilityIcons\": 3,\n\ + \ \"cycle\": \"Investigator Packs\"\n}" GUID: '982716' Grid: true GridProjection: false @@ -46,8 +45,8 @@ Transform: posX: 9.15 posY: 3.97 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Manual Dexterity 679b13.yaml b/unpacked/Bag All Player Cards 15bb07/Card Manual Dexterity 679b13.yaml index 6b726b6a3..cc2216403 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Manual Dexterity 679b13.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Manual Dexterity 679b13.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368504 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01092\",\n \"alternate_ids\": [\n \"01592\"\n ],\n \ \ \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"level\": 0,\n \"traits\"\ - : \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\"\ - : 2,\n \"cycle\": \"Core\"\n}" + : \"Innate.\",\n \"agilityIcons\": 2,\n \"cycle\": \"Core\"\n}" GUID: 679b13 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 269.99 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Map the Area 1760be.yaml b/unpacked/Bag All Player Cards 15bb07/Card Map the Area 1760be.yaml index 46c94e298..c4c58e143 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Map the Area 1760be.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Map the Area 1760be.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379041 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09048\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight. Tactic.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 1760be Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 16.67 posY: 3.4 posZ: 65.93 - rotX: 359.45 - rotY: 270.01 - rotZ: 359.4 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Marie Lambeau 11122f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Marie Lambeau 11122f.yaml index b16f8bf03..4a18b1011 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Marie Lambeau 11122f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Marie Lambeau 11122f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 272226 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2722': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 2.06 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Marie Lambeau b05c03.yaml b/unpacked/Bag All Player Cards 15bb07/Card Marie Lambeau b05c03.yaml index 0a62a901c..80091d4c9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Marie Lambeau b05c03.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Marie Lambeau b05c03.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 272705 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2727': BackIsHidden: true @@ -20,7 +20,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05006-m\",\n \"alternate_ids\": [\n \"99001-m\"\n ],\n\ - \ \"type\": \"Minicard\",\n \"traits\": \"\"\n}" + \ \"type\": \"Minicard\"\n}" GUID: b05c03 Grid: true GridProjection: false @@ -38,15 +38,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.89 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mariner's Compass 4e2d75.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mariner's Compass 4e2d75.yaml index 06d5b0ad5..70835c97e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mariner's Compass 4e2d75.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mariner's Compass 4e2d75.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553113 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5531': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07121\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Innsmouth\ - \ Conspiracy\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 4e2d75 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.04 posY: 3.85 posZ: -16.7 - rotX: 359.9 - rotY: 269.97 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mark Harrigan 01ac1b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mark Harrigan 01ac1b.yaml index af1336820..e6abb6af1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mark Harrigan 01ac1b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mark Harrigan 01ac1b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 270710 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2707': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.78 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mark Harrigan cc354d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mark Harrigan cc354d.yaml index f1c3ac5c3..31299bd7f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mark Harrigan cc354d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mark Harrigan cc354d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 259610 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2596': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"03001-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"03001-m\",\n \"type\": \"Minicard\"\n}" GUID: cc354d Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.85 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Marksmanship (1) 6a9021.yaml b/unpacked/Bag All Player Cards 15bb07/Card Marksmanship (1) 6a9021.yaml index 18d6d512a..3fcc35459 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Marksmanship (1) 6a9021.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Marksmanship (1) 6a9021.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226339 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04104\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 6a9021 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.84 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Martyr's Vambrace (3) c795c8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Martyr's Vambrace (3) c795c8.yaml index 2eaf65005..09ce755d5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Martyr's Vambrace (3) c795c8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Martyr's Vambrace (3) c795c8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379030 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,8 +21,7 @@ Description: Remnant of the Unknown DragSelectable: true GMNotes: "{\n \"id\": \"09037\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Charm. Armor.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\"\ - : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" + willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: c795c8 Grid: true GridProjection: false @@ -46,10 +45,10 @@ Tooltip: true Transform: posX: 17.02 posY: 3.37 - posZ: 66.01 - rotX: 359.78 + posZ: 66.02 + rotX: 0.0 rotY: 270.0 - rotZ: 359.84 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mauser C96 (2) 725690.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mauser C96 (2) 725690.yaml index 7d0bfde49..53a92b3f7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mauser C96 (2) 725690.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mauser C96 (2) 725690.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538619 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -21,10 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60321\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"\ - Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"\ + count\": 5,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n \ + \ ],\n \"cycle\": \"Investigator Packs\"\n}" GUID: '725690' Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.51 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mauser C96 f32343.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mauser C96 f32343.yaml index 0ebc49b3f..aad714a2c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mauser C96 f32343.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mauser C96 f32343.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538604 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60306\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"\ - uses\": [\n {\n \"count\": 5,\n \"type\": \"Ammo\",\n \"token\"\ - : \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\"\ + : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator\ + \ Packs\"\n}" GUID: f32343 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.08 posY: 3.68 posZ: -16.71 - rotX: 359.92 - rotY: 269.91 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Meat Cleaver a57f19.yaml b/unpacked/Bag All Player Cards 15bb07/Card Meat Cleaver a57f19.yaml index 0aec6a9f3..e29da100c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Meat Cleaver a57f19.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Meat Cleaver a57f19.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 277912 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2779': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05114\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\"\ - : \"The Circle Undone\"\n}" + willpowerIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: a57f19 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.0 posY: 3.85 - posZ: -16.69 - rotX: 0.3 - rotY: 270.01 - rotZ: 359.92 + posZ: -16.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mechanic's Wrench 598ba0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mechanic's Wrench 598ba0.yaml index 024188087..95d78fce4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mechanic's Wrench 598ba0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mechanic's Wrench 598ba0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379001 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08002\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Tool. Melee.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Tool. Melee.\",\n \"combatIcons\": 2,\n\ + \ \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 598ba0 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.67 posZ: -16.73 rotX: 0.0 - rotY: 269.8 - rotZ: 359.57 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Medical Student e419b4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Medical Student e419b4.yaml index 9334fa12c..3ef7ff3f0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Medical Student e419b4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Medical Student e419b4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378921 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08083\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Seeker\"\ ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic. Science.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"willpowerIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: e419b4 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 posY: 3.73 posZ: -16.69 - rotX: 359.78 - rotY: 270.01 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Medical Texts (2) 0d3bfa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Medical Texts (2) 0d3bfa.yaml index e98fa326b..9ddbdbb38 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Medical Texts (2) 0d3bfa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Medical Texts (2) 0d3bfa.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379028 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08038\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 0d3bfa Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.17 posZ: -16.74 - rotX: 359.94 - rotY: 269.8 - rotZ: 359.88 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Medical Texts 85822c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Medical Texts 85822c.yaml index eb1d60a7e..773bbd81e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Medical Texts 85822c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Medical Texts 85822c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587202 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5872': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01535\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n\ - }" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"combatIcons\"\ + : 1,\n \"cycle\": \"Core\"\n}" GUID: 85822c Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 78.81 posY: 3.32 - posZ: 7.66 - rotX: 359.05 - rotY: 269.99 - rotZ: 0.91 + posZ: 7.67 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Medical Texts ba16cb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Medical Texts ba16cb.yaml index ebea99dbb..929451fa1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Medical Texts ba16cb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Medical Texts ba16cb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368425 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01035\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n\ - }" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"combatIcons\"\ + : 1,\n \"cycle\": \"Core\"\n}" GUID: ba16cb Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 5.2 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Medico Della Peste 6179d5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Medico Della Peste 6179d5.yaml index 0a30b3027..499ede88b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Medico Della Peste 6179d5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Medico Della Peste 6179d5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 295602 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2956': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"82024\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\":\ - \ \"Standalone\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Item. Mask.\",\n \"willpowerIcons\": 1,\n \"\ + wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}" GUID: 6179d5 Grid: true GridProjection: false @@ -40,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: - posX: 8.99 - posY: 3.76 + posX: 8.98 + posY: 3.77 posZ: -16.69 - rotX: 359.97 - rotY: 270.01 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Meditative Trance ef46e9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Meditative Trance ef46e9.yaml index e759e4f00..1998bf7f1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Meditative Trance ef46e9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Meditative Trance ef46e9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379051 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08061\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Spirit.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: ef46e9 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.08 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mi-Go Weapon 2fc31c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mi-Go Weapon 2fc31c.yaml index c32345251..5e5bc8a61 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mi-Go Weapon 2fc31c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mi-Go Weapon 2fc31c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 233606 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2336': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"85031\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Weapon. Science.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Weapon. Science.\",\n \"combatIcons\": 1,\n\ + \ \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ + : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\ + \n}" GUID: 2fc31c Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.72 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Miasmic Crystal bad631.yaml b/unpacked/Bag All Player Cards 15bb07/Card Miasmic Crystal bad631.yaml index 4edc4c411..e96c24d71 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Miasmic Crystal bad631.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Miasmic Crystal bad631.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450309 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4503': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Strange Evidence DragSelectable: true GMNotes: "{\n \"id\": \"08617\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Item. Relic. Expedition.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"wildIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Item. Relic. Expedition.\",\n \"willpowerIcons\"\ + : 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ + : \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of\ + \ the Earth\"\n}" GUID: bad631 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 79.39 posY: 3.32 posZ: 7.89 - rotX: 359.37 - rotY: 269.99 - rotZ: 359.85 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Michael Leigh (5) 573765.yaml b/unpacked/Bag All Player Cards 15bb07/Card Michael Leigh (5) 573765.yaml index 7fd8de565..d7a54108a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Michael Leigh (5) 573765.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Michael Leigh (5) 573765.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378924 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: Experienced Hunter DragSelectable: true GMNotes: "{\n \"id\": \"08086\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Seeker\"\ - ,\n \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Ally. Detective.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Ally. Detective.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\ + \n}" GUID: '573765' Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 posY: 3.76 posZ: -16.69 - rotX: 359.75 - rotY: 270.01 - rotZ: 0.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mind Wipe (1) 5d6e57.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mind Wipe (1) 5d6e57.yaml index 1b880821b..5f00d3714 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mind Wipe (1) 5d6e57.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mind Wipe (1) 5d6e57.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230334 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01068\",\n \"alternate_ids\": [\n \"01568\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 1,\n\ - \ \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"\ - willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Spell.\",\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"\ + cycle\": \"Core\"\n}" GUID: 5d6e57 Grid: true GridProjection: false @@ -44,11 +44,11 @@ Tags: Tooltip: true Transform: posX: 32.98 - posY: 3.32 + posY: 3.33 posZ: -47.41 - rotX: 1.15 - rotY: 270.01 - rotZ: 1.69 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mind Wipe (3) e72762.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mind Wipe (3) e72762.yaml index 9c18a48bd..c79e494bd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mind Wipe (3) e72762.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mind Wipe (3) e72762.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230351 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"50008\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"Return to the Night of the Zealot\"\n}" + ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"Return to the Night of the Zealot\"\n\ + }" GUID: e72762 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 9.18 posY: 2.97 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mind over Matter (2) 9b1c5b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mind over Matter (2) 9b1c5b.yaml index 3cdaa2f43..9318ebb9a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mind over Matter (2) 9b1c5b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mind over Matter (2) 9b1c5b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538824 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60226\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\ + \n}" GUID: 9b1c5b Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 9.04 posY: 3.85 posZ: -16.7 - rotX: 359.9 - rotY: 269.97 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mind over Matter 8cf335.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mind over Matter 8cf335.yaml index a95938655..135df4925 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mind over Matter 8cf335.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mind over Matter 8cf335.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368408 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01036\",\n \"alternate_ids\": [\n \"01536\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"cost\": 1,\n \"level\": 0,\n\ - \ \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Insight.\",\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"\ + cycle\": \"Core\"\n}" GUID: 8cf335 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 19.07 posY: 3.37 posZ: -56.82 - rotX: 359.45 - rotY: 270.02 - rotZ: 0.03 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mind's Eye (2) ad58aa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mind's Eye (2) ad58aa.yaml index 87595d21d..6741ae2f8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mind's Eye (2) ad58aa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mind's Eye (2) ad58aa.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527237 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5272': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06328\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: ad58aa Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.17 - posY: 3.16 + posY: 3.15 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mineral Specimen 08dd86.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mineral Specimen 08dd86.yaml index 8cd688793..7be40ec82 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mineral Specimen 08dd86.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mineral Specimen 08dd86.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450310 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4503': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08618\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Item. Relic. Expedition.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"wildIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Item. Relic. Expedition.\",\n \"intellectIcons\"\ + : 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ + : \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of\ + \ the Earth\"\n}" GUID: 08dd86 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 79.27 posY: 3.32 posZ: 8.26 - rotX: 359.53 - rotY: 269.99 - rotZ: 359.41 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Minh Thi Phan 6c4c58.yaml b/unpacked/Bag All Player Cards 15bb07/Card Minh Thi Phan 6c4c58.yaml index 2851d3e74..228a6d150 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Minh Thi Phan 6c4c58.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Minh Thi Phan 6c4c58.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 270811 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2708': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.84 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Minh Thi Phan fe6430.yaml b/unpacked/Bag All Player Cards 15bb07/Card Minh Thi Phan fe6430.yaml index fc5dcb2ab..3167f44be 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Minh Thi Phan fe6430.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Minh Thi Phan fe6430.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 259711 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2597': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"03002-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"03002-m\",\n \"type\": \"Minicard\"\n}" GUID: fe6430 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.91 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Miskatonic Archaeology Funding (4) 1a1b58.yaml b/unpacked/Bag All Player Cards 15bb07/Card Miskatonic Archaeology Funding (4) 1a1b58.yaml index 2091e86da..0000dd558 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Miskatonic Archaeology Funding (4) 1a1b58.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Miskatonic Archaeology Funding (4) 1a1b58.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538830 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60232\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 4,\n \"traits\": \"Grant.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"level\": 4,\n \"traits\": \"Grant.\",\n \"permanent\": true,\n \"cycle\"\ + : \"Investigator Packs\"\n}" GUID: 1a1b58 Grid: true GridProjection: false @@ -39,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.08 posY: 3.73 posZ: -16.71 - rotX: 359.94 - rotY: 269.91 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Miss Doyle (1) e1aedf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Miss Doyle (1) e1aedf.yaml index 0a3744b63..1d89ff0ce 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Miss Doyle (1) e1aedf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Miss Doyle (1) e1aedf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 440623 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4406': BackIsHidden: true @@ -21,10 +21,10 @@ Description: Cat General of Ulthar DragSelectable: true GMNotes: "{\n \"id\": \"06030\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Ally. Creature. Dreamlands.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \ - \ \"count\": 1,\n \"id\": \"06031\"\n },\n {\n \"count\": 1,\n\ - \ \"id\": \"06032\"\n },\n {\n \"count\": 1,\n \"id\": \"06033\"\ - \n }\n ],\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"bonded\": [\n {\n \"count\": 1,\n \"id\": \"06031\"\n },\n\ + \ {\n \"count\": 1,\n \"id\": \"06032\"\n },\n {\n \"count\"\ + : 1,\n \"id\": \"06033\"\n }\n ],\n \"wildIcons\": 1,\n \"cycle\": \"\ + The Dream-Eaters\"\n}" GUID: e1aedf Grid: true GridProjection: false @@ -42,16 +42,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.72 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh (2) 3d57b4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh (2) 3d57b4.yaml index 9a60d88b6..e1b297ca2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh (2) 3d57b4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh (2) 3d57b4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545206 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5452': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"53007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 5,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Return to the Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"agilityIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the Forgotten\ + \ Age\"\n}" GUID: 3d57b4 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.82 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh (4) 68fce2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh (4) 68fce2.yaml index 5140d4a76..a82404fb9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh (4) 68fce2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh (4) 68fce2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230357 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04271\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Charge\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n\ - }" + ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 5,\n \"\ + type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + The Forgotten Age\"\n}" GUID: 68fce2 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.25 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh 5558f1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh 5558f1.yaml index f68cf45c2..4449d7a09 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh 5558f1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mists of R'lyeh 5558f1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230326 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04029\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"agilityIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n\ + }" GUID: 5558f1 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.01 posY: 3.85 posZ: -16.7 - rotX: 0.65 - rotY: 270.01 - rotZ: 359.84 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mitch Brown f91fd9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mitch Brown f91fd9.yaml index 6c490414e..a96cbfa3b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mitch Brown f91fd9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mitch Brown f91fd9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 377042 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3770': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\ - \n}" + ,\n \"cost\": 3,\n \"traits\": \"Ally. Wayfarer.\",\n \"wildIcons\": 2,\n \"\ + cycle\": \"The Forgotten Age\"\n}" GUID: f91fd9 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.06 posY: 3.84 posZ: -16.71 - rotX: 0.11 - rotY: 269.94 - rotZ: 359.9 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mk 1 Grenades (4) 0ab574.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mk 1 Grenades (4) 0ab574.yaml index 7deeca847..7de15c3d2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mk 1 Grenades (4) 0ab574.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mk 1 Grenades (4) 0ab574.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378617 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3786': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05273\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Item. Weapon. Ranged.\",\n \ - \ \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}" + \ \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ + : \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle\ + \ Undone\"\n}" GUID: 0ab574 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.94 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mob Enforcer b239d7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mob Enforcer b239d7.yaml index fb352ebd3..f7fb422b2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mob Enforcer b239d7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mob Enforcer b239d7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527416 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5274': BackIsHidden: true @@ -21,8 +21,7 @@ Description: Enemy DragSelectable: true GMNotes: "{\n \"id\": \"01101\",\n \"alternate_ids\": [\n \"01601\"\n ],\n \ \ \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Criminal.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n\ - \ \"cycle\": \"Core\"\n}" + ,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"Core\"\n}" GUID: b239d7 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 78.68 posY: 3.32 posZ: 26.53 - rotX: 359.47 - rotY: 269.99 - rotZ: 0.14 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mob Goons fc1506.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mob Goons fc1506.yaml index 14a56d200..23ce31159 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mob Goons fc1506.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mob Goons fc1506.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379002 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"08003\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Humanoid. Criminal.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Humanoid. Criminal.\",\n \"weakness\": true,\n \"cycle\": \"\ + Edge of the Earth\"\n}" GUID: fc1506 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 78.79 posY: 3.33 posZ: 8.12 - rotX: 359.7 - rotY: 270.01 - rotZ: 359.33 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Molly Maxwell 692ced.yaml b/unpacked/Bag All Player Cards 15bb07/Card Molly Maxwell 692ced.yaml index d32acda75..957e0b57a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Molly Maxwell 692ced.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Molly Maxwell 692ced.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 466112 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4661': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: The Exotic Morgana DragSelectable: true GMNotes: "{\n \"id\": \"98017\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"\ - wildIcons\": 1,\n \"cycle\": \"Promo\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Ally. Assistant.\",\n \"willpowerIcons\": 1,\n\ + \ \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Promo\"\n}" GUID: 692ced Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.06 posY: 3.84 posZ: -16.71 - rotX: 0.11 - rotY: 269.94 - rotZ: 359.9 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Moment of Respite (3) 523b76.yaml b/unpacked/Bag All Player Cards 15bb07/Card Moment of Respite (3) 523b76.yaml index b79116bed..03f4483aa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Moment of Respite (3) 523b76.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Moment of Respite (3) 523b76.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368525 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02273\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 523b76 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.78 posZ: -16.69 - rotX: 359.96 - rotY: 270.01 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Momentum (1) d753d7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Momentum (1) d753d7.yaml index d3523d64d..9874de52d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Momentum (1) d753d7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Momentum (1) d753d7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 380026 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3800': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06115\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 1,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"level\": 1,\n \"traits\": \"Practiced.\",\n \"wildIcons\": 1,\n \"cycle\"\ + : \"The Dream-Eaters\"\n}" GUID: d753d7 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.11 posY: 3.91 posZ: -16.72 - rotX: 359.98 - rotY: 269.84 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Money Talks (2) 67eb69.yaml b/unpacked/Bag All Player Cards 15bb07/Card Money Talks (2) 67eb69.yaml index c0e0932b6..012416f3d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Money Talks (2) 67eb69.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Money Talks (2) 67eb69.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379044 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08054\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Favor. Gambit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the\ - \ Earth\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Favor. Gambit.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 67eb69 Grid: true GridProjection: false @@ -45,9 +44,9 @@ Tooltip: true Transform: posX: 9.19 posY: 2.24 - posZ: -16.74 - rotX: 359.92 - rotY: 269.8 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Money Talks 276477.yaml b/unpacked/Bag All Player Cards 15bb07/Card Money Talks 276477.yaml index 27b064ccf..a95cd458c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Money Talks 276477.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Money Talks 276477.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527607 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5276': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05029\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Favor. Gambit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Favor. Gambit.\",\n \"cycle\"\ + : \"The Circle Undone\"\n}" GUID: '276477' Grid: true GridProjection: false @@ -43,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 9.13 - posY: 5.52 + posY: 5.51 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Monster Slayer (5) e21854.yaml b/unpacked/Bag All Player Cards 15bb07/Card Monster Slayer (5) e21854.yaml index ee5362799..594a692e5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Monster Slayer (5) e21854.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Monster Slayer (5) e21854.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226359 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02300\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 5,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \ - \ \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 5,\n \"traits\": \"Spirit.\",\n \"combatIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: e21854 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 3.8 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Monster Slayer 63b3e5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Monster Slayer 63b3e5.yaml index eee5852ce..1048c613f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Monster Slayer 63b3e5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Monster Slayer 63b3e5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545314 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60116\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 63b3e5 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 4.07 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Monstrous Transformation a49751.yaml b/unpacked/Bag All Player Cards 15bb07/Card Monstrous Transformation a49751.yaml index 80844b071..d1bcb44ef 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Monstrous Transformation a49751.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Monstrous Transformation a49751.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 296804 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2968': BackIsHidden: true @@ -20,8 +20,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"81030\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Talent.\",\n \"cycle\": \"Standalone\"\n}" GUID: a49751 Grid: true GridProjection: false @@ -39,16 +38,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.03 posY: 3.69 posZ: -16.7 - rotX: 359.82 - rotY: 269.98 - rotZ: 0.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Monterey Jack 46b145.yaml b/unpacked/Bag All Player Cards 15bb07/Card Monterey Jack 46b145.yaml index 5ebefc862..4001a5b2d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Monterey Jack 46b145.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Monterey Jack 46b145.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379502 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3795': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 53.27 posY: 3.14 posZ: 22.08 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 0.08 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Monterey Jack f74398.yaml b/unpacked/Bag All Player Cards 15bb07/Card Monterey Jack f74398.yaml index 369128c6b..749da72b5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Monterey Jack f74398.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Monterey Jack f74398.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379203 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3792': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"08007-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"08007-m\",\n \"type\": \"Minicard\"\n}" GUID: f74398 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.89 posZ: -18.15 - rotX: 359.91 - rotY: 269.95 - rotZ: 0.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Moon Pendant (2) 72deff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Moon Pendant (2) 72deff.yaml index 4d3820a59..1910cdd86 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Moon Pendant (2) 72deff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Moon Pendant (2) 72deff.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449531 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4495': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"54012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"cycle\": \"Return to the Circle Undone\"\n\ - }" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Charm.\",\n \"cycle\"\ + : \"Return to the Circle Undone\"\n}" GUID: 72deff Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.07 posY: 3.79 posZ: -16.71 - rotX: 0.47 - rotY: 269.92 - rotZ: 359.67 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Moonlight Ritual (2) ad3efc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Moonlight Ritual (2) ad3efc.yaml index 6f8cf3499..6c7d45993 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Moonlight Ritual (2) ad3efc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Moonlight Ritual (2) ad3efc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379117 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09093\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"\ - wildIcons\": 1\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spell. Insight.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\ + \n}" GUID: ad3efc Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 16.74 posY: 3.34 posZ: 65.49 - rotX: 358.49 - rotY: 269.96 - rotZ: 2.87 + rotX: 358.0 + rotY: 270.0 + rotZ: 3.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Moonlight Ritual 1cd2bd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Moonlight Ritual 1cd2bd.yaml index cab54b09c..474f756b9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Moonlight Ritual 1cd2bd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Moonlight Ritual 1cd2bd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230306 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02267\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spell. Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spell. Insight.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 1cd2bd Grid: true GridProjection: false @@ -45,10 +44,10 @@ Tooltip: true Transform: posX: 9.14 posY: 3.73 - posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Moonstone 0d006f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Moonstone 0d006f.yaml index 87a462dd7..3bc6973e8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Moonstone 0d006f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Moonstone 0d006f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 447731 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4477': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06203\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Relic. Dreamlands.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + \ \"cycle\": \"The Dream-Eaters\"\n}" GUID: 0d006f Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.05 posY: 3.83 posZ: -16.7 - rotX: 359.77 - rotY: 269.95 - rotZ: 0.11 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Motivational Speech 1b2331.yaml b/unpacked/Bag All Player Cards 15bb07/Card Motivational Speech 1b2331.yaml index 67e3cae29..8df268518 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Motivational Speech 1b2331.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Motivational Speech 1b2331.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379600 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3796': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09028\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 1b2331 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 16.93 posY: 3.37 posZ: 65.89 - rotX: 359.35 + rotX: 359.0 rotY: 270.0 - rotZ: 359.77 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Moxie (1) 5fe780.yaml b/unpacked/Bag All Player Cards 15bb07/Card Moxie (1) 5fe780.yaml index 09658460f..c9b8c1480 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Moxie (1) 5fe780.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Moxie (1) 5fe780.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315235 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03111\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Talent. Composure.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" + willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\ + \n}" GUID: 5fe780 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.94 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Moxie (3) 6b3a27.yaml b/unpacked/Bag All Player Cards 15bb07/Card Moxie (3) 6b3a27.yaml index 38c7463a1..2a29a915a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Moxie (3) 6b3a27.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Moxie (3) 6b3a27.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379046 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08056\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Talent. Composure.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"agilityIcons\"\ - : 2,\n \"cycle\": \"Edge of the Earth\"\n}" + willpowerIcons\": 2,\n \"agilityIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\ + \n}" GUID: 6b3a27 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.19 posY: 2.27 posZ: -16.73 - rotX: 359.94 - rotY: 269.8 - rotZ: 359.91 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mr. Rook (Taboo) 7fe728.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mr. Rook (Taboo) 7fe728.yaml index d622425b2..fb4846f0a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mr. Rook (Taboo) 7fe728.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mr. Rook (Taboo) 7fe728.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558212 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Dealer in Secrets DragSelectable: true GMNotes: "{\n \"id\": \"05153-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"\ - count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n\ - \ ],\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n\ + }" GUID: 7fe728 Grid: true GridProjection: false @@ -48,9 +48,9 @@ Transform: posX: 21.62 posY: 4.33 posZ: -59.25 - rotX: 0.06 - rotY: 269.81 - rotZ: 2.68 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mr. Rook 1339b0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mr. Rook 1339b0.yaml index 74c5e8725..71653d80d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mr. Rook 1339b0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mr. Rook 1339b0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 277811 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2778': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05153\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"\ - count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n\ - \ ],\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n\ + }" GUID: 1339b0 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.0 posY: 3.67 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mysteries Remain 274daa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mysteries Remain 274daa.yaml index 337e95d56..9bdda5b32 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mysteries Remain 274daa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mysteries Remain 274daa.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 370046 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3700': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"98005\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"Promo\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Insight.\",\n \"intellectIcons\": 1,\n \"combatIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"Promo\"\n}" GUID: 274daa Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.14 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mysterious Raven 59e40d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mysterious Raven 59e40d.yaml index 4bca02293..00742908d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mysterious Raven 59e40d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mysterious Raven 59e40d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550807 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60509\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Ally. Creature.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Ally. Creature.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 59e40d Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.78 posZ: -16.69 - rotX: 359.96 - rotY: 270.01 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Mystifying Song 3b8cb7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Mystifying Song 3b8cb7.yaml index e50b154f8..e29eb06a0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Mystifying Song 3b8cb7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Mystifying Song 3b8cb7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 444451 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4444': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05018\",\n \"alternate_ids\": [\n \"99002\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"cost\": 3,\n \"traits\"\ - : \"Spell. Song.\",\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\"\ - : 2,\n \"cycle\": \"The Circle Undone\"\n}" + : \"Spell. Song.\",\n \"wildIcons\": 2,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 3b8cb7 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.14 posY: 3.69 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Naomi O'Bannion 7f7ecc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Naomi O'Bannion 7f7ecc.yaml index 6f5579b4f..f375515d0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Naomi O'Bannion 7f7ecc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Naomi O'Bannion 7f7ecc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 233135 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2331': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Ruthless Tactician DragSelectable: true GMNotes: "{\n \"id\": \"51052\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 5,\n \"traits\": \"Ally. Criminal. Syndicate.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"combatIcons\": 2,\n\ - \ \"cycle\": \"Return to The Dunwich Legacy\"\n}" + ,\n \"cost\": 5,\n \"traits\": \"Ally. Criminal. Syndicate.\",\n \"intellectIcons\"\ + : 2,\n \"combatIcons\": 2,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}" GUID: 7f7ecc Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.05 posY: 3.87 posZ: -16.7 - rotX: 359.79 - rotY: 269.96 - rotZ: 0.1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Narcolepsy 57e648.yaml b/unpacked/Bag All Player Cards 15bb07/Card Narcolepsy 57e648.yaml index a72c849ff..8d64ccd74 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Narcolepsy 57e648.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Narcolepsy 57e648.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 438127 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4381': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"06037\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 57e648 Grid: true GridProjection: false @@ -46,7 +46,7 @@ Transform: posY: 3.74 posZ: -16.69 rotX: 0.0 - rotY: 270.01 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Narrow Escape f6ff32.yaml b/unpacked/Bag All Player Cards 15bb07/Card Narrow Escape f6ff32.yaml index de82a7b13..7005d323f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Narrow Escape f6ff32.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Narrow Escape f6ff32.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368708 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3687': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03267\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"agilityIcons\"\ + : 2,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: f6ff32 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 4.37 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nathaniel Cho 1806e5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nathaniel Cho 1806e5.yaml index 238261e77..a709b36d5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nathaniel Cho 1806e5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nathaniel Cho 1806e5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 274216 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2742': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"60101-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"60101-m\",\n \"type\": \"Minicard\"\n}" GUID: 1806e5 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.8 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nathaniel Cho 65588a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nathaniel Cho 65588a.yaml index 3a8f53cba..fc28e2f7d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nathaniel Cho 65588a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nathaniel Cho 65588a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 234900 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2349': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.61 posZ: -73.09 - rotX: 359.98 + rotX: 0.0 rotY: 180.0 - rotZ: 359.99 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nature of the Beast (1) 9c4015.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nature of the Beast (1) 9c4015.yaml index ff45ac595..57c3c319d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nature of the Beast (1) 9c4015.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nature of the Beast (1) 9c4015.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379135 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09111\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 1,\n \"traits\": \"Dilemma. Insight.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"level\": 1,\n \"traits\": \"Dilemma. Insight.\",\n \"cycle\": \"The Scarlet\ + \ Keys\"\n}" GUID: 9c4015 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359.22 + rotX: 359.0 rotY: 270.0 - rotZ: 0.86 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nautical Prowess 9d6e9a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nautical Prowess 9d6e9a.yaml index 9a9e1b204..68aea16af 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nautical Prowess 9d6e9a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nautical Prowess 9d6e9a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 444348 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4443': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"98014\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"Promo\"\n}" + ,\n \"traits\": \"Innate. Developed.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"Promo\"\n}" GUID: 9d6e9a Grid: true GridProjection: false @@ -43,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.0 + posX: 8.99 posY: 3.75 posZ: -16.69 - rotX: 359.66 - rotY: 270.01 - rotZ: 0.08 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Neither Rain nor Snow 6da7c4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Neither Rain nor Snow 6da7c4.yaml index 8a19f66a7..3751ea81d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Neither Rain nor Snow 6da7c4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Neither Rain nor Snow 6da7c4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550800 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60502\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 3,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"traits\": \"Innate. Developed.\",\n \"wildIcons\": 3,\n \"cycle\": \"Investigator\ + \ Packs\"\n}" GUID: 6da7c4 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 5.41 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nephthys (4) 5659d1.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Nephthys (4) 5659d1.ttslua index ab3fe3f1b..d819038d5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nephthys (4) 5659d1.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Nephthys (4) 5659d1.ttslua @@ -78,4 +78,4 @@ function getChaosBag() end if chaosbag == nil then printToAll("No chaos bag found") end return chaosbag -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nephthys (4) 5659d1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nephthys (4) 5659d1.yaml index 7a404b26f..dc9490ba6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nephthys (4) 5659d1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nephthys (4) 5659d1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449601 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4496': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Huntress of Bast DragSelectable: true GMNotes: "{\n \"id\": \"07262\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Ally. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 2,\n\ - \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Ally. Blessed.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 5659d1 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.0 posY: 3.92 posZ: -16.7 - rotX: 0.52 - rotY: 270.01 - rotZ: 359.87 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Newspaper (2) 9bcdee.yaml b/unpacked/Bag All Player Cards 15bb07/Card Newspaper (2) 9bcdee.yaml index 50cbc0e6a..a7ead8341 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Newspaper (2) 9bcdee.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Newspaper (2) 9bcdee.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368847 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03313\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Item.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\ - \n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Item.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 9bcdee Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.95 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Newspaper ee20c9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Newspaper ee20c9.yaml index 0f6700958..823f63c52 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Newspaper ee20c9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Newspaper ee20c9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368826 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02155\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\ - \n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: ee20c9 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.95 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nightmare Bauble (3) d6f6f1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nightmare Bauble (3) d6f6f1.yaml index dc4c5e961..276205959 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nightmare Bauble (3) d6f6f1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nightmare Bauble (3) d6f6f1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448735 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4487': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06330\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Charm. Cursed.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\"\ - : 3,\n \"id\": \"06331\"\n }\n ],\n \"willpowerIcons\": 1,\n \"wildIcons\"\ - : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + bonded\": [\n {\n \"count\": 3,\n \"id\": \"06331\"\n }\n ],\n\ + \ \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ + \n}" GUID: d6f6f1 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 3.6 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.94 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nihilism fc4168.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nihilism fc4168.yaml index 4472d41e3..bc4353867 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nihilism fc4168.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nihilism fc4168.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538702 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"60404\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: fc4168 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.02 posY: 4.04 posZ: -16.7 - rotX: 359.82 - rotY: 269.99 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nikola Tesla 03695f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nikola Tesla 03695f.yaml index e4f412cc6..906180aa2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nikola Tesla 03695f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nikola Tesla 03695f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558002 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5580': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: Renowned Inventor DragSelectable: true GMNotes: "{\n \"id\": \"87014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Scientist. Ally. Past.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"\ - wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Scientist. Ally. Past.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\ + \n}" GUID: 03695f Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 79.06 posY: 3.33 posZ: 8.09 - rotX: 359.48 + rotX: 359.0 rotY: 270.0 - rotZ: 359.43 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nimble b8843c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nimble b8843c.yaml index 988a0463f..4e3ff73f8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nimble b8843c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nimble b8843c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538615 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60317\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"agilityIcons\": 1,\n \"cycle\"\ + : \"Investigator Packs\"\n}" GUID: b8843c Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.17 posY: 3.08 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nine of Rods (3) c7fe4a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nine of Rods (3) c7fe4a.yaml index b44578358..a6bbd0e36 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nine of Rods (3) c7fe4a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nine of Rods (3) c7fe4a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449529 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4495': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Every Trial a Lesson DragSelectable: true GMNotes: "{\n \"id\": \"54009\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tarot.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"cycle\": \"Return to the Circle Undone\"\n\ - }" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tarot.\",\n \"cycle\": \"Return\ + \ to the Circle Undone\"\n}" GUID: c7fe4a Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.54 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nkosi Mabati (3) 6c5628.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nkosi Mabati (3) 6c5628.yaml index 2d3c4d0f2..513e8081e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nkosi Mabati (3) 6c5628.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nkosi Mabati (3) 6c5628.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378929 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Enigmatic Warlock DragSelectable: true GMNotes: "{\n \"id\": \"08091\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\"\ - ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"Edge\ - \ of the Earth\"\n}" + ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Ally. Sorcerer.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 6c5628 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.8 posZ: -16.73 - rotX: 359.89 - rotY: 269.8 - rotZ: 0.16 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card No Stone Unturned (5) 1f3f16.yaml b/unpacked/Bag All Player Cards 15bb07/Card No Stone Unturned (5) 1f3f16.yaml index 737977ffb..45b8ef5d7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card No Stone Unturned (5) 1f3f16.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card No Stone Unturned (5) 1f3f16.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430658 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03307\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 5,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 2,\n \"level\": 5,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 1f3f16 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 5.54 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card No Stone Unturned 44cf4a.yaml b/unpacked/Bag All Player Cards 15bb07/Card No Stone Unturned 44cf4a.yaml index 0f5e0e344..afdc92632 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card No Stone Unturned 44cf4a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card No Stone Unturned 44cf4a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368415 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03026\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to\ - \ Carcosa\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 44cf4a Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 5.03 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Norman Withers (promo version) 31fe5e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Norman Withers (promo version) 31fe5e.yaml index c0f9eee8e..d8b61da7e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Norman Withers (promo version) 31fe5e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Norman Withers (promo version) 31fe5e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 272607 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2726': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"08004-promo-m\",\n \"type\": \"Minicard\",\n \"traits\"\ - : \"\"\n}" +GMNotes: "{\n \"id\": \"08004-promo-m\",\n \"type\": \"Minicard\"\n}" GUID: 31fe5e Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 2.11 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Norman Withers (promo version) 70d488.yaml b/unpacked/Bag All Player Cards 15bb07/Card Norman Withers (promo version) 70d488.yaml index a7b74de42..8571527de 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Norman Withers (promo version) 70d488.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Norman Withers (promo version) 70d488.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 440900 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4409': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.49 posZ: -73.09 - rotX: 359.87 + rotX: 0.0 rotY: 180.0 - rotZ: 0.02 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Norman Withers a5d9bb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Norman Withers a5d9bb.yaml index f4e6615dc..822029ca0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Norman Withers a5d9bb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Norman Withers a5d9bb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379204 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3792': BackIsHidden: true @@ -19,8 +19,8 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"08004-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"08004-m\",\n \"alternate_ids\": [\n \"98007-m\"\n ],\n\ + \ \"type\": \"Minicard\"\n}" GUID: a5d9bb Grid: true GridProjection: false @@ -38,15 +38,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.99 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Norman Withers e0a155.yaml b/unpacked/Bag All Player Cards 15bb07/Card Norman Withers e0a155.yaml index 97b3f7271..06b171684 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Norman Withers e0a155.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Norman Withers e0a155.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379501 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3795': BackIsHidden: true @@ -19,10 +19,10 @@ CustomDeck: UniqueBack: true Description: The Astronomer DragSelectable: true -GMNotes: "{\n \"id\": \"08004\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Miskatonic.\",\n \"willpowerIcons\": 4,\n \"intellectIcons\"\ - : 5,\n \"combatIcons\": 2,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the\ - \ Earth\"\n}" +GMNotes: "{\n \"id\": \"08004\",\n \"alternate_ids\": [\n \"98007\"\n ],\n \ + \ \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\ + ,\n \"willpowerIcons\": 4,\n \"intellectIcons\": 5,\n \"combatIcons\": 2,\n \ + \ \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: e0a155 Grid: true GridProjection: false @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 - posY: 1.52 + posY: 1.51 posZ: -73.09 - rotX: 0.19 + rotX: 0.0 rotY: 180.0 - rotZ: 359.95 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Not without a fight! d1d7fa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Not without a fight! d1d7fa.yaml index 2e251a281..fb56e4502 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Not without a fight! d1d7fa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Not without a fight! d1d7fa.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368803 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03272\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"willpowerIcons\": 1,\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: d1d7fa Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.06 posY: 3.81 posZ: -16.71 - rotX: 0.05 - rotY: 269.94 - rotZ: 359.93 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Nothing Left to Lose (3) f0389b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Nothing Left to Lose (3) f0389b.yaml index 4e757a329..e60ede3f7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Nothing Left to Lose (3) f0389b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Nothing Left to Lose (3) f0389b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448738 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4487': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06284\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: f0389b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.17 posY: 3.2 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Obfuscation 5ec6d0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Obfuscation 5ec6d0.yaml index e1f100afe..5d0ac1b98 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Obfuscation 5ec6d0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Obfuscation 5ec6d0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587421 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5874': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07027\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"combatIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\ + \n}" GUID: 5ec6d0 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.04 posY: 3.95 posZ: -16.7 - rotX: 359.88 - rotY: 269.97 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Obscure Studies c5d8a9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Obscure Studies c5d8a9.yaml index cf824ed52..1ba25e671 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Obscure Studies c5d8a9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Obscure Studies c5d8a9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 588202 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5882': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07008\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 3,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Insight.\",\n \"wildIcons\": 3,\n \"cycle\"\ + : \"The Innsmouth Conspiracy\"\n}" GUID: c5d8a9 Grid: true GridProjection: false @@ -45,8 +45,8 @@ Transform: posX: 9.08 posY: 3.73 posZ: -16.71 - rotX: 359.94 - rotY: 269.91 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Observed (4) cf5ac8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Observed (4) cf5ac8.yaml index 3190f1e6a..92a3d7a44 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Observed (4) cf5ac8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Observed (4) cf5ac8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449533 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4495': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"54013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"level\": 4,\n \"traits\": \"Blessed.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"Return to the Circle Undone\"\n}" + ,\n \"level\": 4,\n \"traits\": \"Blessed.\",\n \"permanent\": true,\n \"cycle\"\ + : \"Return to the Circle Undone\"\n}" GUID: cf5ac8 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.53 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Obsessive a2e7d7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Obsessive a2e7d7.yaml index e09190105..658da9b47 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Obsessive a2e7d7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Obsessive a2e7d7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538802 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"60204\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - basicWeaknessCount\": 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"traits\": \"Flaw.\",\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n\ + \ \"cycle\": \"Investigator Packs\"\n}" GUID: a2e7d7 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.08 posY: 3.76 posZ: -16.71 - rotX: 359.97 - rotY: 269.9 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Obsidian Bracelet 972250.yaml b/unpacked/Bag All Player Cards 15bb07/Card Obsidian Bracelet 972250.yaml index 834f223ba..3f54f28ae 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Obsidian Bracelet 972250.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Obsidian Bracelet 972250.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379017 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09024\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: '972250' Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 13.24 posY: 2.21 posZ: 49.73 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Occult Evidence 3586e6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Occult Evidence 3586e6.yaml index 60834ba12..e33f83889 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Occult Evidence 3586e6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Occult Evidence 3586e6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 582702 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5827': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06008\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Insight. Research.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n\ - }" + ,\n \"cost\": 0,\n \"traits\": \"Insight. Research.\",\n \"wildIcons\": 1,\n\ + \ \"cycle\": \"The Dream-Eaters\"\n}" GUID: 3586e6 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 5.29 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Occult Invocation 010509.yaml b/unpacked/Bag All Player Cards 15bb07/Card Occult Invocation 010509.yaml index 28e197256..0f76cd3e8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Occult Invocation 010509.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Occult Invocation 010509.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538815 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60217\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 010509 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 5.56 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Occult Lexicon (3) 71d99c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Occult Lexicon (3) 71d99c.yaml index 6f078fd37..1b966c2ae 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Occult Lexicon (3) 71d99c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Occult Lexicon (3) 71d99c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449524 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4495': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"54004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Tome. Occult.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\"\ - : 3,\n \"id\": \"05317\"\n }\n ],\n \"intellectIcons\": 2,\n \"cycle\"\ - : \"Return to the Circle Undone\"\n}" + bonded\": [\n {\n \"count\": 3,\n \"id\": \"05317\"\n }\n ],\n\ + \ \"intellectIcons\": 2,\n \"cycle\": \"Return to the Circle Undone\"\n}" GUID: 71d99c Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.69 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Occult Lexicon 5d6728.yaml b/unpacked/Bag All Player Cards 15bb07/Card Occult Lexicon 5d6728.yaml index 60799d065..1a95fedf0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Occult Lexicon 5d6728.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Occult Lexicon 5d6728.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 592120 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5921': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05316\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome. Occult.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\"\ - : 3,\n \"id\": \"05317\"\n }\n ],\n \"intellectIcons\": 1,\n \"cycle\"\ - : \"The Circle Undone\"\n}" + bonded\": [\n {\n \"count\": 3,\n \"id\": \"05317\"\n }\n ],\n\ + \ \"intellectIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 5d6728 Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.05 posY: 3.87 posZ: -16.7 - rotX: 359.79 - rotY: 269.96 - rotZ: 0.1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Occult Scraps 6aea76.yaml b/unpacked/Bag All Player Cards 15bb07/Card Occult Scraps 6aea76.yaml index ef374d2ee..aa1eb19ef 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Occult Scraps 6aea76.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Occult Scraps 6aea76.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587707 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5877': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"07013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Item.\",\n \"weakness\": true,\n \"cycle\"\ + : \"The Innsmouth Conspiracy\"\n}" GUID: 6aea76 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.17 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Occult Theory (1) 49a338.yaml b/unpacked/Bag All Player Cards 15bb07/Card Occult Theory (1) 49a338.yaml index 534da567b..6dfe03cb7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Occult Theory (1) 49a338.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Occult Theory (1) 49a338.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379055 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08065\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\"\ - ,\n \"level\": 1,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"dynamicIcons\": true,\n \"cycle\": \"Edge of the Earth\"\ - \n}" + ,\n \"level\": 1,\n \"traits\": \"Practiced. Expert.\",\n \"dynamicIcons\": true,\n\ + \ \"cycle\": \"Edge of the Earth\"\n}" GUID: 49a338 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.19 posY: 2.32 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Offer You Cannot Refuse e27c93.yaml b/unpacked/Bag All Player Cards 15bb07/Card Offer You Cannot Refuse e27c93.yaml index 3f49bc150..237b8017a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Offer You Cannot Refuse e27c93.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Offer You Cannot Refuse e27c93.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545212 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5452': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"53013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - basicWeaknessCount\": 1,\n \"cycle\": \"Return to the Forgotten Age\"\n}" + ,\n \"traits\": \"Pact.\",\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n\ + \ \"cycle\": \"Return to the Forgotten Age\"\n}" GUID: e27c93 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 3.84 posZ: -16.72 - rotX: 0.21 - rotY: 269.8 - rotZ: 359.84 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Old Book of Lore (3) 8a0060.yaml b/unpacked/Bag All Player Cards 15bb07/Card Old Book of Lore (3) 8a0060.yaml index 2388570f5..fbfa96b42 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Old Book of Lore (3) 8a0060.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Old Book of Lore (3) 8a0060.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448837 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4488': BackIsHidden: true @@ -21,10 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06279\",\n \"alternate_ids\": [\n \"01686\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 3,\n\ - \ \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \ - \ \"count\": 2,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n \ - \ }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}" + \ \"traits\": \"Item. Tome.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 8a0060 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 18.18 posY: 3.38 posZ: -57.02 - rotX: 0.13 + rotX: 0.0 rotY: 270.0 - rotZ: 0.24 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Old Book of Lore 063fd8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Old Book of Lore 063fd8.yaml index 3b01aa800..a69e65200 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Old Book of Lore 063fd8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Old Book of Lore 063fd8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368431 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01031\",\n \"alternate_ids\": [\n \"01531\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 3,\n \"level\": 0,\n\ - \ \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Item. Tome.\",\n \"willpowerIcons\": 1,\n \"cycle\": \"Core\"\ + \n}" GUID: 063fd8 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 19.69 posY: 3.37 posZ: -56.67 - rotX: 359.57 - rotY: 270.02 - rotZ: 359.92 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Old Hunting Rifle (3) 44a37f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Old Hunting Rifle (3) 44a37f.yaml index 676e87fdf..9ede6c483 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Old Hunting Rifle (3) 44a37f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Old Hunting Rifle (3) 44a37f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 314800 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3148': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04273\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Weapon. Firearm.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}" + \ \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\"\ + : 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"\ + cycle\": \"The Forgotten Age\"\n}" GUID: 44a37f Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.8 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Old Keyring (3) e7d988.yaml b/unpacked/Bag All Player Cards 15bb07/Card Old Keyring (3) e7d988.yaml index 229160636..680055b60 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Old Keyring (3) e7d988.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Old Keyring (3) e7d988.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379141 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09117\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Tool.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Key\",\n \"token\": \"resource\"\n\ - \ }\n ]\n}" + ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Tool.\",\n \"intellectIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Key\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: e7d988 Grid: true GridProjection: false @@ -46,11 +45,11 @@ Tags: Tooltip: true Transform: posX: 16.72 - posY: 3.37 + posY: 3.38 posZ: 65.64 - rotX: 359.86 + rotX: 0.0 rotY: 270.0 - rotZ: 0.18 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Old Keyring 5888da.yaml b/unpacked/Bag All Player Cards 15bb07/Card Old Keyring 5888da.yaml index c2e3a2958..1ed779f59 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Old Keyring 5888da.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Old Keyring 5888da.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550805 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60507\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 2,\n \"type\": \"Key\",\n \"token\": \"resource\"\n\ - \ }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Key\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" GUID: 5888da Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.73 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Old Shotgun (2) 7eb1ec.yaml b/unpacked/Bag All Player Cards 15bb07/Card Old Shotgun (2) 7eb1ec.yaml index 401b03b60..06b9cc3f4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Old Shotgun (2) 7eb1ec.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Old Shotgun (2) 7eb1ec.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378926 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08088\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue\"\ ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Firearm.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 0,\n \"type\": \"Ammo\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + \ \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 0,\n \"type\"\ + : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of\ + \ the Earth\"\n}" GUID: 7eb1ec Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.19 posY: 2.42 posZ: -16.73 - rotX: 359.88 - rotY: 269.8 - rotZ: 0.25 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Olive McBride 9683d0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Olive McBride 9683d0.yaml index 435828a16..587af9f70 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Olive McBride 9683d0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Olive McBride 9683d0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230321 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Will Try Anything Once DragSelectable: true GMNotes: "{\n \"id\": \"04197\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Witch.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Ally. Witch.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 9683d0 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.79 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card On Your Own (3) 2ebdf1.yaml b/unpacked/Bag All Player Cards 15bb07/Card On Your Own (3) 2ebdf1.yaml index c22ff15b4..f955ee05a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card On Your Own (3) 2ebdf1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card On Your Own (3) 2ebdf1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545209 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5452': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Permanent DragSelectable: true GMNotes: "{\n \"id\": \"53010\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"Return to the Forgotten Age\"\n}" + ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"Return to the Forgotten Age\"\n}" GUID: 2ebdf1 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.18 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card On Your Own (3) b0c61c.yaml b/unpacked/Bag All Player Cards 15bb07/Card On Your Own (3) b0c61c.yaml index 4b55af379..c9dee8a6b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card On Your Own (3) b0c61c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card On Your Own (3) b0c61c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368858 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04236\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: b0c61c Grid: true GridProjection: false @@ -40,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.15 posY: 4.14 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card On the Hunt (3) a336de.yaml b/unpacked/Bag All Player Cards 15bb07/Card On the Hunt (3) a336de.yaml index 5405efb11..af59644b1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card On the Hunt (3) a336de.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card On the Hunt (3) a336de.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379018 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08028\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Tactic.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the\ + \ Earth\"\n}" GUID: a336de Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 9.2 posY: 2.13 posZ: -16.74 - rotX: 359.91 - rotY: 269.79 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card On the Hunt a13ca4.yaml b/unpacked/Bag All Player Cards 15bb07/Card On the Hunt a13ca4.yaml index 5f3b8f853..76ecc433e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card On the Hunt a13ca4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card On the Hunt a13ca4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226314 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03263\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: a13ca4 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.03 posY: 3.69 posZ: -16.7 - rotX: 359.89 - rotY: 269.98 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card On the Lam ea6d44.yaml b/unpacked/Bag All Player Cards 15bb07/Card On the Lam ea6d44.yaml index bce6dc671..2512862c7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card On the Lam ea6d44.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card On the Lam ea6d44.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 586823 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5868': BackIsHidden: true @@ -21,8 +21,8 @@ Description: Signature DragSelectable: true GMNotes: "{\n \"id\": \"01010\",\n \"alternate_ids\": [\n \"01510\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"cost\": 1,\n \"traits\"\ - : \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\"\ - : 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 2,\n \"cycle\": \"Core\"\n}" + : \"Tactic.\",\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\"\ + : 2,\n \"cycle\": \"Core\"\n}" GUID: ea6d44 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 269.99 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card On the Mend ac3502.yaml b/unpacked/Bag All Player Cards 15bb07/Card On the Mend ac3502.yaml index 315a2e598..6d7180ee7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card On the Mend ac3502.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card On the Mend ac3502.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587703 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5877': BackIsHidden: true @@ -19,9 +19,9 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09006\",\n \"type\": \"Skill\",\n \"traits\": \"Innate.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\"\ - : \"The Scarlet Keys\"\n}" +GMNotes: "{\n \"id\": \"09006\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ + ,\n \"traits\": \"Innate.\",\n \"wildIcons\": 2,\n \"cycle\": \"The Scarlet Keys\"\ + \n}" GUID: ac3502 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 15.8 posY: 2.21 posZ: 59.63 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card On the Trail (1) 4e4179.yaml b/unpacked/Bag All Player Cards 15bb07/Card On the Trail (1) 4e4179.yaml index 78836abaf..15dbf4aba 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card On the Trail (1) 4e4179.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card On the Trail (1) 4e4179.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378922 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08084\",\n \"type\": \"Event\",\n \"class\": \"Guardian|Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Insight. Tactic.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 4e4179 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.19 posY: 2.41 posZ: -16.73 - rotX: 359.88 - rotY: 269.8 - rotZ: 0.25 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card On the Trail (3) b94090.yaml b/unpacked/Bag All Player Cards 15bb07/Card On the Trail (3) b94090.yaml index 8ad6fdaea..db6505406 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card On the Trail (3) b94090.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card On the Trail (3) b94090.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378923 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08085\",\n \"type\": \"Event\",\n \"class\": \"Guardian|Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"combatIcons\": 1,\n\ - \ \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Insight. Tactic.\",\n \"intellectIcons\"\ + : 2,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the\ + \ Earth\"\n}" GUID: b94090 Grid: true GridProjection: false @@ -43,12 +43,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.18 + posX: 9.19 posY: 2.6 posZ: -16.73 - rotX: 359.88 - rotY: 269.8 - rotZ: 0.21 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card One in the Chamber 919856.yaml b/unpacked/Bag All Player Cards 15bb07/Card One in the Chamber 919856.yaml index 7b974c927..d6cb7882c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card One in the Chamber 919856.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card One in the Chamber 919856.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379022 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09029\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Fortune. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 1,\n \"type\": \"Ammo\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Fortune. Tactic.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 1,\n \"\ + type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The\ + \ Scarlet Keys\"\n}" GUID: '919856' Grid: true GridProjection: false @@ -44,12 +44,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 17.03 + posX: 17.02 posY: 3.33 posZ: 65.98 - rotX: 356.41 - rotY: 270.07 - rotZ: 357.87 + rotX: 356.0 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card One-Two Punch (5) 8ffa44.yaml b/unpacked/Bag All Player Cards 15bb07/Card One-Two Punch (5) 8ffa44.yaml index 68c04891a..e495f50f6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card One-Two Punch (5) 8ffa44.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card One-Two Punch (5) 8ffa44.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545330 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60132\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 5,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 4,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 5,\n \"traits\": \"Spirit. Tactic.\",\n \"combatIcons\"\ + : 4,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 8ffa44 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.14 posY: 3.73 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card One-Two Punch 22bb1e.yaml b/unpacked/Bag All Player Cards 15bb07/Card One-Two Punch 22bb1e.yaml index 3e0d188fb..940d2ac1a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card One-Two Punch 22bb1e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card One-Two Punch 22bb1e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545315 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60117\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"combatIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 22bb1e Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 4.06 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Onyx Pentacle (4) 647c62.yaml b/unpacked/Bag All Player Cards 15bb07/Card Onyx Pentacle (4) 647c62.yaml index 9bb230955..9f7d17588 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Onyx Pentacle (4) 647c62.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Onyx Pentacle (4) 647c62.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379122 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09098\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 2\n}" + ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Item. Charm.\",\n \"agilityIcons\"\ + : 2,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 647c62 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 16.74 posY: 3.35 posZ: 65.49 - rotX: 359.01 - rotY: 269.98 - rotZ: 1.91 + rotX: 359.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Onyx Pentacle 95f4b0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Onyx Pentacle 95f4b0.yaml index 77d958d28..7b84eeea7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Onyx Pentacle 95f4b0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Onyx Pentacle 95f4b0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379109 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09085\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 95f4b0 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 358.55 - rotY: 270.02 - rotZ: 358.43 + rotX: 359.0 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Oops! (2) 70772b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Oops! (2) 70772b.yaml index f181710ae..f4eea59b8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Oops! (2) 70772b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Oops! (2) 70772b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 314905 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3149': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"51009\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Fortune.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"Return to The Dunwich Legacy\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Fortune.\",\n \"combatIcons\"\ + : 2,\n \"agilityIcons\": 1,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}" GUID: 70772b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.05 posY: 3.83 posZ: -16.7 - rotX: 359.77 - rotY: 269.95 - rotZ: 0.11 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Oops! 59d89b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Oops! 59d89b.yaml index 7f39d6e00..9f791836c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Oops! 59d89b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Oops! 59d89b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368815 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02113\",\n \"alternate_ids\": [\n \"60518\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"cost\": 2,\n \"level\"\ - : 0,\n \"traits\": \"Fortune.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"combatIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\n}" + : 0,\n \"traits\": \"Fortune.\",\n \"combatIcons\": 2,\n \"cycle\": \"The Dunwich\ + \ Legacy\"\n}" GUID: 59d89b Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 9.16 posY: 4.15 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.97 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Open Gate a33acd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Open Gate a33acd.yaml index 84bd2af35..88703d763 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Open Gate a33acd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Open Gate a33acd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 444024 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4440': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06029\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: a33acd Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.79 posZ: -16.69 - rotX: 359.93 - rotY: 270.01 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Opportunist (2) 63f145.yaml b/unpacked/Bag All Player Cards 15bb07/Card Opportunist (2) 63f145.yaml index 489625eb5..c046cd9fd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Opportunist (2) 63f145.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Opportunist (2) 63f145.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315241 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02231\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\ - \n}" + ,\n \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"wildIcons\": 1,\n\ + \ \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 63f145 Grid: true GridProjection: false @@ -45,10 +44,10 @@ Tooltip: true Transform: posX: 9.14 posY: 3.68 - posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Opportunist a88392.yaml b/unpacked/Bag All Player Cards 15bb07/Card Opportunist a88392.yaml index cd07f6242..89f539bd4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Opportunist a88392.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Opportunist a88392.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 261702 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2617': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01053\",\n \"alternate_ids\": [\n \"60319\",\n \"\ 01553\"\n ],\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"level\": 0,\n\ - \ \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \ - \ \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Innate.\",\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}" GUID: a88392 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0.08 - rotY: 270.01 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ornate Bow (3) 2acced.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ornate Bow (3) 2acced.yaml index f270fec1e..e68d05247 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ornate Bow (3) 2acced.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ornate Bow (3) 2acced.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368528 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -21,10 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04204\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Item. Relic. Weapon. Ranged.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 1,\n \"type\": \"\ - Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"\ + count\": 1,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n \ + \ ],\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 2acced Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.59 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Orphic Theory (1) d084d7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Orphic Theory (1) d084d7.yaml index eafaab71d..7c3593e8e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Orphic Theory (1) d084d7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Orphic Theory (1) d084d7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379044 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09051\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: d084d7 Grid: true GridProjection: false @@ -48,9 +47,9 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 359.03 - rotY: 270.01 - rotZ: 358.95 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Otherworld Codex (2) df0e22.yaml b/unpacked/Bag All Player Cards 15bb07/Card Otherworld Codex (2) df0e22.yaml index 0ad3b37c6..569c3159d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Otherworld Codex (2) df0e22.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Otherworld Codex (2) df0e22.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379930 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3799': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06158\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \ + \ \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ + : \"The Dream-Eaters\"\n}" GUID: df0e22 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.11 - posY: 3.68 + posY: 3.67 posZ: -16.72 - rotX: 359.92 - rotY: 269.85 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Otherworldly Compass (2) 19ab7c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Otherworldly Compass (2) 19ab7c.yaml index bb143f0f5..173559e67 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Otherworldly Compass (2) 19ab7c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Otherworldly Compass (2) 19ab7c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430647 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04194\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Relic.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 19ab7c Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.84 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Out of Body Experience d64b8f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Out of Body Experience d64b8f.yaml index 84c447b7e..0e0ce1d4c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Out of Body Experience d64b8f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Out of Body Experience d64b8f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 235822 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2358': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Madness. Paradox. DragSelectable: true GMNotes: "{\n \"id\": \"04264\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness. Paradox.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"traits\": \"Madness. Paradox.\",\n \"weakness\": true,\n \"cycle\": \"\ + The Forgotten Age\"\n}" GUID: d64b8f Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.04 posY: 3.93 posZ: -16.7 - rotX: 359.89 - rotY: 269.97 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Overpower (2) 017e1f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Overpower (2) 017e1f.yaml index a7b0111b4..ee170277c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Overpower (2) 017e1f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Overpower (2) 017e1f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545324 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60126\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\"\ - ,\n \"level\": 2,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 3,\n \"cycle\": \"Investigator Packs\"\ - \n}" + ,\n \"level\": 2,\n \"traits\": \"Practiced. Expert.\",\n \"combatIcons\": 3,\n\ + \ \"cycle\": \"Investigator Packs\"\n}" GUID: 017e1f Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.14 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Overpower 5ab9f4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Overpower 5ab9f4.yaml index dddd2bdec..7e0d6d49a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Overpower 5ab9f4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Overpower 5ab9f4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368502 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01091\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"Core\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"combatIcons\": 2,\n \"cycle\"\ + : \"Core\"\n}" GUID: 5ab9f4 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.98 posY: 4.01 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Overpower e0881e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Overpower e0881e.yaml index 8cd077312..8cd33ef26 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Overpower e0881e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Overpower e0881e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587208 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5872': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01591\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"Core\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"combatIcons\": 2,\n \"cycle\"\ + : \"Core\"\n}" GUID: e0881e Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 78.81 posY: 3.32 posZ: 7.67 - rotX: 359.39 + rotX: 359.0 rotY: 270.0 - rotZ: 0.6 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Overzealous 88a9b3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Overzealous 88a9b3.yaml index 512d375bf..057bc2e37 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Overzealous 88a9b3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Overzealous 88a9b3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 431110 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4311': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"03040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - basicWeaknessCount\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"traits\": \"Flaw.\",\n \"weakness\": true,\n \"basicWeaknessCount\": 2,\n\ + \ \"cycle\": \"The Path to Carcosa\"\n}" GUID: 88a9b3 Grid: true GridProjection: false @@ -42,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 8.98 + posX: 8.97 posY: 3.72 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Painkillers 0c859f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Painkillers 0c859f.yaml index 3fb905813..f41a81327 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Painkillers 0c859f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Painkillers 0c859f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368513 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02117\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"\ - count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n\ - \ ],\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n\ + }" GUID: 0c859f Grid: true GridProjection: false @@ -41,15 +41,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 posY: 3.73 posZ: -16.69 - rotX: 359.98 - rotY: 270.01 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Panic 93e52d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Panic 93e52d.yaml index d341359b8..656cea364 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Panic 93e52d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Panic 93e52d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378919 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"08132\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 93e52d Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.19 posY: 2.41 posZ: -16.73 - rotX: 359.88 - rotY: 269.8 - rotZ: 0.25 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pantalone adf028.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pantalone adf028.yaml index 619a4c70f..6366b9021 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pantalone adf028.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pantalone adf028.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 295603 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2956': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"82025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\":\ - \ \"Standalone\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Item. Mask.\",\n \"intellectIcons\": 1,\n \"\ + wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}" GUID: adf028 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.88 posZ: -16.73 - rotX: 0.03 - rotY: 269.8 - rotZ: 359.41 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Paradoxical Covenant (2) 541ee9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Paradoxical Covenant (2) 541ee9.yaml index 483fa5544..dc827d17a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Paradoxical Covenant (2) 541ee9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Paradoxical Covenant (2) 541ee9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553112 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5531': BackIsHidden: true @@ -21,7 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07120\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ ,\n \"level\": 2,\n \"traits\": \"Covenant. Blessed. Cursed.\",\n \"permanent\"\ - : true,\n \"weakness\": false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + : true,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 541ee9 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.07 posY: 3.86 posZ: -16.71 - rotX: 0.39 - rotY: 269.93 - rotZ: 359.72 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Parallel Fates (2) 583026.yaml b/unpacked/Bag All Player Cards 15bb07/Card Parallel Fates (2) 583026.yaml index eeeef5ac0..dda44ea6e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Parallel Fates (2) 583026.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Parallel Fates (2) 583026.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379056 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08066\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Augury.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Augury.\",\n \"willpowerIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: '583026' Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.19 posY: 2.3 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Parallel Fates 47bdba.yaml b/unpacked/Bag All Player Cards 15bb07/Card Parallel Fates 47bdba.yaml index ec370d86a..991f148e2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Parallel Fates 47bdba.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Parallel Fates 47bdba.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538713 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60415\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Augury.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Augury.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 47bdba Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 3.88 posZ: -16.72 - rotX: 0.19 - rotY: 269.8 - rotZ: 359.85 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Paranoia c17498.yaml b/unpacked/Bag All Player Cards 15bb07/Card Paranoia c17498.yaml index 62a7f517c..846559574 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Paranoia c17498.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Paranoia c17498.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527401 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5274': BackIsHidden: true @@ -21,8 +21,7 @@ Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"01097\",\n \"alternate_ids\": [\n \"01597\"\n ],\n \ \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2,\n\ - \ \"cycle\": \"Core\"\n}" + ,\n \"weakness\": true,\n \"basicWeaknessCount\": 2,\n \"cycle\": \"Core\"\n}" GUID: c17498 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 78.88 posY: 3.29 posZ: 26.84 - rotX: 358.06 - rotY: 270.05 - rotZ: 358.72 + rotX: 358.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pathfinder (1) (Taboo) ecbea8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pathfinder (1) (Taboo) ecbea8.yaml index c6b22ae89..6c72f70cd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pathfinder (1) (Taboo) ecbea8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pathfinder (1) (Taboo) ecbea8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450602 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02108-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Talent.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: ecbea8 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.03 posY: 3.68 posZ: -16.7 - rotX: 359.96 - rotY: 269.98 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pathfinder (1) 7f99cc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pathfinder (1) 7f99cc.yaml index 3c5d1ba21..89fe02a0b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pathfinder (1) 7f99cc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pathfinder (1) 7f99cc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430641 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02108\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Talent.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 7f99cc Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.14 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Patrice Hathaway 877f4d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Patrice Hathaway 877f4d.yaml index 354ea2cae..7b25a388d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Patrice Hathaway 877f4d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Patrice Hathaway 877f4d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 274014 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2740': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"06005-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"06005-m\",\n \"type\": \"Minicard\"\n}" GUID: 877f4d Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.98 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Patrice Hathaway a7b79f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Patrice Hathaway a7b79f.yaml index b37ffff33..12c42809c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Patrice Hathaway a7b79f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Patrice Hathaway a7b79f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 536635 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5366': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.91 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Patrice's Violin ea0007.yaml b/unpacked/Bag All Player Cards 15bb07/Card Patrice's Violin ea0007.yaml index 4cb45e62f..c995981ed 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Patrice's Violin ea0007.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Patrice's Violin ea0007.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 586210 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5862': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: My Muse DragSelectable: true GMNotes: "{\n \"id\": \"06016\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Instrument.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"\ - wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Instrument.\",\n \"willpowerIcons\": 1,\n\ + \ \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n\ + }" GUID: ea0007 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.12 posY: 3.94 posZ: -16.72 - rotX: 0.13 - rotY: 269.81 - rotZ: 359.89 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pay Day (1) 9f0b34.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pay Day (1) 9f0b34.yaml index 6a12a748e..790e1288f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pay Day (1) 9f0b34.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pay Day (1) 9f0b34.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315262 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04233\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Illicit. Fated.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Illicit. Fated.\",\n \"cycle\"\ + : \"The Forgotten Age\"\n}" GUID: 9f0b34 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.12 posY: 4.02 posZ: -16.72 - rotX: 0.04 - rotY: 269.83 - rotZ: 359.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pay Your Due 5b6c9f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pay Your Due 5b6c9f.yaml index b6786da71..ae9f367d0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pay Your Due 5b6c9f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pay Your Due 5b6c9f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379150 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"09126\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 10,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 10,\n \"traits\": \"Pact.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 5b6c9f Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 358.95 - rotY: 269.99 - rotZ: 1.14 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pendant of the Queen (Taboo) 6047d6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pendant of the Queen (Taboo) 6047d6.yaml index f5087e8f2..180056e4f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pendant of the Queen (Taboo) 6047d6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pendant of the Queen (Taboo) 6047d6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 584709 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5847': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: Of Nothing at All DragSelectable: true GMNotes: "{\n \"id\": \"06022-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"traits\": \"Item. Relic.\",\n \"uses\": [\n {\n \"count\": 3,\n\ + \ \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ + : \"The Dream-Eaters\"\n}" GUID: 6047d6 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.11 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pendant of the Queen 9b0dcf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pendant of the Queen 9b0dcf.yaml index ea8689314..eed368a72 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pendant of the Queen 9b0dcf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pendant of the Queen 9b0dcf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 441027 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4410': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: Of Nothing at All DragSelectable: true GMNotes: "{\n \"id\": \"06022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"traits\": \"Item. Relic.\",\n \"uses\": [\n {\n \"count\": 3,\n\ + \ \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ + : \"The Dream-Eaters\"\n}" GUID: 9b0dcf Grid: true GridProjection: false @@ -40,15 +40,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.75 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Penny White 73bccf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Penny White 73bccf.yaml index 25083bf60..68babb3d4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Penny White 73bccf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Penny White 73bccf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 312513 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3125': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: The Nightmare is Over DragSelectable: true GMNotes: "{\n \"id\": \"05260\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Circle Undone\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Ally. Assistant.\",\n \"willpowerIcons\": 1,\n\ + \ \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 73bccf Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.9 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Perception (2) 96b5ed.yaml b/unpacked/Bag All Player Cards 15bb07/Card Perception (2) 96b5ed.yaml index 5315d6cd0..5cdb12ec5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Perception (2) 96b5ed.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Perception (2) 96b5ed.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538826 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60228\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 2,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"intellectIcons\": 3,\n \"cycle\": \"Investigator Packs\"\ - \n}" + ,\n \"level\": 2,\n \"traits\": \"Practiced. Expert.\",\n \"intellectIcons\"\ + : 3,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 96b5ed Grid: true GridProjection: false @@ -45,10 +44,10 @@ Tooltip: true Transform: posX: 9.14 posY: 3.72 - posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Perception c6ac19.yaml b/unpacked/Bag All Player Cards 15bb07/Card Perception c6ac19.yaml index 85f86345a..49de84252 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Perception c6ac19.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Perception c6ac19.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368506 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01090\",\n \"alternate_ids\": [\n \"01590\"\n ],\n \ \ \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"level\": 0,\n \"traits\"\ - : \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\"\ - : 2,\n \"cycle\": \"Core\"\n}" + : \"Practiced.\",\n \"intellectIcons\": 2,\n \"cycle\": \"Core\"\n}" GUID: c6ac19 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 + rotX: 0.0 rotY: 270.0 - rotZ: 0.01 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Perseverance 0a390e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Perseverance 0a390e.yaml index f7237279f..09db3815e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Perseverance 0a390e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Perseverance 0a390e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368817 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04111\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 0a390e Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.17 posY: 3.24 posZ: -16.73 - rotX: 359.94 - rotY: 269.8 - rotZ: 359.93 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Persuasion 1b0235.yaml b/unpacked/Bag All Player Cards 15bb07/Card Persuasion 1b0235.yaml index 6a52b119a..f5bf86fcf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Persuasion 1b0235.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Persuasion 1b0235.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368414 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04105\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Trick.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Trick.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 1b0235 Grid: true GridProjection: false @@ -44,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 9.13 - posY: 3.68 + posY: 3.69 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pet Oozeling 26398a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pet Oozeling 26398a.yaml index 27d0cfb1f..ff8acba62 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pet Oozeling 26398a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pet Oozeling 26398a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 233605 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2336': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"85030\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Ally. Monster. Ooze.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"Standalone\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Ally. Monster. Ooze.\",\n \"agilityIcons\":\ + \ 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}" GUID: 26398a Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 3.39 posZ: -16.73 - rotX: 359.94 - rotY: 269.8 - rotZ: 359.94 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Peter Sylvestre (2) e1e098.yaml b/unpacked/Bag All Player Cards 15bb07/Card Peter Sylvestre (2) e1e098.yaml index f46f2766b..5e6cbe794 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Peter Sylvestre (2) e1e098.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Peter Sylvestre (2) e1e098.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368852 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Big Man on Campus DragSelectable: true GMNotes: "{\n \"id\": \"02035\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: e1e098 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 posY: 3.68 posZ: -16.69 - rotX: 359.94 - rotY: 270.01 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Peter Sylvestre ffdeb5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Peter Sylvestre ffdeb5.yaml index 81751f39a..7394adb64 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Peter Sylvestre ffdeb5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Peter Sylvestre ffdeb5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368832 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Big Man on Campus DragSelectable: true GMNotes: "{\n \"id\": \"02033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: ffdeb5 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.52 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Physical Training (2) d708d9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Physical Training (2) d708d9.yaml index 21be5edc5..03b445c18 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Physical Training (2) d708d9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Physical Training (2) d708d9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226343 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"50001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"combatIcons\": 2,\n\ - \ \"cycle\": \"Return to the Night of the Zealot\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 2,\n \"combatIcons\": 2,\n \"cycle\": \"Return to the Night of the Zealot\"\n\ + }" GUID: d708d9 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.22 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Physical Training (4) ab51ce.yaml b/unpacked/Bag All Player Cards 15bb07/Card Physical Training (4) ab51ce.yaml index acbd59c1d..147fe2c04 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Physical Training (4) ab51ce.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Physical Training (4) ab51ce.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545329 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60131\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"combatIcons\": 2,\n\ - \ \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Resource\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 2,\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \"\ + replenish\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n\ + \ }\n ],\n \"cycle\": \"Investigator Packs\"\n}" GUID: ab51ce Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.03 posY: 3.69 posZ: -16.7 - rotX: 359.89 - rotY: 269.98 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Physical Training 1165db.yaml b/unpacked/Bag All Player Cards 15bb07/Card Physical Training 1165db.yaml index 9aefecb58..3433124f1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Physical Training 1165db.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Physical Training 1165db.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226323 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01017\",\n \"alternate_ids\": [\n \"60108\",\n \"\ 01517\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 2,\n\ - \ \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\ - \n}" + \ \"level\": 0,\n \"traits\": \"Talent.\",\n \"willpowerIcons\": 1,\n \"combatIcons\"\ + : 1,\n \"cycle\": \"Core\"\n}" GUID: 1165db Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 18.91 posY: 3.37 posZ: -57.24 - rotX: 359.66 - rotY: 270.02 - rotZ: 0.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pickpocketing (2) 2f4db2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pickpocketing (2) 2f4db2.yaml index e9e133925..cc146d396 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pickpocketing (2) 2f4db2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pickpocketing (2) 2f4db2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315246 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03195\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Talent. Illicit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Talent. Illicit.\",\n \"agilityIcons\"\ + : 2,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 2f4db2 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.02 posY: 4.13 posZ: -16.7 - rotX: 359.86 + rotX: 0.0 rotY: 270.0 - rotZ: 0.03 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pickpocketing da7c01.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pickpocketing da7c01.yaml index b8d9b1b41..275669382 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pickpocketing da7c01.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pickpocketing da7c01.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368625 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3686': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01046\",\n \"alternate_ids\": [\n \"01546\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 0,\n\ - \ \"traits\": \"Talent. Illicit.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Talent. Illicit.\",\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\ + \n}" GUID: da7c01 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0.08 - rotY: 270.01 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pilfer (3) e503ce.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pilfer (3) e503ce.yaml index 1c1d4e941..28cf24245 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pilfer (3) e503ce.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pilfer (3) e503ce.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538626 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60328\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Trick.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: e503ce Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.96 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pilfer cc9563.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pilfer cc9563.yaml index f2c40213c..fa72d5c4c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pilfer cc9563.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pilfer cc9563.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538613 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60315\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: cc9563 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 5.24 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Plan of Action 96fd5d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Plan of Action 96fd5d.yaml index 161ad9cc7..18b830508 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Plan of Action 96fd5d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Plan of Action 96fd5d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 580418 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5804': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07024\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\ - \n}" + ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"wildIcons\": 1,\n \"cycle\"\ + : \"The Innsmouth Conspiracy\"\n}" GUID: 96fd5d Grid: true GridProjection: false @@ -46,8 +45,8 @@ Transform: posX: 9.08 posY: 3.77 posZ: -16.71 - rotX: 359.95 - rotY: 269.91 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Plucky (1) 86b9c5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Plucky (1) 86b9c5.yaml index 50379dc61..ef36c974d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Plucky (1) 86b9c5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Plucky (1) 86b9c5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368834 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03115\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Talent. Composure.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" + willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\ + \n}" GUID: 86b9c5 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.76 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Plucky (3) 7a2fe9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Plucky (3) 7a2fe9.yaml index 48f93802e..b42272b5a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Plucky (3) 7a2fe9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Plucky (3) 7a2fe9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378910 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08081\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Talent. Composure.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"intellectIcons\"\ - : 2,\n \"cycle\": \"Edge of the Earth\"\n}" + willpowerIcons\": 2,\n \"intellectIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\ + \n}" GUID: 7a2fe9 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.96 posZ: -16.73 - rotX: 359.91 - rotY: 269.8 - rotZ: 0.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pnakotic Manuscripts (5) 344d98.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pnakotic Manuscripts (5) 344d98.yaml index a436741a4..ee2598cd9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pnakotic Manuscripts (5) 344d98.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pnakotic Manuscripts (5) 344d98.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 262204 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2622': BackIsHidden: true @@ -21,10 +21,9 @@ Description: Mind-Expanding Ideas DragSelectable: true GMNotes: "{\n \"id\": \"04307\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 5,\n \"level\": 5,\n \"traits\": \"Item. Relic. Tome.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n\ - }" + intellectIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\"\ + : 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n\ + \ \"cycle\": \"The Forgotten Age\"\n}" GUID: 344d98 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.07 posY: 3.87 posZ: -16.71 - rotX: 0.44 - rotY: 269.93 - rotZ: 359.69 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pocket Multi Tool 7421ed.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pocket Multi Tool 7421ed.yaml index e017abe8b..a1a2e6ff1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pocket Multi Tool 7421ed.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pocket Multi Tool 7421ed.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379123 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,25 +20,24 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09099\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"customizations\": [\n\ - \ {\n \"name\": \"Detachable\",\n \"xp\": 1,\n \"text\": \"Other\ - \ investigators at your location may use the ability on Pocket Multi-Tool.\"\n \ - \ },\n {\n \"name\": \"Pry Bar\",\n \"xp\": 1,\n \"text\": \"\ - You get an additional +1 skill value if this is during a skill test on a treachery.\"\ - \n },\n {\n \"name\": \"Sharpened Knife\",\n \"xp\": 2,\n \"\ - text\": \"You get an additional +1 skill value if this is during an attack.\"\n\ - \ },\n {\n \"name\": \"Signal Mirror\",\n \"xp\": 2,\n \"text\"\ - : \"You get an additional +1 skill value if this is during an evasion attempt.\"\ - \n },\n {\n \"name\": \"Magnifying Lens\",\n \"xp\": 2,\n \"\ - text\": \"You get an additional +1 skill value if this is during an investigation.\"\ - \n },\n {\n \"name\": \"Lucky Charm\",\n \"xp\": 3,\n \"text\"\ - : \"After you fail a skill test, ready Pocket Multi Tool.\"\n },\n {\n \ - \ \"name\": \"Spring-Loaded\",\n \"xp\": 4,\n \"text\": \"Pocket Multi\ - \ Tool\uFFFD\u20AC\uFFFDs ability is now a ? ability with the trigger: \uFFFD\u20AC\ - \uFFFDWhen you would fail a skill test you are performing, exhaust Pocket Multi\ - \ Tool\uFFFD\u20AC\uFFFD\uFFFD\u20AC?\"\n }\n ],\n \"cycle\": \"The Scarlet\ - \ Keys\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"wildIcons\"\ + : 1,\n \"customizations\": [\n {\n \"name\": \"Detachable\",\n \"\ + xp\": 1,\n \"text\": \"Other investigators at your location may use the ability\ + \ on Pocket Multi-Tool.\"\n },\n {\n \"name\": \"Pry Bar\",\n \"\ + xp\": 1,\n \"text\": \"You get an additional +1 skill value if this is during\ + \ a skill test on a treachery.\"\n },\n {\n \"name\": \"Sharpened Knife\"\ + ,\n \"xp\": 2,\n \"text\": \"You get an additional +1 skill value if this\ + \ is during an attack.\"\n },\n {\n \"name\": \"Signal Mirror\",\n \ + \ \"xp\": 2,\n \"text\": \"You get an additional +1 skill value if this\ + \ is during an evasion attempt.\"\n },\n {\n \"name\": \"Magnifying Lens\"\ + ,\n \"xp\": 2,\n \"text\": \"You get an additional +1 skill value if this\ + \ is during an investigation.\"\n },\n {\n \"name\": \"Lucky Charm\"\ + ,\n \"xp\": 3,\n \"text\": \"After you fail a skill test, ready Pocket\ + \ Multi Tool.\"\n },\n {\n \"name\": \"Spring-Loaded\",\n \"xp\"\ + : 4,\n \"text\": \"Pocket Multi Tool\u2019s ability is now a \U0001F5F2 ability\ + \ with the trigger: \u201CWhen you would fail a skill test you are performing, exhaust\ + \ Pocket Multi Tool\u2026\u201D\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\ + \n}" GUID: 7421ed Grid: true GridProjection: false @@ -63,9 +62,9 @@ Transform: posX: 16.77 posY: 3.37 posZ: 65.7 - rotX: 359.81 + rotX: 0.0 rotY: 270.0 - rotZ: 0.13 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pocket Portal 35e8e2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pocket Portal 35e8e2.yaml index 6afefc9f5..3b9886118 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pocket Portal 35e8e2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pocket Portal 35e8e2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 584027 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5840': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Doorway to Another World DragSelectable: true GMNotes: "{\n \"id\": \"86052\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 2,\n \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Spell.\",\n \"wildIcons\": 2,\n \"cycle\":\ + \ \"Standalone\"\n}" GUID: 35e8e2 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.18 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Pocket Telescope 98eb87.yaml b/unpacked/Bag All Player Cards 15bb07/Card Pocket Telescope 98eb87.yaml index 5fdb3c8af..5440597a3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Pocket Telescope 98eb87.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Pocket Telescope 98eb87.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378935 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08097\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Edge\ - \ of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 98eb87 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 - posY: 2.63 + posY: 2.62 posZ: -16.73 - rotX: 359.89 - rotY: 269.8 - rotZ: 0.2 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Poisoned 819f52.yaml b/unpacked/Bag All Player Cards 15bb07/Card Poisoned 819f52.yaml index 1683c3c0d..9e9ebbe7e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Poisoned 819f52.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Poisoned 819f52.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 235644 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2356': BackIsHidden: true @@ -45,9 +45,9 @@ Transform: posX: 9.02 posY: 4.01 posZ: -16.7 - rotX: 359.84 + rotX: 0.0 rotY: 270.0 - rotZ: 0.04 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Police Badge (2) da46e0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Police Badge (2) da46e0.yaml index 5c82a9fe5..1fbde3b5a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Police Badge (2) da46e0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Police Badge (2) da46e0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226346 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01027\",\n \"alternate_ids\": [\n \"01527\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 3,\n \"level\"\ - : 2,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}" + : 2,\n \"traits\": \"Item.\",\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n\ + \ \"cycle\": \"Core\"\n}" GUID: da46e0 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 19.07 posY: 3.37 posZ: -56.79 - rotX: 359.44 - rotY: 270.02 - rotZ: 359.98 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Possessed 04b3a9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Possessed 04b3a9.yaml index 53379f00b..02c96e53d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Possessed 04b3a9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Possessed 04b3a9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450319 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4503': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness. DragSelectable: true GMNotes: "{\n \"id\": \"08647\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Edge of the\ + \ Earth\"\n}" GUID: 04b3a9 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 79.42 posY: 3.32 posZ: 7.65 - rotX: 359.38 - rotY: 269.99 - rotZ: 0.18 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Powder of Ibn Ghazi f96ed0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Powder of Ibn Ghazi f96ed0.yaml index a2a528c3e..a5ca21970 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Powder of Ibn Ghazi f96ed0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Powder of Ibn Ghazi f96ed0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232951 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2329': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Seeing Things Unseen DragSelectable: true GMNotes: "{\n \"id\": \"02219\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Item.\",\n \"cycle\": \"The Dunwich Legacy\"\ + \n}" GUID: f96ed0 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 posY: 3.75 posZ: -16.69 - rotX: 359.89 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Power Word c91c1d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Power Word c91c1d.yaml index 62360f85e..743c60cac 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Power Word c91c1d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Power Word c91c1d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379105 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,26 +20,23 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09081\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"customizations\"\ - : [\n {\n \"name\": \"Betray\",\n \"xp\": 1,\n \"text\": \"Add\ - \ the command: \uFFFD\u20AC\uFFFD? \uFFFD\u20AC\uFFFDBetray.\uFFFD\u20AC\uFFFD Deal\ - \ 1 damage to any enemy at this enemy\uFFFD\u20AC\uFFFDs location with an equal\ - \ or lower fight value than this enemy.\uFFFD\u20AC?\"\n },\n {\n \"\ - name\": \"Mercy\",\n \"xp\": 1,\n \"text\": \"Add the command: \uFFFD\u20AC\ - \uFFFD? \uFFFD\u20AC\uFFFDMercy.\uFFFD\u20AC\uFFFD An investigator at this enemy\uFFFD\ - \u20AC\uFFFDs location heals damage or horror equal to this enemy\uFFFD\u20AC\uFFFD\ - s respective damage/horror value.\uFFFD\u20AC?\"\n },\n {\n \"name\"\ - : \"Confess\",\n \"xp\": 1,\n \"text\": \"Add the command: \uFFFD\u20AC\ - \uFFFD? \uFFFD\u20AC\uFFFDConfess.\uFFFD\u20AC\uFFFD Discover 1 clue at this enemy\uFFFD\ - \u20AC\uFFFDs location if its health is equal to or higher than its location\uFFFD\ - \u20AC\uFFFDs shroud.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Distract\"\ - ,\n \"xp\": 1,\n \"text\": \"Add the command: \uFFFD\u20AC\uFFFD? \uFFFD\ - \u20AC\uFFFDDistract.\uFFFD\u20AC\uFFFD Automatically evade any enemy at this enemy\uFFFD\ - \u20AC\uFFFDs location with an equal or lower evade value than this enemy.\uFFFD\ - \u20AC?\"\n },\n {\n \"name\": \"Greater Control\",\n \"xp\": 2,\n\ - \ \"text\": \"Power Word gains \uFFFD\u20AC\uFFFD?: Return Power Word to your\ - \ hand.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Bonded\",\n \"xp\"\ + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"intellectIcons\"\ + : 1,\n \"customizations\": [\n {\n \"name\": \"Betray\",\n \"xp\"\ + : 1,\n \"text\": \"Add the command: \u201C\u27D0 \u2018Betray.\u2019 Deal 1\ + \ damage to any enemy at this enemy\u2019s location with an equal or lower fight\ + \ value than this enemy.\u201D\"\n },\n {\n \"name\": \"Mercy\",\n \ + \ \"xp\": 1,\n \"text\": \"Add the command: \u201C\u27D0 \u2018Mercy.\u2019\ + \ An investigator at this enemy\u2019s location heals damage or horror equal to\ + \ this enemy\u2019s respective damage/horror value.\u201D\"\n },\n {\n \ + \ \"name\": \"Confess\",\n \"xp\": 1,\n \"text\": \"Add the command:\ + \ \u201C\u27D0 \u2018Confess.\u2019 Discover 1 clue at this enemy\u2019s location\ + \ if its health is equal to or higher than its location\u2019s shroud.\u201D\"\n\ + \ },\n {\n \"name\": \"Distract\",\n \"xp\": 1,\n \"text\"\ + : \"Add the command: \u201C\u27D0 \u2018Distract.\u2019 Automatically evade any\ + \ enemy at this enemy\u2019s location with an equal or lower evade value than this\ + \ enemy.\u201D\"\n },\n {\n \"name\": \"Greater Control\",\n \"\ + xp\": 2,\n \"text\": \"Power Word gains \u201C\U0001F5F2: Return Power Word\ + \ to your hand.\u201D\"\n },\n {\n \"name\": \"Bonded\",\n \"xp\"\ : 3,\n \"text\": \"You may activate the parley ability on Power Word from up\ \ to one location away from the attached enemy.\"\n },\n {\n \"name\"\ : \"Tonguetwister\",\n \"xp\": 3,\n \"text\": \"When you parley with Power\ @@ -71,9 +68,9 @@ Transform: posX: 16.67 posY: 3.38 posZ: 65.93 - rotX: 359.41 - rotY: 270.01 - rotZ: 359.36 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Practice Makes Perfect 1ac667.yaml b/unpacked/Bag All Player Cards 15bb07/Card Practice Makes Perfect 1ac667.yaml index fffc2ee8f..645c8d868 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Practice Makes Perfect 1ac667.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Practice Makes Perfect 1ac667.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 447832 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4478': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06197\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Gambit. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Gambit. Tactic.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 1ac667 Grid: true GridProjection: false @@ -46,8 +45,8 @@ Transform: posX: 9.14 posY: 3.73 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Precious Memento (4) 358be4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Precious Memento (4) 358be4.yaml index 84bf3020e..17512a9ac 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Precious Memento (4) 358be4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Precious Memento (4) 358be4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378953 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -21,8 +21,7 @@ Description: From a Future Life DragSelectable: true GMNotes: "{\n \"id\": \"08115\",\n \"type\": \"Asset\",\n \"class\": \"Rogue|Survivor\"\ ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Item. Charm. Cursed.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"\ - Edge of the Earth\"\n}" + wildIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 358be4 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.86 posZ: -16.73 - rotX: 359.9 - rotY: 269.8 - rotZ: 0.14 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Precious Memento (4) f69d3f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Precious Memento (4) f69d3f.yaml index a52d0a39d..e3e910c22 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Precious Memento (4) f69d3f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Precious Memento (4) f69d3f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378952 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -21,8 +21,7 @@ Description: From a Former Life DragSelectable: true GMNotes: "{\n \"id\": \"08114\",\n \"type\": \"Asset\",\n \"class\": \"Rogue|Survivor\"\ ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Item. Charm. Blessed.\",\n \ - \ \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\"\ - : \"Edge of the Earth\"\n}" + \ \"wildIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: f69d3f Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.78 posZ: -16.73 - rotX: 359.89 - rotY: 269.8 - rotZ: 0.17 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Predator or Prey 6c726b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Predator or Prey 6c726b.yaml index fc2e6fa01..dc67e3e20 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Predator or Prey 6c726b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Predator or Prey 6c726b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379131 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09107\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 0,\n \"traits\": \"Dilemma. Tactic.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Dilemma. Tactic.\",\n \"cycle\": \"The Scarlet\ + \ Keys\"\n}" GUID: 6c726b Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 16.72 posY: 3.37 posZ: 65.64 - rotX: 359.43 + rotX: 359.0 rotY: 270.0 - rotZ: 0.63 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Predestined ec7702.yaml b/unpacked/Bag All Player Cards 15bb07/Card Predestined ec7702.yaml index bfb34ca44..a92c3933d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Predestined ec7702.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Predestined ec7702.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 586029 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5860': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07035\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 0,\n \"traits\": \"Fortune. Blessed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Fortune. Blessed.\",\n \"cycle\": \"The Innsmouth\ + \ Conspiracy\"\n}" GUID: ec7702 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.02 posY: 4.0 posZ: -16.7 - rotX: 359.83 + rotX: 0.0 rotY: 270.0 - rotZ: 0.04 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Premonition e470cd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Premonition e470cd.yaml index 113280849..de7d261f1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Premonition e470cd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Premonition e470cd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 276300 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2763': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04199\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Augury.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Augury.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: e470cd Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.01 posY: 3.88 posZ: -16.7 - rotX: 359.9 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Prepared for the Worst (2) a4f62a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Prepared for the Worst (2) a4f62a.yaml index 4fd274582..31c9161bf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Prepared for the Worst (2) a4f62a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Prepared for the Worst (2) a4f62a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379029 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09036\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"agilityIcons\": 1\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet\ + \ Keys\"\n}" GUID: a4f62a Grid: true GridProjection: false @@ -43,12 +43,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 17.03 + posX: 17.02 posY: 3.35 posZ: 65.98 - rotX: 358.81 - rotY: 270.01 - rotZ: 359.3 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Prepared for the Worst 831b6b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Prepared for the Worst 831b6b.yaml index ad94fb13f..4d7596145 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Prepared for the Worst 831b6b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Prepared for the Worst 831b6b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226310 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02184\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 831b6b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.94 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Preposterous Sketches (2) 5e32a5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Preposterous Sketches (2) 5e32a5.yaml index 2f5a960a5..333e0ea3b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Preposterous Sketches (2) 5e32a5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Preposterous Sketches (2) 5e32a5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 313906 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3139': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"51003\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}" GUID: 5e32a5 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.06 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Preposterous Sketches 60b353.yaml b/unpacked/Bag All Player Cards 15bb07/Card Preposterous Sketches 60b353.yaml index 5b79e3d71..6f4324e97 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Preposterous Sketches 60b353.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Preposterous Sketches 60b353.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368416 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02186\",\n \"alternate_ids\": [\n \"60218\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 0,\n\ - \ \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + \ \"traits\": \"Insight.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n\ + \ \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 60b353 Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 8.97 posY: 3.72 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Prescient 7e7873.yaml b/unpacked/Bag All Player Cards 15bb07/Card Prescient 7e7873.yaml index 30dad4328..d892f5bc7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Prescient 7e7873.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Prescient 7e7873.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538717 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60419\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\"\ - ,\n \"level\": 0,\n \"traits\": \"Practiced. Augury.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator Packs\"\ - \n}" + ,\n \"level\": 0,\n \"traits\": \"Practiced. Augury.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 7e7873 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 5.01 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Press Pass (2) a6c839.yaml b/unpacked/Bag All Player Cards 15bb07/Card Press Pass (2) a6c839.yaml index 0773114e1..e447b7c8e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Press Pass (2) a6c839.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Press Pass (2) a6c839.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379048 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09055\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1\n}" + ,\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Item. Charm.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: a6c839 Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 16.67 posY: 3.38 posZ: 65.93 - rotX: 358.6 - rotY: 270.02 - rotZ: 358.48 + rotX: 359.0 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Preston Fairmont 5e6298.yaml b/unpacked/Bag All Player Cards 15bb07/Card Preston Fairmont 5e6298.yaml index 2237587dc..5ffd8f2e2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Preston Fairmont 5e6298.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Preston Fairmont 5e6298.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 271923 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2719': BackIsHidden: true @@ -40,6 +40,7 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: @@ -48,9 +49,9 @@ Transform: posZ: -73.09 rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Preston Fairmont 78c512.yaml b/unpacked/Bag All Player Cards 15bb07/Card Preston Fairmont 78c512.yaml index e21ae4777..92657f158 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Preston Fairmont 78c512.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Preston Fairmont 78c512.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 272804 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2728': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"05003-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"05003-m\",\n \"type\": \"Minicard\"\n}" GUID: 78c512 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.89 posZ: -18.15 - rotX: 359.91 - rotY: 269.95 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Priest of Two Faiths (1) 48e4a3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Priest of Two Faiths (1) 48e4a3.yaml index b3cc2c7db..43151c87a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Priest of Two Faiths (1) 48e4a3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Priest of Two Faiths (1) 48e4a3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232104 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2321': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07156\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Ally. Blessed. Cursed.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\"\ - : \"The Innsmouth Conspiracy\"\n}" + \ \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 48e4a3 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.43 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Professor Warren Rice 42806b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Professor Warren Rice 42806b.yaml index 76ca538df..ce48e45db 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Professor Warren Rice 42806b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Professor Warren Rice 42806b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232904 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2329': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Professor of Languages DragSelectable: true GMNotes: "{\n \"id\": \"02061\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Ally. Miskatonic.\",\n \"intellectIcons\": 1,\n\ + \ \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 42806b Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.66 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Professor William Webb (2) 1905cf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Professor William Webb (2) 1905cf.yaml index 80587438a..9455abce6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Professor William Webb (2) 1905cf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Professor William Webb (2) 1905cf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378944 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Finder of Hidden Connections DragSelectable: true GMNotes: "{\n \"id\": \"08106\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n \"intellectIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ + : \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of\ + \ the Earth\"\n}" GUID: 1905cf Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.85 posZ: -16.73 - rotX: 359.9 - rotY: 269.8 - rotZ: 0.15 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Professor William Webb cc8571.yaml b/unpacked/Bag All Player Cards 15bb07/Card Professor William Webb cc8571.yaml index b43a8731e..ab8508a4a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Professor William Webb cc8571.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Professor William Webb cc8571.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378942 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Finder of Hidden Connections DragSelectable: true GMNotes: "{\n \"id\": \"08104\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n\ + }" GUID: cc8571 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.71 posZ: -16.73 - rotX: 359.89 - rotY: 269.8 - rotZ: 0.18 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Promise of Power d8b64b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Promise of Power d8b64b.yaml index c6f8d759b..ec515c79e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Promise of Power d8b64b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Promise of Power d8b64b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 584926 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5849': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07032\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\"\ - ,\n \"level\": 0,\n \"traits\": \"Practiced. Cursed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 4,\n \"cycle\": \"The Innsmouth Conspiracy\"\ - \n}" + ,\n \"level\": 0,\n \"traits\": \"Practiced. Cursed.\",\n \"wildIcons\": 4,\n\ + \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: d8b64b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.96 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Prophesiae Profana (5) (Taboo) 3c2561.yaml b/unpacked/Bag All Player Cards 15bb07/Card Prophesiae Profana (5) (Taboo) 3c2561.yaml index 379ec0f4c..88ade2607 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Prophesiae Profana (5) (Taboo) 3c2561.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Prophesiae Profana (5) (Taboo) 3c2561.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558214 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -21,8 +21,7 @@ Description: Atlas of the Unknowable DragSelectable: true GMNotes: "{\n \"id\": \"08045-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Item. Relic. Tome.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"\ - Edge of the Earth\"\n}" + wildIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 3c2561 Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 21.63 posY: 4.34 posZ: -60.24 - rotX: 0.06 - rotY: 269.82 - rotZ: 2.68 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Prophesiae Profana (5) 55999d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Prophesiae Profana (5) 55999d.yaml index 450129542..5163583c2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Prophesiae Profana (5) 55999d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Prophesiae Profana (5) 55999d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379035 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,8 +21,7 @@ Description: Atlas of the Unknowable DragSelectable: true GMNotes: "{\n \"id\": \"08045\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Item. Relic. Tome.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"\ - Edge of the Earth\"\n}" + wildIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 55999d Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.08 posZ: -16.74 - rotX: 359.94 - rotY: 269.8 - rotZ: 359.93 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Prophesy 493b03.yaml b/unpacked/Bag All Player Cards 15bb07/Card Prophesy 493b03.yaml index ab5f66636..e62b2c621 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Prophesy 493b03.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Prophesy 493b03.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430906 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4309': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05034\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\"\ - ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"wildIcons\": 1,\n \"cycle\"\ + : \"The Circle Undone\"\n}" GUID: 493b03 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.08 posY: 3.7 posZ: -16.71 - rotX: 359.98 - rotY: 269.9 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Prophetic (3) 0e64cb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Prophetic (3) 0e64cb.yaml index c0672916f..8d7460f7b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Prophetic (3) 0e64cb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Prophetic (3) 0e64cb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378958 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08120\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic|Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 2,\n \"replenish\": 2,\n \ + \ \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ + : \"Edge of the Earth\"\n}" GUID: 0e64cb Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.91 posZ: -16.73 - rotX: 359.9 - rotY: 269.8 - rotZ: 0.1 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Protecting the Anirniq (2) 91204c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Protecting the Anirniq (2) 91204c.yaml index 7282d0fc9..896b3e767 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Protecting the Anirniq (2) 91204c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Protecting the Anirniq (2) 91204c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378940 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08102\",\n \"type\": \"Event\",\n \"class\": \"Seeker|Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 91204c Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.18 posY: 2.63 posZ: -16.73 - rotX: 359.89 - rotY: 269.8 - rotZ: 0.2 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Protective Gear (2) 9a5cb1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Protective Gear (2) 9a5cb1.yaml index 5e8070786..f5a6d751c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Protective Gear (2) 9a5cb1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Protective Gear (2) 9a5cb1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378933 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08095\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Survivor\"\ - ,\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Item. Armor.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Item. Armor.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 9a5cb1 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.65 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Protective Incantation (1) 0fd4ae.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Protective Incantation (1) 0fd4ae.ttslua index e30935a65..b6136d44d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Protective Incantation (1) 0fd4ae.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Protective Incantation (1) 0fd4ae.ttslua @@ -72,4 +72,4 @@ function getChaosBag() end if chaosbag == nil then printToAll("No chaos bag found") end return chaosbag -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Protective Incantation (1) 0fd4ae.yaml b/unpacked/Bag All Player Cards 15bb07/Card Protective Incantation (1) 0fd4ae.yaml index c8f8cd493..eb957f58e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Protective Incantation (1) 0fd4ae.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Protective Incantation (1) 0fd4ae.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230333 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04031\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Ritual. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Ritual. Blessed.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 0fd4ae Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: - posX: 9.0 + posX: 8.99 posY: 3.75 posZ: -16.69 - rotX: 359.66 - rotY: 270.01 - rotZ: 0.08 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Psychosis d83baf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Psychosis d83baf.yaml index 910a07d12..5bcfe3fd6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Psychosis d83baf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Psychosis d83baf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527403 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5274': BackIsHidden: true @@ -21,8 +21,7 @@ Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"01099\",\n \"alternate_ids\": [\n \"01599\"\n ],\n \ \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n\ - \ \"cycle\": \"Core\"\n}" + ,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"Core\"\n}" GUID: d83baf Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 79.24 posY: 3.32 posZ: 26.14 - rotX: 359.51 - rotY: 269.99 - rotZ: 0.43 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Purifying Corruption (4) ac9763.yaml b/unpacked/Bag All Player Cards 15bb07/Card Purifying Corruption (4) ac9763.yaml index 51c3f01d7..3061e708e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Purifying Corruption (4) ac9763.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Purifying Corruption (4) ac9763.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449612 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4496': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07273\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Ritual. Blessed. Cursed.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Innsmouth Conspiracy\"\n}" + \ \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: ac9763 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.79 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Puzzle Box 44334c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Puzzle Box 44334c.yaml index 2415a9e3f..d73ec806d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Puzzle Box 44334c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Puzzle Box 44334c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 312510 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3125': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Mysterious Device DragSelectable: true GMNotes: "{\n \"id\": \"05228\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Item. Relic.\",\n \"cycle\": \"The Circle Undone\"\ + \n}" GUID: 44334c Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.71 - posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Quantum Flux edd34a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Quantum Flux edd34a.yaml index ddca098d2..758ff80fc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Quantum Flux edd34a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Quantum Flux edd34a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230307 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03196\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to\ - \ Carcosa\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: edd34a Grid: true GridProjection: false @@ -45,10 +44,10 @@ Tooltip: true Transform: posX: 9.0 posY: 3.79 - posZ: -16.69 - rotX: 0.26 - rotY: 270.01 - rotZ: 359.94 + posZ: -16.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Quantum Paradox 0e4c07.yaml b/unpacked/Bag All Player Cards 15bb07/Card Quantum Paradox 0e4c07.yaml index 7cc1c7d75..abbcf784e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Quantum Paradox 0e4c07.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Quantum Paradox 0e4c07.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379149 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"09125\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Paradox.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Paradox.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 0e4c07 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 16.72 posY: 3.38 posZ: 65.64 - rotX: 359.91 + rotX: 0.0 rotY: 270.0 - rotZ: 0.13 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Quick Getaway 5cc3d2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Quick Getaway 5cc3d2.yaml index 87e38eea7..8163a34da 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Quick Getaway 5cc3d2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Quick Getaway 5cc3d2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379062 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09069\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Scarlet\ - \ Keys\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"agilityIcons\"\ + : 2,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 5cc3d2 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 16.67 posY: 3.35 posZ: 65.93 - rotX: 357.72 - rotY: 270.05 - rotZ: 357.53 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Quick Learner (4) 3bbc0b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Quick Learner (4) 3bbc0b.yaml index dacf41e67..9860a12e0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Quick Learner (4) 3bbc0b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Quick Learner (4) 3bbc0b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550828 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -21,7 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60530\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"level\": 4,\n \"traits\": \"Condition.\",\n \"permanent\": true,\n \"\ - weakness\": false,\n \"cycle\": \"Investigator Packs\"\n}" + cycle\": \"Investigator Packs\"\n}" GUID: 3bbc0b Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.01 posY: 3.74 posZ: -16.7 - rotX: 0.78 - rotY: 270.01 - rotZ: 359.81 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Quick Study (2) 092e92.yaml b/unpacked/Bag All Player Cards 15bb07/Card Quick Study (2) 092e92.yaml index 0c98d00a0..6efb8bef2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Quick Study (2) 092e92.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Quick Study (2) 092e92.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430645 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04154\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 092e92 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.09 posY: 3.68 posZ: -16.71 - rotX: 359.94 - rotY: 269.88 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Quick Thinking (Taboo) 308967.yaml b/unpacked/Bag All Player Cards 15bb07/Card Quick Thinking (Taboo) 308967.yaml index a0d580fe3..85e7d238d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Quick Thinking (Taboo) 308967.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Quick Thinking (Taboo) 308967.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450616 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02229-t\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"wildIcons\": 1,\n \"cycle\"\ + : \"The Dunwich Legacy\"\n}" GUID: '308967' Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.02 posY: 4.01 posZ: -16.7 - rotX: 359.81 - rotY: 269.99 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Quick Thinking 99989c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Quick Thinking 99989c.yaml index ccaf13606..16676bc8d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Quick Thinking 99989c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Quick Thinking 99989c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 261703 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2617': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02229\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"wildIcons\": 1,\n \"cycle\"\ + : \"The Dunwich Legacy\"\n}" GUID: 99989c Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 5.1 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Quickdraw Holster (4) 859736.yaml b/unpacked/Bag All Player Cards 15bb07/Card Quickdraw Holster (4) 859736.yaml index 54c0eb468..f4ad5e1a3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Quickdraw Holster (4) 859736.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Quickdraw Holster (4) 859736.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378927 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08089\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue\"\ ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Item. Tool. Illicit.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\"\ - : 2,\n \"cycle\": \"Edge of the Earth\"\n}" + combatIcons\": 1,\n \"agilityIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: '859736' Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.19 posY: 2.5 posZ: -16.73 - rotX: 359.88 - rotY: 269.8 - rotZ: 0.23 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rabbit's Foot (3) 3f91af.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rabbit's Foot (3) 3f91af.yaml index e9d609d95..3c6d57bbd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rabbit's Foot (3) 3f91af.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rabbit's Foot (3) 3f91af.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368855 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"50010\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Return to\ - \ the Night of the Zealot\"\n}" + ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Charm.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"Return to the Night of the Zealot\"\n}" GUID: 3f91af Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.35 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rabbit's Foot f34090.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rabbit's Foot f34090.yaml index 373687fb2..7bd999d78 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rabbit's Foot f34090.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rabbit's Foot f34090.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368823 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01075\",\n \"alternate_ids\": [\n \"60510\",\n \"\ 01575\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 1,\n\ - \ \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"wildIcons\": 1,\n \"cycle\"\ + : \"Core\"\n}" GUID: f34090 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 34.73 posY: 3.38 posZ: -45.83 - rotX: 359.71 - rotY: 270.02 - rotZ: 359.26 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Radiant Smite (1) 92c295.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Radiant Smite (1) 92c295.ttslua index ab3fe3f1b..d819038d5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Radiant Smite (1) 92c295.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Radiant Smite (1) 92c295.ttslua @@ -78,4 +78,4 @@ function getChaosBag() end if chaosbag == nil then printToAll("No chaos bag found") end return chaosbag -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Radiant Smite (1) 92c295.yaml b/unpacked/Bag All Player Cards 15bb07/Card Radiant Smite (1) 92c295.yaml index 0948db849..cb4979959 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Radiant Smite (1) 92c295.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Radiant Smite (1) 92c295.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232101 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2321': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07153\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Spell. Spirit. Blessed.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"\ - combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + \ \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\ + \n}" GUID: 92c295 Grid: true GridProjection: false @@ -46,8 +46,8 @@ Transform: posX: 9.15 posY: 4.13 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Randall Cho 1f50e9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Randall Cho 1f50e9.yaml index 412eab976..86ce450fb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Randall Cho 1f50e9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Randall Cho 1f50e9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 585024 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5850': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: Concerned Brother DragSelectable: true GMNotes: "{\n \"id\": \"60102\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"traits\": \"Ally. Medic.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\"\ - : 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Ally. Medic.\",\n \"willpowerIcons\": 1,\n \ + \ \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\ + \n}" GUID: 1f50e9 Grid: true GridProjection: false @@ -40,15 +40,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.15 posY: 3.99 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Randolph Carter b04c8e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Randolph Carter b04c8e.yaml index 52cf85536..93eb8db8b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Randolph Carter b04c8e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Randolph Carter b04c8e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 452300 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4523': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Expert Dreamer DragSelectable: true GMNotes: "{\n \"id\": \"06059\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\"\ - : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Ally. Dreamer.\",\n \"combatIcons\": 1,\n \"\ + agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: b04c8e Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 - posY: 5.52 + posY: 5.51 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Randolph Carter d253a6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Randolph Carter d253a6.yaml index b416b2eb3..f2686e5de 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Randolph Carter d253a6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Randolph Carter d253a6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 452504 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4525': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: Chained to the Waking World DragSelectable: true GMNotes: "{\n \"id\": \"06079\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"\ - wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Ally. Dreamer.\",\n \"willpowerIcons\": 1,\n\ + \ \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ + \n}" GUID: d253a6 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.01 posY: 3.83 posZ: -16.7 - rotX: 0.69 - rotY: 270.01 - rotZ: 359.83 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rational Thought 1c7a00.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rational Thought 1c7a00.yaml index 9c7c89d47..e3a774bf5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rational Thought 1c7a00.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rational Thought 1c7a00.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379154 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05008\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - cycle\": \"The Circle Undone\"\n}" + ,\n \"traits\": \"Flaw.\",\n \"weakness\": true,\n \"cycle\": \"The Circle Undone\"\ + \n}" GUID: 1c7a00 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.05 posY: 3.91 posZ: -16.7 - rotX: 359.8 - rotY: 269.96 - rotZ: 0.09 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Read the Signs 75eca5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Read the Signs 75eca5.yaml index 1bd86d0bd..c50fd2b1c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Read the Signs 75eca5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Read the Signs 75eca5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 380126 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3801': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06117\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 75eca5 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.02 posY: 3.92 posZ: -16.7 - rotX: 359.79 - rotY: 269.99 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Recall the Future (2) a06aa7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Recall the Future (2) a06aa7.yaml index 66fe344fc..53cd8f93d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Recall the Future (2) a06aa7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Recall the Future (2) a06aa7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230344 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04158\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Augury. Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Augury. Ritual.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: a06aa7 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.24 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Recharge (2) e27b3c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Recharge (2) e27b3c.yaml index 115ca026c..d489c930d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Recharge (2) e27b3c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Recharge (2) e27b3c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230339 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03197\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: e27b3c Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.17 posY: 3.17 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Recharge (4) 591789.yaml b/unpacked/Bag All Player Cards 15bb07/Card Recharge (4) 591789.yaml index 6c719d613..9878c6373 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Recharge (4) 591789.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Recharge (4) 591789.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538727 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60429\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 3,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 3,\n \"cycle\": \"Investigator Packs\"\n}" GUID: '591789' Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.14 posY: 3.81 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Reckless Assault 3ff641.yaml b/unpacked/Bag All Player Cards 15bb07/Card Reckless Assault 3ff641.yaml index c9e5c9f6e..d6549cb9b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Reckless Assault 3ff641.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Reckless Assault 3ff641.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368503 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03118\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"level\": 0,\n \"traits\": \"Desperate.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"combatIcons\": 4,\n \"cycle\": \"The Path to Carcosa\"\n\ - }" + ,\n \"level\": 0,\n \"traits\": \"Desperate.\",\n \"combatIcons\": 4,\n \"cycle\"\ + : \"The Path to Carcosa\"\n}" GUID: 3ff641 Grid: true GridProjection: false @@ -43,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.14 + posX: 9.13 posY: 3.69 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Reckless c45e67.yaml b/unpacked/Bag All Player Cards 15bb07/Card Reckless c45e67.yaml index 4d7d80575..13c924950 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Reckless c45e67.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Reckless c45e67.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538602 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"60304\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - basicWeaknessCount\": 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"traits\": \"Flaw.\",\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n\ + \ \"cycle\": \"Investigator Packs\"\n}" GUID: c45e67 Grid: true GridProjection: false @@ -43,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 8.98 - posY: 3.82 + posY: 3.81 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Refine 482b10.yaml b/unpacked/Bag All Player Cards 15bb07/Card Refine 482b10.yaml index 4a8e4bb52..d8f17c7f8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Refine 482b10.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Refine 482b10.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379145 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09121\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Supply. Double.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Supply. Double.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 482b10 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359.26 + rotX: 359.0 rotY: 270.0 - rotZ: 0.81 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Relentless af3efd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Relentless af3efd.yaml index 042e3dcc8..493333197 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Relentless af3efd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Relentless af3efd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545307 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60109\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: af3efd Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.77 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Reliable (1) 102fad.yaml b/unpacked/Bag All Player Cards 15bb07/Card Reliable (1) 102fad.yaml index ca261e407..7ccc46a70 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Reliable (1) 102fad.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Reliable (1) 102fad.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226336 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04020\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Upgrade.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Upgrade.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 102fad Grid: true GridProjection: false @@ -46,8 +45,8 @@ Transform: posX: 9.17 posY: 2.93 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Relic Hunter (3) 3c959c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Relic Hunter (3) 3c959c.yaml index 84354e2d6..71e7cca7b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Relic Hunter (3) 3c959c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Relic Hunter (3) 3c959c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368523 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02157\",\n \"alternate_ids\": [\n \"01695\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"level\": 3,\n \"traits\"\ - : \"Talent.\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\": \"\ - The Dunwich Legacy\"\n}" + : \"Talent.\",\n \"permanent\": true,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 3c959c Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 30.5 posY: 2.3 posZ: -81.43 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 35bc58.yaml b/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 35bc58.yaml index 8dda4c087..023cf78b7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 35bc58.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 35bc58.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 235857 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2358': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Unleash the Timestream DragSelectable: true GMNotes: "{\n \"id\": \"04343\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"wildIcons\": 3,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"wildIcons\": 3,\n \"cycle\"\ + : \"The Forgotten Age\"\n}" GUID: 35bc58 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.21 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 7667ef.yaml b/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 7667ef.yaml index 908de0cf4..fdba5f948 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 7667ef.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 7667ef.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 235667 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2356': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Forestalling the Future DragSelectable: true GMNotes: "{\n \"id\": \"04191\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"wildIcons\": 3,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"wildIcons\": 3,\n \"cycle\"\ + : \"The Forgotten Age\"\n}" GUID: 7667ef Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.12 posY: 3.95 posZ: -16.72 - rotX: 0.11 - rotY: 269.82 - rotZ: 359.9 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 87718c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 87718c.yaml index 994a79ef7..27635eb8f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 87718c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages 87718c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 235840 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2358': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Repossess the Past DragSelectable: true GMNotes: "{\n \"id\": \"04303\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"wildIcons\": 3,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"wildIcons\": 3,\n \"cycle\"\ + : \"The Forgotten Age\"\n}" GUID: 87718c Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.08 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages e27a30.yaml b/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages e27a30.yaml index 5567e2e38..059790495 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages e27a30.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Relic of Ages e27a30.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 235603 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2356': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: "\uFFFD\uFFFD\u201A\uFFFD\uFFFDA Device, of Some Sort" DragSelectable: true GMNotes: "{\n \"id\": \"04061\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"wildIcons\": 3,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"wildIcons\": 3,\n \"cycle\"\ + : \"The Forgotten Age\"\n}" GUID: e27a30 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 101.08 posY: 1.99 posZ: -13.62 - rotX: 359.99 - rotY: 270.01 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Research Librarian 8f91ce.yaml b/unpacked/Bag All Player Cards 15bb07/Card Research Librarian 8f91ce.yaml index bd6e497ab..76a2a49e3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Research Librarian 8f91ce.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Research Librarian 8f91ce.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368426 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01032\",\n \"alternate_ids\": [\n \"01532\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"level\": 0,\n\ - \ \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\":\ - \ false,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Ally. Miskatonic.\",\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\ + \n}" GUID: 8f91ce Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 19.65 posY: 3.37 posZ: -56.91 - rotX: 359.41 - rotY: 270.02 - rotZ: 0.11 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Research Notes a37bd4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Research Notes a37bd4.yaml index 2e1b12bc6..024e857cc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Research Notes a37bd4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Research Notes a37bd4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379038 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09045\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Tome. Science.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\"\ - : \"The Scarlet Keys\"\n}" + intellectIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: a37bd4 Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 357.6 - rotY: 270.06 - rotZ: 357.4 + rotX: 358.0 + rotY: 270.0 + rotZ: 357.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Resourceful 334f03.yaml b/unpacked/Bag All Player Cards 15bb07/Card Resourceful 334f03.yaml index 32d70d3a4..a02a0ff44 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Resourceful 334f03.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Resourceful 334f03.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368802 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03039\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"intellectIcons\": 1,\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 334f03 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.12 posY: 3.94 posZ: -16.72 - rotX: 0.13 - rotY: 269.81 - rotZ: 359.89 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy (Taboo) 9724b7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy (Taboo) 9724b7.yaml index 4dcb125b5..858aab30e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy (Taboo) 9724b7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy (Taboo) 9724b7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 592900 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5929': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 78.51 posY: 1.07 posZ: 27.14 - rotX: 0.38 + rotX: 0.0 rotY: 180.0 - rotZ: 359.87 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy 4271cb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy 4271cb.yaml index 052bf1851..6102fa6bd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy 4271cb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy 4271cb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450003 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4500': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 78.51 posY: 1.06 posZ: 27.14 - rotX: 0.06 + rotX: 0.0 rotY: 180.0 - rotZ: 359.97 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy 9ba3f0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy 9ba3f0.yaml index 77b1181f5..af9be6c3f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy 9ba3f0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rex Murphy 9ba3f0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 259206 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2592': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"02002-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"02002-m\",\n \"type\": \"Minicard\"\n}" GUID: 9ba3f0 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 78.51 posY: 1.07 posZ: 27.14 - rotX: 359.02 + rotX: 359.0 rotY: 270.0 - rotZ: 359.86 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rex's Curse 033a35.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rex's Curse 033a35.yaml index 1f0e171b2..6a4c0dd31 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rex's Curse 033a35.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rex's Curse 033a35.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 371907 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3719': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02009\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \ - \ \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"traits\": \"Curse.\",\n \"weakness\": true,\n \"cycle\": \"The Dunwich\ + \ Legacy\"\n}" GUID: 033a35 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 5.51 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Righteous Hunt (1) 491c09.yaml b/unpacked/Bag All Player Cards 15bb07/Card Righteous Hunt (1) 491c09.yaml index a06b2e96d..7c2059ffe 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Righteous Hunt (1) 491c09.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Righteous Hunt (1) 491c09.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553101 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5531': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07109\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Tactic. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Tactic. Blessed.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 491c09 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.15 posY: 4.1 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Riot Whistle 55fc3d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Riot Whistle 55fc3d.yaml index b60985594..6463f5774 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Riot Whistle 55fc3d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Riot Whistle 55fc3d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553100 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5531': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07108\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Innsmouth\ - \ Conspiracy\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tool.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 55fc3d Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 posY: 3.67 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rise to the Occasion (3) bb501b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rise to the Occasion (3) bb501b.yaml index b9e14d601..aeca312ba 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rise to the Occasion (3) bb501b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rise to the Occasion (3) bb501b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 314904 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3149': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"51010\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 3,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 2,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}" + ,\n \"level\": 3,\n \"traits\": \"Innate.\",\n \"wildIcons\": 2,\n \"cycle\"\ + : \"Return to The Dunwich Legacy\"\n}" GUID: bb501b Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 4.72 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rise to the Occasion 358387.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rise to the Occasion 358387.yaml index 538c1b291..714fc7481 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rise to the Occasion 358387.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rise to the Occasion 358387.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368801 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02192\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 3,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"wildIcons\": 3,\n \"cycle\"\ + : \"The Dunwich Legacy\"\n}" GUID: '358387' Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.18 posY: 2.94 posZ: -16.73 - rotX: 359.91 - rotY: 269.8 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rita Young bb8296.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rita Young bb8296.yaml index 9157b2f7e..87e5ee220 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rita Young bb8296.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rita Young bb8296.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 272024 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2720': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 2.14 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rita Young bdef4d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rita Young bdef4d.yaml index 9c7aef22f..1ce9ec1b2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rita Young bdef4d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rita Young bdef4d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 591100 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5911': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"05005-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"05005-m\",\n \"type\": \"Minicard\"\n}" GUID: bdef4d Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 2.05 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rite of Equilibrium (5) (Taboo) d45a81.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rite of Equilibrium (5) (Taboo) d45a81.yaml index be40ecffe..1fe863613 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rite of Equilibrium (5) (Taboo) d45a81.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rite of Equilibrium (5) (Taboo) d45a81.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558202 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07308-t\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ ,\n \"cost\": 0,\n \"level\": 5,\n \"traits\": \"Spell. Blessed. Cursed.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Innsmouth Conspiracy\"\n}" + \ \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: d45a81 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 21.83 posY: 4.37 posZ: -46.43 - rotX: 359.99 - rotY: 269.85 - rotZ: 0.21 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rite of Equilibrium (5) 315b45.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rite of Equilibrium (5) 315b45.yaml index ffd812322..d26603fbc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rite of Equilibrium (5) 315b45.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rite of Equilibrium (5) 315b45.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 589707 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5897': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07308\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ ,\n \"cost\": 0,\n \"level\": 5,\n \"traits\": \"Spell. Blessed. Cursed.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Innsmouth Conspiracy\"\n}" + \ \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 315b45 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.68 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rite of Sanctification 974743.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rite of Sanctification 974743.yaml index c7a24e513..c0134e494 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rite of Sanctification 974743.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rite of Sanctification 974743.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 554413 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5544': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07019\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Ritual. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Innsmouth\ - \ Conspiracy\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Ritual. Blessed.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: '974743' Grid: true GridProjection: false @@ -40,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 posY: 3.8 posZ: -16.69 - rotX: -0.01 - rotY: 270.01 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking (2) 4f2668.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking (2) 4f2668.yaml index 23cc7cd0b..d858199b1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking (2) 4f2668.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking (2) 4f2668.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 313604 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3136': BackIsHidden: true @@ -21,10 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"51007\",\n \"alternate_ids\": [\n \"01689\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 4,\n \"level\": 2,\n\ - \ \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"\ - intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ - : \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return\ - \ to The Dunwich Legacy\"\n}" + \ \"traits\": \"Spell.\",\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \ + \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n\ + \ }\n ],\n \"cycle\": \"Return to The Dunwich Legacy\"\n}" GUID: 4f2668 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 34.32 posY: 3.38 posZ: -45.6 - rotX: 359.98 - rotY: 269.98 - rotZ: 359.18 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking (4) 194adb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking (4) 194adb.yaml index 16cf0ee7b..d66d02b11 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking (4) 194adb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking (4) 194adb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230358 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02233\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 5,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 5,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"intellectIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n\ + }" GUID: 194adb Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 26.02 posY: 3.53 posZ: -7.55 - rotX: 0.29 - rotY: 269.99 - rotZ: 0.83 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking 29b842.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking 29b842.yaml index 7c4eeab78..4125bda63 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking 29b842.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rite of Seeking 29b842.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230329 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02028\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n\ + }" GUID: 29b842 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.15 posY: 3.83 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ritual Candles (Taboo) e99e75.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ritual Candles (Taboo) e99e75.yaml index 1295e780a..57d0bf649 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ritual Candles (Taboo) e99e75.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ritual Candles (Taboo) e99e75.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558205 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -19,10 +19,10 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"02029-t\",\n \"alternate_ids\": [\n \"60405\"\n ],\n\ +GMNotes: "{\n \"id\": \"02029-t\",\n \"alternate_ids\": [\n \"60405-t\"\n ],\n\ \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\":\ - \ 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + \ 0,\n \"traits\": \"Item.\",\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dunwich\ + \ Legacy\"\n}" GUID: e99e75 Grid: true GridProjection: false @@ -47,9 +47,9 @@ Transform: posX: 21.63 posY: 4.34 posZ: -61.23 - rotX: 0.05 - rotY: 269.81 - rotZ: 2.68 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ritual Candles 0a4db3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ritual Candles 0a4db3.yaml index 2b937601c..018f327fd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ritual Candles 0a4db3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ritual Candles 0a4db3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230317 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02029\",\n \"alternate_ids\": [\n \"60405\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 0,\n\ - \ \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false,\n \"\ - willpowerIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + \ \"traits\": \"Item.\",\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dunwich\ + \ Legacy\"\n}" GUID: 0a4db3 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.82 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Robes of Endless Night (2) ef43db.yaml b/unpacked/Bag All Player Cards 15bb07/Card Robes of Endless Night (2) ef43db.yaml index 358ec584e..396f6cd32 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Robes of Endless Night (2) ef43db.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Robes of Endless Night (2) ef43db.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538720 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60422\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Clothing.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Clothing.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: ef43db Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.93 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Robes of Endless Night d9292f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Robes of Endless Night d9292f.yaml index f8ab95a7b..461a801bc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Robes of Endless Night d9292f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Robes of Endless Night d9292f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538710 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60412\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Clothing.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Clothing.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: d9292f Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 4.1 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rod of Animalism (1) 0fc42c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rod of Animalism (1) 0fc42c.yaml index e228438ca..622caf8c3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rod of Animalism (1) 0fc42c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rod of Animalism (1) 0fc42c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378915 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08128\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Edge\ - \ of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 0fc42c Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: - posX: 9.17 + posX: 9.18 posY: 2.94 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel Back) 560cef.yaml b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel Back) 560cef.yaml index 87b55d31c..eb6c2a1bf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel Back) 560cef.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel Back) 560cef.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 536100 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5361': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.66 posZ: -73.09 - rotX: 0.01 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel Front) f7361e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel Front) f7361e.yaml index 377329c9a..ee8f799fc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel Front) f7361e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel Front) f7361e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 536101 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5361': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.67 posZ: -73.09 - rotX: 0.03 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel) 502768.yaml b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel) 502768.yaml index d7d37e1de..5f10a8e97 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel) 502768.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (Parallel) 502768.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 536102 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5361': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 2.08 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (promo version) ff1f6e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (promo version) ff1f6e.yaml index 09b7afc82..eb4050bc2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (promo version) ff1f6e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks (promo version) ff1f6e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 273830 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2738': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 2.1 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 1b8e88.yaml b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 1b8e88.yaml index b50086473..c59641c88 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 1b8e88.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 1b8e88.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 535809 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5358': BackIsHidden: true @@ -20,7 +20,7 @@ CustomDeck: Description: Promo version DragSelectable: true GMNotes: "{\n \"id\": \"01001-promo-m\",\n \"alternate_ids\": [\n \"98004-m\"\ - \n ],\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}" + \n ],\n \"type\": \"Minicard\"\n}" GUID: 1b8e88 Grid: true GridProjection: false @@ -38,15 +38,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 29.03 posY: 3.37 posZ: -59.4 - rotX: 0.4 - rotY: 269.97 - rotZ: 1.35 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 5bde90.yaml b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 5bde90.yaml index 7027a1bba..e11315228 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 5bde90.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 5bde90.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 258600 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2586': BackIsHidden: true @@ -20,7 +20,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01001-m\",\n \"alternate_ids\": [\n \"98004-m\"\n ],\n\ - \ \"type\": \"Minicard\",\n \"traits\": \"\"\n}" + \ \"type\": \"Minicard\"\n}" GUID: 5bde90 Grid: true GridProjection: false @@ -38,15 +38,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 78.16 posY: 3.31 posZ: 27.28 - rotX: 359.99 + rotX: 0.0 rotY: 270.0 - rotZ: 358.91 + rotZ: 359.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 9e9e98.yaml b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 9e9e98.yaml index 91d72bc4b..8d817f311 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 9e9e98.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks 9e9e98.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 273800 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2738': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.64 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks ed1557.yaml b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks ed1557.yaml index f014722e0..c5525c94b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks ed1557.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks ed1557.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587400 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5874': BackIsHidden: true @@ -19,10 +19,10 @@ CustomDeck: UniqueBack: true Description: The Fed DragSelectable: true -GMNotes: "{\n \"id\": \"01001-r\",\n \"alternate_ids\": [\n \"98004\"\n ],\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Agency.\ - \ Detective.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 3,\n \"combatIcons\"\ - : 4,\n \"agilityIcons\": 2,\n \"cycle\": \"Core\"\n}" +GMNotes: "{\n \"id\": \"01501\",\n \"type\": \"Investigator\",\n \"class\": \"\ + Guardian\",\n \"traits\": \"Agency. Detective.\",\n \"willpowerIcons\": 3,\n \ + \ \"intellectIcons\": 3,\n \"combatIcons\": 4,\n \"agilityIcons\": 2,\n \"cycle\"\ + : \"Core\"\n}" GUID: ed1557 Grid: true GridProjection: false @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: - posX: 48.54 + posX: 48.55 posY: 1.99 posZ: -125.91 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.0 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.0 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks f8cea5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks f8cea5.yaml index e1d450cba..f0df3d17d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Roland Banks f8cea5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Roland Banks f8cea5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587100 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5871': BackIsHidden: true @@ -20,7 +20,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01001-revised-m\",\n \"alternate_ids\": [\n \"98004-m\"\ - \n ],\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}" + \n ],\n \"type\": \"Minicard\"\n}" GUID: f8cea5 Grid: true GridProjection: false @@ -38,15 +38,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 82.36 posY: 1.99 posZ: 1.46 - rotX: 359.99 + rotX: 0.0 rotY: 270.0 - rotZ: 359.98 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Roland's .38 Special 4edb91.yaml b/unpacked/Bag All Player Cards 15bb07/Card Roland's .38 Special 4edb91.yaml index 617b23979..53a2459c8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Roland's .38 Special 4edb91.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Roland's .38 Special 4edb91.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 586125 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5861': BackIsHidden: true @@ -21,10 +21,10 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01006\",\n \"alternate_ids\": [\n \"01506\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 3,\n \"traits\"\ - : \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"Core\"\n}" + : \"Item. Weapon. Firearm.\",\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \ + \ \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\":\ + \ \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n\ + }" GUID: 4edb91 Grid: true GridProjection: false @@ -42,16 +42,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: - posX: 28.49 + posX: 28.5 posY: 2.3 - posZ: -68.82 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 + posZ: -68.83 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Roland's .38 Special dbdaff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Roland's .38 Special dbdaff.yaml index 20c96d082..7e6dd9531 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Roland's .38 Special dbdaff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Roland's .38 Special dbdaff.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 536205 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5362': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: Advanced DragSelectable: true GMNotes: "{\n \"id\": \"90030\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\"\ - : \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\ - \n}" + ,\n \"cost\": 3,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"uses\"\ + : [\n {\n \"count\": 4,\n \"type\": \"Ammo\",\n \"token\": \"\ + resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}" GUID: dbdaff Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.15 posY: 3.67 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Rookie Mistake e567ff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Rookie Mistake e567ff.yaml index b6cfae4de..8ed4c2d06 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Rookie Mistake e567ff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Rookie Mistake e567ff.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 583901 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5839': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Blunder. Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"traits\": \"Blunder. Flaw.\",\n \"weakness\": true,\n \"cycle\": \"The\ + \ Dream-Eaters\"\n}" GUID: e567ff Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.06 posY: 3.92 posZ: -16.71 - rotX: 0.25 - rotY: 269.93 - rotZ: 359.81 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ruined Film 6d2eae.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ruined Film 6d2eae.yaml index a54bb85b8..d15f61dd4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ruined Film 6d2eae.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ruined Film 6d2eae.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379011 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09017\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Blunder.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"traits\": \"Blunder.\",\n \"weakness\": true,\n \"cycle\": \"The Scarlet\ + \ Keys\"\n}" GUID: 6d2eae Grid: true GridProjection: false @@ -39,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- ScenarioCard +- PlayerCard Tooltip: true Transform: posX: 10.44 posY: 2.2 posZ: 46.33 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Run For Your Life 0f32e8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Run For Your Life 0f32e8.yaml index ddf92d5d6..638131e91 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Run For Your Life 0f32e8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Run For Your Life 0f32e8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368505 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03119\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"level\": 0,\n \"traits\": \"Desperate.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"agilityIcons\": 4,\n \"cycle\": \"The Path to Carcosa\"\ - \n}" + ,\n \"level\": 0,\n \"traits\": \"Desperate.\",\n \"agilityIcons\": 4,\n \"\ + cycle\": \"The Path to Carcosa\"\n}" GUID: 0f32e8 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.16 posY: 4.15 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Runic Axe 7cdb0a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Runic Axe 7cdb0a.yaml index f0ce35b35..54df72137 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Runic Axe 7cdb0a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Runic Axe 7cdb0a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379015 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,32 +21,31 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09022\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"uses\":\ - \ [\n {\n \"count\": 4,\n \"replenish\": 1,\n \"type\": \"Charge\"\ - ,\n \"token\": \"resource\"\n }\n ],\n \"customizations\": [\n {\n\ - \ \"name\": \"Heirloom\",\n \"xp\": 1,\n \"text\": \"This asset gets\ - \ -1 cost and gains the Relic trait.\",\n \"replaces\": {\n \"cost\"\ - : 3,\n \"traits\": \"Item. Relic. Weapon. Melee.\"\n }\n },\n \ - \ {\n \"name\": \"Inscription of Glory\",\n \"xp\": 1,\n \"text\"\ - : \"Add this inscription: \uFFFD\u20AC\uFFFD? Glory - If this attack defeats an\ - \ enemy, choose one: draw 1 card, heal 1 damage, or heal 1 horror.\uFFFD\u20AC?\"\ - \n },\n {\n \"name\": \"Inscription of the Elders\",\n \"xp\": 1,\n\ - \ \"text\": \"Add this inscription: \uFFFD\u20AC\uFFFD? Elders - If this attack\ - \ succeeds by an amount equal to or grather than your location\\u0027s shroud, discover\ - \ 1 clue at your location.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Inscription\ - \ of the Hunt\",\n \"xp\": 1,\n \"text\": \"Add this inscription: \uFFFD\ - \u20AC\uFFFD? Hunt - Immediately move to a connecting location or engage an enemy\ - \ at your location.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Inscription\ - \ of Fury\",\n \"xp\": 1,\n \"text\": \"Add this inscription: \uFFFD\u20AC\ - \uFFFD? Fury - If this attack is successful, in addition to its standard damage,\ - \ deal 1 damage to each other enemy engaged with you.\uFFFD\u20AC?\"\n },\n \ - \ {\n \"name\": \"Ancient Power\",\n \"xp\": 3,\n \"text\": \"\ - You may imbue the same inscription up to three times.\"\n },\n {\n \"\ - name\": \"Saga\",\n \"xp\": 3,\n \"text\": \"Replenish 2 of Runic Axe\\\ - u0027s charges at the start of each round, instead of only one\",\n \"replaces\"\ - : {\n \"uses\": [\n {\n \"count\": 4,\n \"\ - replenish\": 2,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ]\n }\n },\n {\n \"name\": \"Scriptweaver\"\ + combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"replenish\"\ + : 1,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n\ + \ \"customizations\": [\n {\n \"name\": \"Heirloom\",\n \"xp\": 1,\n\ + \ \"text\": \"This asset gets -1 cost and gains the Relic trait.\",\n \ + \ \"replaces\": {\n \"cost\": 3,\n \"traits\": \"Item. Relic. Weapon.\ + \ Melee.\"\n }\n },\n {\n \"name\": \"Inscription of Glory\",\n\ + \ \"xp\": 1,\n \"text\": \"Add this inscription: \u201C\u27D0 Glory -\ + \ If this attack defeats an enemy, choose one: draw 1 card, heal 1 damage, or heal\ + \ 1 horror.\u201D\"\n },\n {\n \"name\": \"Inscription of the Elders\"\ + ,\n \"xp\": 1,\n \"text\": \"Add this inscription: \u201C\u27D0 Elders\ + \ - If this attack succeeds by an amount equal to or grather than your location\\\ + u0027s shroud, discover 1 clue at your location.\u201D\"\n },\n {\n \"\ + name\": \"Inscription of the Hunt\",\n \"xp\": 1,\n \"text\": \"Add this\ + \ inscription: \u201C\u27D0 Hunt - Immediately move to a connecting location or\ + \ engage an enemy at your location.\u201D\"\n },\n {\n \"name\": \"Inscription\ + \ of Fury\",\n \"xp\": 1,\n \"text\": \"Add this inscription: \u201C\u27D0\ + \ Fury - If this attack is successful, in addition to its standard damage, deal\ + \ 1 damage to each other enemy engaged with you.\u201D\"\n },\n {\n \"\ + name\": \"Ancient Power\",\n \"xp\": 3,\n \"text\": \"You may imbue the\ + \ same inscription up to three times.\"\n },\n {\n \"name\": \"Saga\"\ + ,\n \"xp\": 3,\n \"text\": \"Replenish 2 of Runic Axe\\u0027s charges\ + \ at the start of each round, instead of only one\",\n \"replaces\": {\n \ + \ \"uses\": [\n {\n \"count\": 4,\n \"replenish\"\ + : 2,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n \ + \ }\n ]\n }\n },\n {\n \"name\": \"Scriptweaver\"\ ,\n \"xp\": 4,\n \"text\": \"For every charge spent, you may imbue the\ \ axe with up to two different inscriptions.\"\n }\n ],\n \"cycle\": \"The\ \ Scarlet Keys\"\n}" @@ -74,9 +73,9 @@ Transform: posX: 9.92 posY: 2.2 posZ: 47.49 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ríastrad (1) f1f24e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ríastrad (1) f1f24e.yaml index 72b5c1ac9..01b75af3d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ríastrad (1) f1f24e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ríastrad (1) f1f24e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 588604 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5886': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07193\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Spell. Spirit. Cursed.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\"\ - : \"The Innsmouth Conspiracy\"\n}" + \ \"combatIcons\": 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: f1f24e Grid: true GridProjection: false @@ -44,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 9.14 - posY: 3.74 + posY: 3.73 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sacred Covenant (2) 87226d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sacred Covenant (2) 87226d.yaml index a3118d2a8..8fe9c59a3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sacred Covenant (2) 87226d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sacred Covenant (2) 87226d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553102 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5531': BackIsHidden: true @@ -21,7 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07110\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"level\": 2,\n \"traits\": \"Covenant. Blessed.\",\n \"permanent\": true,\n\ - \ \"weakness\": false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 87226d Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.7 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sacrifice (1) f2877e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sacrifice (1) f2877e.yaml index db28e8f58..329f47bfe 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sacrifice (1) f2877e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sacrifice (1) f2877e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230362 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04234\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Ritual.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: f2877e Grid: true GridProjection: false @@ -43,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.13 + posX: 9.12 posY: 3.88 posZ: -16.72 - rotX: 0.17 - rotY: 269.81 - rotZ: 359.87 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sacrificial Beast 46812e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sacrificial Beast 46812e.yaml index 13fef3f79..08893dfc7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sacrificial Beast 46812e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sacrificial Beast 46812e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 371466 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3714': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"98003\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Monster. Dark Young.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"cycle\": \"Promo\"\n}" + ,\n \"traits\": \"Monster. Dark Young.\",\n \"weakness\": true,\n \"cycle\":\ + \ \"Promo\"\n}" GUID: 46812e Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 3.79 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Safeguard (2) 7dc42a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Safeguard (2) 7dc42a.yaml index 07c616b6b..e633b4212 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Safeguard (2) 7dc42a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Safeguard (2) 7dc42a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 447933 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4479': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06196\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 7dc42a Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 25.86 posY: 3.53 posZ: -7.41 - rotX: 0.52 - rotY: 270.02 - rotZ: 0.45 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Safeguard 8d6ae6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Safeguard 8d6ae6.yaml index ed7f480e0..48c73756e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Safeguard 8d6ae6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Safeguard 8d6ae6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545308 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60110\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 8d6ae6 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.73 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Salvage (2) f2e87d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Salvage (2) f2e87d.yaml index 800851998..b47f2fe77 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Salvage (2) f2e87d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Salvage (2) f2e87d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379140 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09116\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Scarlet\ - \ Keys\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: f2e87d Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 16.72 posY: 3.36 posZ: 65.64 - rotX: 359.14 - rotY: 269.99 - rotZ: 0.94 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Savant (1) 5e3aac.yaml b/unpacked/Bag All Player Cards 15bb07/Card Savant (1) 5e3aac.yaml index 2c821d732..86def0056 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Savant (1) 5e3aac.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Savant (1) 5e3aac.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379042 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08052\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 1,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 1,\n \"dynamicIcons\": true,\n \"cycle\"\ - : \"Edge of the Earth\"\n}" + ,\n \"level\": 1,\n \"traits\": \"Innate. Developed.\",\n \"wildIcons\": 1,\n\ + \ \"dynamicIcons\": true,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 5e3aac Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.19 posY: 2.25 posZ: -16.74 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sawed-Off Shotgun (5) 4f5f0f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sawed-Off Shotgun (5) 4f5f0f.yaml index 0fe260e79..830db3eae 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sawed-Off Shotgun (5) 4f5f0f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sawed-Off Shotgun (5) 4f5f0f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449037 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4490': BackIsHidden: true @@ -21,10 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06327\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"\ - Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"\ + count\": 2,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n \ + \ ],\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 4f5f0f Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.02 posY: 4.09 posZ: -16.7 - rotX: 359.86 + rotX: 0.0 rotY: 270.0 - rotZ: 0.03 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Say Your Prayers 5c3dd0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Say Your Prayers 5c3dd0.yaml index 9cdff4ae5..1676814e6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Say Your Prayers 5c3dd0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Say Your Prayers 5c3dd0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368501 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03116\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"level\": 0,\n \"traits\": \"Desperate.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"willpowerIcons\": 4,\n \"cycle\": \"The Path to Carcosa\"\ - \n}" + ,\n \"level\": 0,\n \"traits\": \"Desperate.\",\n \"willpowerIcons\": 4,\n \"\ + cycle\": \"The Path to Carcosa\"\n}" GUID: 5c3dd0 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.14 posY: 3.68 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scavenging (2) ff4aea.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scavenging (2) ff4aea.yaml index de26d4f27..6cff8df56 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scavenging (2) ff4aea.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scavenging (2) ff4aea.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448737 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4487': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06332\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: ff4aea Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.89 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scavenging 1b76c9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scavenging 1b76c9.yaml index 0a6e2cc3e..4681935ec 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scavenging 1b76c9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scavenging 1b76c9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368822 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01073\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\ - \n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"Core\"\n}" GUID: 1b76c9 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 3.87 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scavenging b9e532.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scavenging b9e532.yaml index 2571fef57..23b731c1b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scavenging b9e532.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scavenging b9e532.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587210 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5872': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01573\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Core\"\ - \n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"Core\"\n}" GUID: b9e532 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 78.92 posY: 3.32 posZ: 7.6 - rotX: 359.22 - rotY: 269.99 - rotZ: 0.83 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scene of the Crime ab37af.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scene of the Crime ab37af.yaml index 505cc5ee0..c08092e90 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scene of the Crime ab37af.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scene of the Crime ab37af.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226318 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04103\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Bold.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Bold.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: ab37af Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.99 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Schoffner's Catalogue 699a99.yaml b/unpacked/Bag All Player Cards 15bb07/Card Schoffner's Catalogue 699a99.yaml index d531cceac..5077dfd0e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Schoffner's Catalogue 699a99.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Schoffner's Catalogue 699a99.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378901 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08072\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 5,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n\ + }" GUID: 699a99 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.9 posZ: -16.73 - rotX: 359.91 - rotY: 269.8 - rotZ: 0.09 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scientific Theory (1) 3a0df6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scientific Theory (1) 3a0df6.yaml index 5f03fd2ac..d4af24e23 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scientific Theory (1) 3a0df6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scientific Theory (1) 3a0df6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430638 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03109\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Talent. Composure.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\"\ - : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" + intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\ + \n}" GUID: 3a0df6 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 4.15 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scientific Theory (3) 158450.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scientific Theory (3) 158450.yaml index 1000eb835..8c2bdb390 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scientific Theory (3) 158450.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scientific Theory (3) 158450.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379030 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08040\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Talent. Composure.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"combatIcons\"\ - : 2,\n \"cycle\": \"Edge of the Earth\"\n}" + intellectIcons\": 2,\n \"combatIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n\ + }" GUID: '158450' Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 3.05 posZ: -16.73 - rotX: 0.06 - rotY: 269.8 - rotZ: 359.26 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scout Ahead 927d34.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scout Ahead 927d34.yaml index 0c7741350..bd090438c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scout Ahead 927d34.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scout Ahead 927d34.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379037 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08047\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight. Trick.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"Edge of\ - \ the Earth\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight. Trick.\",\n \"agilityIcons\"\ + : 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 927d34 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.19 posY: 2.34 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scrapper (3) (Taboo) fcffa3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scrapper (3) (Taboo) fcffa3.yaml index 825359022..f37fdfe2d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scrapper (3) (Taboo) fcffa3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scrapper (3) (Taboo) fcffa3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450606 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02193-t\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"The Dunwich Legacy\"\n}" GUID: fcffa3 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.8 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scrapper (3) dffe4a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scrapper (3) dffe4a.yaml index 484353f27..a12a7be35 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scrapper (3) dffe4a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scrapper (3) dffe4a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368853 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02193\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"The Dunwich Legacy\"\n}" GUID: dffe4a Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.66 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scrapper c8505c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scrapper c8505c.yaml index b8bdf3559..283d84189 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scrapper c8505c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scrapper c8505c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550809 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60511\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: c8505c Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.05 posY: 3.75 - posZ: -16.71 - rotX: 359.76 - rotY: 269.95 - rotZ: 0.12 + posZ: -16.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Prophecies 0d926f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Prophecies 0d926f.yaml index c27131094..f42a2199c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Prophecies 0d926f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Prophecies 0d926f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 380125 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3801': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06116\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 0d926f Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.07 posY: 3.76 posZ: -16.71 - rotX: 0.5 - rotY: 269.92 - rotZ: 359.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) 5839e4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) 5839e4.yaml index c120e4b2a..ac56faccf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) 5839e4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) 5839e4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450623 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: Mystic DragSelectable: true GMNotes: "{\n \"id\": \"05189-t\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n\ - }" + ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Tome.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \ + \ \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ + : \"The Circle Undone\"\n}" GUID: 5839e4 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 3.85 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) a2136a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) a2136a.yaml index 2c9224413..8b538e857 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) a2136a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) (Taboo) a2136a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450622 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Seeker DragSelectable: true GMNotes: "{\n \"id\": \"05188-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"\ - intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ - : \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n\ + }" GUID: a2136a Grid: true GridProjection: false @@ -40,14 +40,17 @@ Nickname: Scroll of Secrets (3) (Taboo) SidewaysCard: false Snap: true Sticky: true +Tags: +- Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 4.16 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.97 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) 0b12ac.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) 0b12ac.yaml index b97f75b85..e7360ae27 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) 0b12ac.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) 0b12ac.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 293214 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2932': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Seeker DragSelectable: true GMNotes: "{\n \"id\": \"05188\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n\ + }" GUID: 0b12ac Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.99 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) 194d88.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) 194d88.yaml index 7c9185cab..14fba39e5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) 194d88.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (3) 194d88.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 293315 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2933': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: Mystic DragSelectable: true GMNotes: "{\n \"id\": \"05189\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n\ - }" + ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Item. Tome.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \ + \ \"type\": \"Secret\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ + : \"The Circle Undone\"\n}" GUID: 194d88 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.59 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) 19b705.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) 19b705.yaml index 5393a9fed..bbb13f1c6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) 19b705.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) 19b705.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450621 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05116-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n\ + }" GUID: 19b705 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.8 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) a2136a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) a2136a.yaml index 20baaad2b..919395383 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) a2136a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets (Taboo) a2136a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450621 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Seeker DragSelectable: true GMNotes: "{\n \"id\": \"05116-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n\ + }" GUID: a2136a Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 4.16 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.97 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets 230835.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets 230835.yaml index 195925ee7..c7eb74abd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets 230835.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scroll of Secrets 230835.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 277604 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2776': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05116\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n\ + }" GUID: '230835' Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.0 posY: 3.93 posZ: -16.7 - rotX: 0.48 - rotY: 270.01 - rotZ: 359.88 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scrounge for Supplies 7651f3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scrounge for Supplies 7651f3.yaml index f08112193..388f7d520 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scrounge for Supplies 7651f3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scrounge for Supplies 7651f3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 380229 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3802': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06165\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Fortune.\",\n \"cycle\": \"\ + The Dream-Eaters\"\n}" GUID: 7651f3 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.98 posY: 3.84 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scrying (3) e58d2a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scrying (3) e58d2a.yaml index 53a0478b9..4baea17cf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scrying (3) e58d2a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scrying (3) e58d2a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230350 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,10 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03236\",\n \"alternate_ids\": [\n \"01690\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 3,\n\ - \ \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"\ - intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ - : \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + \ \"traits\": \"Spell.\",\n \"intellectIcons\": 2,\n \"uses\": [\n {\n \ + \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n\ + \ }\n ],\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: e58d2a Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 32.98 - posY: 3.32 + posY: 3.33 posZ: -47.41 - rotX: 1.15 - rotY: 269.98 - rotZ: 1.69 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scrying 8a927c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scrying 8a927c.yaml index 4e24aa04c..2f085e5fa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scrying 8a927c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scrying 8a927c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230319 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,10 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01061\",\n \"alternate_ids\": [\n \"01561\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 0,\n\ - \ \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"\ - intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ - : \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\ - \n}" + \ \"traits\": \"Spell.\",\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \ + \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n\ + \ }\n ],\n \"cycle\": \"Core\"\n}" GUID: 8a927c Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 32.98 - posY: 3.32 + posY: 3.33 posZ: -47.41 - rotX: 1.14 - rotY: 270.01 - rotZ: 1.69 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Scrying Mirror 6446d1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Scrying Mirror 6446d1.yaml index 6aa2ebd0d..cc7ae13d5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Scrying Mirror 6446d1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Scrying Mirror 6446d1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538704 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60406\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 4,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n\ + }" GUID: 6446d1 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.81 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sea Change Harpoon 4e405d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sea Change Harpoon 4e405d.yaml index b4abeb958..14a0f05d8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sea Change Harpoon 4e405d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sea Change Harpoon 4e405d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587308 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5873': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Item. Weapon. Melee.\",\n \"combatIcons\": 1,\n\ + \ \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 4e405d Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.79 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Seal of the Elder Sign (5) 91e890.yaml b/unpacked/Bag All Player Cards 15bb07/Card Seal of the Elder Sign (5) 91e890.yaml index 938e2eb43..0d1f48c98 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Seal of the Elder Sign (5) 91e890.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Seal of the Elder Sign (5) 91e890.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230359 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03312\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\"\ - ,\n \"level\": 5,\n \"traits\": \"Spell. Expert.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\ - \n}" + ,\n \"level\": 5,\n \"traits\": \"Spell. Expert.\",\n \"wildIcons\": 1,\n \"\ + cycle\": \"The Path to Carcosa\"\n}" GUID: 91e890 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.76 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Seal of the Seventh Sign (5) 9cbac1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Seal of the Seventh Sign (5) 9cbac1.yaml index d14f5b00a..0afbf343a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Seal of the Seventh Sign (5) 9cbac1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Seal of the Seventh Sign (5) 9cbac1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 278101 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2781': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Over the Threshold and Beyond DragSelectable: true GMNotes: "{\n \"id\": \"04311\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Spell. Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 7,\n \"type\": \"Charge\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Spell. Ritual.\",\n \"willpowerIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 7,\n \"type\"\ + : \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten\ + \ Age\"\n}" GUID: 9cbac1 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.15 posY: 3.86 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Search for the Truth 4156cf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Search for the Truth 4156cf.yaml index 41e9b6268..4b8dbfd2f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Search for the Truth 4156cf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Search for the Truth 4156cf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 371806 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3718': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02008\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"intellectIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Insight.\",\n \"intellectIcons\": 2,\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 4156cf Grid: true GridProjection: false @@ -45,10 +44,10 @@ Tooltip: true Transform: posX: 9.1 posY: 3.73 - posZ: -16.72 - rotX: 359.99 - rotY: 269.86 - rotZ: 359.97 + posZ: -16.71 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Searching for Izzie 426d28.yaml b/unpacked/Bag All Player Cards 15bb07/Card Searching for Izzie 426d28.yaml index 11e1df587..335d39b18 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Searching for Izzie 426d28.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Searching for Izzie 426d28.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 586926 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5869': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02011\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"traits\": \"Task.\",\n \"weakness\": true,\n \"cycle\": \"The Dunwich Legacy\"\ + \n}" GUID: 426d28 Grid: true GridProjection: false @@ -45,8 +45,8 @@ Transform: posX: 9.07 posY: 3.69 posZ: -16.71 - rotX: 359.95 - rotY: 269.92 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Second Wind baef55.yaml b/unpacked/Bag All Player Cards 15bb07/Card Second Wind baef55.yaml index 74f550e7b..c88512407 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Second Wind baef55.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Second Wind baef55.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226316 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04149\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit. Bold.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spirit. Bold.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: baef55 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 4.24 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Seeking Answers (2) 719f7e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Seeking Answers (2) 719f7e.yaml index d7000e53d..7200255fc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Seeking Answers (2) 719f7e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Seeking Answers (2) 719f7e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587110 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5871': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60227\",\n \"alternate_ids\": [\n \"01685\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"cost\": 1,\n \"level\": 2,\n\ - \ \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"intellectIcons\": 1,\n \"agilityIcons\": 2,\n \"cycle\": \"Investigator Packs\"\ - \n}" + \ \"traits\": \"Insight.\",\n \"intellectIcons\": 1,\n \"agilityIcons\": 2,\n\ + \ \"cycle\": \"Investigator Packs\"\n}" GUID: 719f7e Grid: true GridProjection: false @@ -45,11 +44,11 @@ Tags: Tooltip: true Transform: posX: 19.01 - posY: 3.37 - posZ: -56.83 - rotX: 359.46 - rotY: 270.02 - rotZ: 0.05 + posY: 3.38 + posZ: -56.84 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Seeking Answers f69e10.yaml b/unpacked/Bag All Player Cards 15bb07/Card Seeking Answers f69e10.yaml index 4dc93e4ed..603b404a7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Seeking Answers f69e10.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Seeking Answers f69e10.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368407 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02023\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: f69e10 Grid: true GridProjection: false @@ -45,10 +44,10 @@ Tooltip: true Transform: posX: 9.05 posY: 3.72 - posZ: -16.71 - rotX: 359.74 - rotY: 269.95 - rotZ: 0.13 + posZ: -16.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sefina Rousseau 342311.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sefina Rousseau 342311.yaml index 79b35e94e..f336049d9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sefina Rousseau 342311.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sefina Rousseau 342311.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 270912 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2709': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 78.51 posY: 1.06 posZ: 27.14 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sefina Rousseau d35705.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sefina Rousseau d35705.yaml index 45925e6ca..0ffe30cb1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sefina Rousseau d35705.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sefina Rousseau d35705.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 259512 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2595': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"03003-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"03003-m\",\n \"type\": \"Minicard\"\n}" GUID: d35705 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 2.18 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Segment of Onyx (1) ff9f23.yaml b/unpacked/Bag All Player Cards 15bb07/Card Segment of Onyx (1) ff9f23.yaml index adcccd9cb..4d76b454b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Segment of Onyx (1) ff9f23.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Segment of Onyx (1) ff9f23.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 441026 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4410': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Item. Relic. Occult.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\"\ - : 1,\n \"id\": \"06022\"\n }\n ],\n \"wildIcons\": 1,\n \"cycle\": \"\ - The Dream-Eaters\"\n}" + bonded\": [\n {\n \"count\": 1,\n \"id\": \"06022\"\n }\n ],\n\ + \ \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: ff9f23 Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: - posX: 9.14 + posX: 9.13 posY: 3.7 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Self-Centered eff3c8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Self-Centered eff3c8.yaml index 2b2e97857..beb6ddc09 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Self-Centered eff3c8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Self-Centered eff3c8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 438125 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4381': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"06035\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - basicWeaknessCount\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"traits\": \"Flaw.\",\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n\ + \ \"cycle\": \"The Dream-Eaters\"\n}" GUID: eff3c8 Grid: true GridProjection: false @@ -42,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.16 + posX: 9.15 posY: 4.15 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Self-Destructive 2204cc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Self-Destructive 2204cc.yaml index 84d37f750..e251c06f4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Self-Destructive 2204cc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Self-Destructive 2204cc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545302 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"60104\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - basicWeaknessCount\": 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"traits\": \"Flaw.\",\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n\ + \ \"cycle\": \"Investigator Packs\"\n}" GUID: 2204cc Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 3.67 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Self-Sacrifice 5e808d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Self-Sacrifice 5e808d.yaml index 43505f69a..6ab658a00 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Self-Sacrifice 5e808d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Self-Sacrifice 5e808d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379831 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3798': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06157\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\"\ - ,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"cycle\": \"The Dream-Eaters\"\ + \n}" GUID: 5e808d Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 3.75 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Selfless to a Fault 07dd55.yaml b/unpacked/Bag All Player Cards 15bb07/Card Selfless to a Fault 07dd55.yaml index 70f25fc22..7ccc85d56 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Selfless to a Fault 07dd55.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Selfless to a Fault 07dd55.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587701 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5877': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09003\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - cycle\": \"The Scarlet Keys\"\n}" + ,\n \"traits\": \"Flaw.\",\n \"weakness\": true,\n \"cycle\": \"The Scarlet Keys\"\ + \n}" GUID: 07dd55 Grid: true GridProjection: false @@ -39,15 +39,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- ScenarioCard +- PlayerCard Tooltip: true Transform: posX: 17.74 posY: 2.21 posZ: 59.76 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sell Your Soul 180b5b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sell Your Soul 180b5b.yaml index 8e0f2e5eb..8eefb8cc4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sell Your Soul 180b5b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sell Your Soul 180b5b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545214 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5452': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"53015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - cycle\": \"Return to the Forgotten Age\"\n}" + ,\n \"traits\": \"Pact.\",\n \"weakness\": true,\n \"cycle\": \"Return to the\ + \ Forgotten Age\"\n}" GUID: 180b5b Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 4.16 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sergeant Monroe 5630c2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sergeant Monroe 5630c2.yaml index bc2ad74d3..563f8eaa0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sergeant Monroe 5630c2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sergeant Monroe 5630c2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 534902 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5349': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Two Days Until Retirement DragSelectable: true GMNotes: "{\n \"id\": \"84008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 5,\n \"traits\": \"Ally. Police.\",\n \"permanent\": false,\n \ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\"\ - : 1,\n \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 5,\n \"traits\": \"Ally. Police.\",\n \"willpowerIcons\": 1,\n\ + \ \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}" GUID: 5630c2 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.1 posY: 3.73 posZ: -16.71 - rotX: 359.89 - rotY: 269.87 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Serpents of Yig 678391.yaml b/unpacked/Bag All Player Cards 15bb07/Card Serpents of Yig 678391.yaml index ae57eb3cb..e8e54d2e5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Serpents of Yig 678391.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Serpents of Yig 678391.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232837 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2328': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Humanoid. Monster. Serpent. DragSelectable: true GMNotes: "{\n \"id\": \"04014\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Humanoid. Monster. Serpent.\",\n \"permanent\": false,\n \"\ - weakness\": true,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"traits\": \"Humanoid. Monster. Serpent.\",\n \"weakness\": true,\n \"cycle\"\ + : \"The Forgotten Age\"\n}" GUID: '678391' Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.15 posY: 3.68 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shadow Agents 9be144.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shadow Agents 9be144.yaml index 44b16e8e3..90cc29ecb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shadow Agents 9be144.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shadow Agents 9be144.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 586405 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5864': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"07011\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Humanoid. Cultist.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"traits\": \"Humanoid. Cultist.\",\n \"weakness\": true,\n \"cycle\": \"\ + The Innsmouth Conspiracy\"\n}" GUID: 9be144 Grid: true GridProjection: false @@ -42,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.06 + posX: 9.05 posY: 3.74 posZ: -16.71 - rotX: 359.97 - rotY: 269.94 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shards of the Void (3) b10a71.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shards of the Void (3) b10a71.yaml index 69856959d..388159b7f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shards of the Void (3) b10a71.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shards of the Void (3) b10a71.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 278102 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2781': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04310\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"\ + type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + The Forgotten Age\"\n}" GUID: b10a71 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.34 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sharp Vision (1) 4d9a97.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sharp Vision (1) 4d9a97.yaml index 09984998c..243ad8470 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sharp Vision (1) 4d9a97.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sharp Vision (1) 4d9a97.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 447732 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4477': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06204\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 1,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"level\": 1,\n \"traits\": \"Innate. Developed.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 4d9a97 Grid: true GridProjection: false @@ -43,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.08 - posY: 3.68 + posX: 9.07 + posY: 3.69 posZ: -16.71 - rotX: 359.93 - rotY: 269.92 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sharpshooter (3) 7f27d6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sharpshooter (3) 7f27d6.yaml index 0abda3c7f..4eb1f1047 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sharpshooter (3) 7f27d6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sharpshooter (3) 7f27d6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538625 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60327\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 7f27d6 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: - posX: 9.14 + posX: 9.13 posY: 3.7 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shed a Light 2c165a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shed a Light 2c165a.yaml index ab954bb84..c0fe8b163 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shed a Light 2c165a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shed a Light 2c165a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379132 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09108\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Trick.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight. Trick.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 2c165a Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 16.72 posY: 3.38 posZ: 65.64 - rotX: 359.98 + rotX: 0.0 rotY: 270.0 - rotZ: 0.06 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shell Shock bcf406.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shell Shock bcf406.yaml index 3d454dac6..cb6acbe10 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shell Shock bcf406.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shell Shock bcf406.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 431731 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4317': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03008\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - cycle\": \"The Path to Carcosa\"\n}" + ,\n \"traits\": \"Flaw.\",\n \"weakness\": true,\n \"cycle\": \"The Path to Carcosa\"\ + \n}" GUID: bcf406 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 3.75 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shield of Faith (2) 06abe0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shield of Faith (2) 06abe0.yaml index 9c812b13e..784efa07f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shield of Faith (2) 06abe0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shield of Faith (2) 06abe0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 589001 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5890': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07221\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Innsmouth\ - \ Conspiracy\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell. Blessed.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 06abe0 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.75 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shining Trapezohedron (4) b4b991.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shining Trapezohedron (4) b4b991.yaml index 2dd2d103f..3492dddb8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shining Trapezohedron (4) b4b991.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shining Trapezohedron (4) b4b991.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527238 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5272': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06329\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ + \n}" GUID: b4b991 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.68 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shocking Discovery f4dd3d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shocking Discovery f4dd3d.yaml index 8a4eba6e5..be30ee36d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shocking Discovery f4dd3d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shocking Discovery f4dd3d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 583703 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5837': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06009\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Blunder. Mystery.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"traits\": \"Blunder. Mystery.\",\n \"weakness\": true,\n \"cycle\": \"\ + The Dream-Eaters\"\n}" GUID: f4dd3d Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 3.81 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Short Supply e5f541.yaml b/unpacked/Bag All Player Cards 15bb07/Card Short Supply e5f541.yaml index 342061a27..269f98c5c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Short Supply e5f541.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Short Supply e5f541.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378900 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08071\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"Edge of the Earth\"\n}" GUID: e5f541 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.91 posZ: -16.73 - rotX: 359.9 - rotY: 269.8 - rotZ: 0.12 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shortcut (2) 29169e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shortcut (2) 29169e.yaml index dc3eaa230..4d6951889 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shortcut (2) 29169e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shortcut (2) 29169e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 585308 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5853': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03232\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Insight. Tactic.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path\ + \ to Carcosa\"\n}" GUID: 29169e Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 9.14 posY: 3.86 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shortcut d4fd4a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shortcut d4fd4a.yaml index 05c7e4e9b..de3f7f8e9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shortcut d4fd4a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shortcut d4fd4a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368405 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02022\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight. Tactic.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: d4fd4a Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.01 posY: 3.85 posZ: -16.7 - rotX: 0.65 - rotY: 270.01 - rotZ: 359.84 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shotgun (4) c92ea3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shotgun (4) c92ea3.yaml index e5c1ea6d1..1197c9b5c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shotgun (4) c92ea3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shotgun (4) c92ea3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226357 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,10 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01029\",\n \"alternate_ids\": [\n \"01529\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 5,\n \"level\"\ - : 4,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 2,\n \ - \ \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ - : \"Core\"\n}" + : 4,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"combatIcons\": 2,\n \"uses\"\ + : [\n {\n \"count\": 2,\n \"type\": \"Ammo\",\n \"token\": \"\ + resource\"\n }\n ],\n \"cycle\": \"Core\"\n}" GUID: c92ea3 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 19.67 posY: 3.37 posZ: -57.21 - rotX: 359.5 - rotY: 270.01 - rotZ: 0.36 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Showmanship ad63bc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Showmanship ad63bc.yaml index 80360a9ef..39186061d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Showmanship ad63bc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Showmanship ad63bc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 580206 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5802': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \ - \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Talent.\",\n \"combatIcons\": 1,\n \"agilityIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: ad63bc Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.21 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shrewd Analysis 658d38.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shrewd Analysis 658d38.yaml index f2f4ca90a..dec02bd5e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shrewd Analysis 658d38.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shrewd Analysis 658d38.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368419 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04106\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"The Forgotten Age\"\n}" GUID: 658d38 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.03 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shrewd Dealings c70129.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shrewd Dealings c70129.yaml index c9ee22520..73035e23c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shrewd Dealings c70129.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shrewd Dealings c70129.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379008 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08017\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"intellectIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of\ - \ the Earth\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Talent.\",\n \"intellectIcons\": 2,\n \"wildIcons\"\ + : 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: c70129 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.68 posZ: -16.73 rotX: 0.0 - rotY: 269.8 - rotZ: 359.57 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shrine of the Moirai (3) 1934c6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shrine of the Moirai (3) 1934c6.yaml index 7dd612988..4f4dff3c4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shrine of the Moirai (3) 1934c6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shrine of the Moirai (3) 1934c6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 589909 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5899': BackIsHidden: true @@ -21,10 +21,10 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07310\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Fortune. Blessed. Cursed.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \ - \ \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"\ - count\": 3,\n \"type\": \"Offering\",\n \"token\": \"resource\"\n }\n\ - \ ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n\ + \ \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Offering\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\ + \n}" GUID: 1934c6 Grid: true GridProjection: false @@ -48,9 +48,9 @@ Transform: posX: 9.02 posY: 4.05 posZ: -16.7 - rotX: 359.82 - rotY: 269.99 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shrivelling (3) b3ce16.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shrivelling (3) b3ce16.yaml index 603b893e5..bf9efb6e5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shrivelling (3) b3ce16.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shrivelling (3) b3ce16.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230355 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02154\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"\ + type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + The Dunwich Legacy\"\n}" GUID: b3ce16 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.02 posY: 4.05 posZ: -16.7 - rotX: 359.85 + rotX: 0.0 rotY: 270.0 - rotZ: 0.03 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shrivelling (5) 7a33b2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shrivelling (5) 7a33b2.yaml index b8586d66a..1b5d452b1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shrivelling (5) 7a33b2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shrivelling (5) 7a33b2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230361 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02306\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 2,\n\ - \ \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 2,\n \"uses\": [\n {\n \"count\": 4,\n \"\ + type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + The Dunwich Legacy\"\n}" GUID: 7a33b2 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 3.71 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shrivelling 914053.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shrivelling 914053.yaml index 48235fc3b..c1b327bf6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shrivelling 914053.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shrivelling 914053.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230328 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01060\",\n \"alternate_ids\": [\n \"01560\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"cost\": 3,\n \"level\": 0,\n\ - \ \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"\ - combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"\ - Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Spell.\",\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"\ + count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n\ + \ ],\n \"cycle\": \"Core\"\n}" GUID: '914053' Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 32.98 - posY: 3.32 + posY: 3.33 posZ: -47.41 - rotX: 1.15 - rotY: 270.01 - rotZ: 1.69 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shroud of Shadows (4) 12bdf1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shroud of Shadows (4) 12bdf1.yaml index 1f4c80787..44d610403 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shroud of Shadows (4) 12bdf1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shroud of Shadows (4) 12bdf1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 579808 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5798': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07228\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\ - \n}" + ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell. Cursed.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"\ + type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + The Innsmouth Conspiracy\"\n}" GUID: 12bdf1 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.75 posZ: -16.69 - rotX: 359.95 - rotY: 270.01 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Shroud of Shadows a565d5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Shroud of Shadows a565d5.yaml index 6683bc854..f25e25dbc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Shroud of Shadows a565d5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Shroud of Shadows a565d5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553111 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5531': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07119\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell. Cursed.\",\n \"agilityIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\ + \n}" GUID: a565d5 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.75 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sign Magick (3) f998c5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sign Magick (3) f998c5.yaml index bc470438a..78fee34a0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sign Magick (3) f998c5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sign Magick (3) f998c5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449528 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4495': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"54008\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Ritual. Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"Return to the Circle Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Ritual. Talent.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Return to the Circle Undone\"\n}" GUID: f998c5 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.73 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sign Magick 05d263.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sign Magick 05d263.yaml index 3db5d2d8e..1c77527b9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sign Magick 05d263.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sign Magick 05d263.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 277510 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2775': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05112\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ritual. Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ritual. Talent.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 05d263 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.01 posY: 3.77 posZ: -16.7 - rotX: 0.82 - rotY: 270.01 - rotZ: 359.8 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Signum Crucis (2) (Taboo) 119880.yaml b/unpacked/Bag All Player Cards 15bb07/Card Signum Crucis (2) (Taboo) 119880.yaml index d551b8330..2d535f62c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Signum Crucis (2) (Taboo) 119880.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Signum Crucis (2) (Taboo) 119880.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558201 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07197-t\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 2,\n \"traits\": \"Practiced. Blessed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\ - \n}" + ,\n \"level\": 2,\n \"traits\": \"Practiced. Blessed.\",\n \"wildIcons\": 1,\n\ + \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: '119880' Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 21.83 posY: 4.32 posZ: -45.45 - rotX: 359.99 - rotY: 269.85 - rotZ: 0.2 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Signum Crucis (2) c73bb0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Signum Crucis (2) c73bb0.yaml index a41672c3d..db47dd957 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Signum Crucis (2) c73bb0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Signum Crucis (2) c73bb0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 588508 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5885': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07197\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 2,\n \"traits\": \"Practiced. Blessed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\ - \n}" + ,\n \"level\": 2,\n \"traits\": \"Practiced. Blessed.\",\n \"wildIcons\": 1,\n\ + \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: c73bb0 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 4.33 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh (promo version) 1da958.yaml b/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh (promo version) 1da958.yaml index 7bcabc271..6a81f38f4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh (promo version) 1da958.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh (promo version) 1da958.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 272429 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2724': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 2.15 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 3f92cf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 3f92cf.yaml index 74fc05fc2..bac8dd551 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 3f92cf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 3f92cf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 552804 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5528': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 2.13 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 574b59.yaml b/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 574b59.yaml index 4e01df7d1..bce0f64e7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 574b59.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 574b59.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553204 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5532': BackIsHidden: true @@ -20,7 +20,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07005-m\",\n \"alternate_ids\": [\n \"98013-m\"\n ],\n\ - \ \"type\": \"Minicard\",\n \"traits\": \"\"\n}" + \ \"type\": \"Minicard\"\n}" GUID: 574b59 Grid: true GridProjection: false @@ -38,15 +38,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.63 posZ: -18.15 - rotX: 359.92 - rotY: 269.94 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 888fcc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 888fcc.yaml index 737a0ea11..2a108bf82 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 888fcc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Silas Marsh 888fcc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 272508 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2725': BackIsHidden: true @@ -20,7 +20,7 @@ CustomDeck: Description: Promo version DragSelectable: true GMNotes: "{\n \"id\": \"07005-promo-m\",\n \"alternate_ids\": [\n \"98013-m\"\ - \n ],\n \"type\": \"Minicard\",\n \"traits\": \"\"\n}" + \n ],\n \"type\": \"Minicard\"\n}" GUID: 888fcc Grid: true GridProjection: false @@ -38,15 +38,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 2.17 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Silas's Net 4f11a2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Silas's Net 4f11a2.yaml index 19da33bb7..bebf82ccc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Silas's Net 4f11a2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Silas's Net 4f11a2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 582309 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5823': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07015\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"\ - The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Tool.\",\n \"agilityIcons\": 1,\n \"\ + wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 4f11a2 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 4.03 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Silver Twilight Acolyte 16a89d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Silver Twilight Acolyte 16a89d.yaml index 05e27f140..8140fb629 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Silver Twilight Acolyte 16a89d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Silver Twilight Acolyte 16a89d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527417 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5274': BackIsHidden: true @@ -21,8 +21,8 @@ Description: Enemy DragSelectable: true GMNotes: "{\n \"id\": \"01102\",\n \"alternate_ids\": [\n \"01602\"\n ],\n \ \ \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Cultist.\ - \ Silver Twilight.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\"\ - : 1,\n \"cycle\": \"Core\"\n}" + \ Silver Twilight.\",\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n \"\ + cycle\": \"Core\"\n}" GUID: 16a89d Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 78.46 posY: 3.32 posZ: 26.95 - rotX: 359.72 - rotY: 269.99 - rotZ: 359.34 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sin-Eater (3) 0c77d6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sin-Eater (3) 0c77d6.yaml index 36a6147b7..8c16df6fc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sin-Eater (3) 0c77d6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sin-Eater (3) 0c77d6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379118 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09094\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"level\": 3,\n \"traits\": \"Ritual.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"level\": 3,\n \"traits\": \"Ritual.\",\n \"permanent\": true,\n \"cycle\"\ + : \"The Scarlet Keys\"\n}" GUID: 0c77d6 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 16.74 posY: 3.34 posZ: 65.49 - rotX: 358.65 - rotY: 269.97 - rotZ: 2.57 + rotX: 359.0 + rotY: 270.0 + rotZ: 3.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sinha's Medical Kit 8d6475.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sinha's Medical Kit 8d6475.yaml index 49e71967f..f8425b998 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sinha's Medical Kit 8d6475.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sinha's Medical Kit 8d6475.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 452306 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4523': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08736\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Item. Science.\",\n \"willpowerIcons\": 1,\n\ + \ \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ + : \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of\ + \ the Earth\"\n}" GUID: 8d6475 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 79.17 posY: 3.32 posZ: 7.4 - rotX: 359.52 - rotY: 269.99 - rotZ: 0.57 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Siren Call b9fbff.yaml b/unpacked/Bag All Player Cards 15bb07/Card Siren Call b9fbff.yaml index c6b42b1b0..0b390e960 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Siren Call b9fbff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Siren Call b9fbff.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 585110 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5851': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"07016\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \ - \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"traits\": \"Curse.\",\n \"weakness\": true,\n \"cycle\": \"The Innsmouth\ + \ Conspiracy\"\n}" GUID: b9fbff Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.15 posY: 3.67 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sister Mary 1c78ea.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sister Mary 1c78ea.yaml index fe84e3b00..800c9824c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sister Mary 1c78ea.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sister Mary 1c78ea.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553200 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5532': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"07001-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"07001-m\",\n \"type\": \"Minicard\"\n}" GUID: 1c78ea Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.88 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sister Mary 617aeb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sister Mary 617aeb.yaml index e5ff07263..d85dc9c61 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sister Mary 617aeb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sister Mary 617aeb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553400 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5534': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.8 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sixth Sense (4) 060943.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sixth Sense (4) 060943.yaml index 11922e050..56d7dd98a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sixth Sense (4) 060943.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sixth Sense (4) 060943.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379618 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3796': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05322\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 060943 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.03 posY: 3.67 posZ: -16.7 - rotX: 359.92 - rotY: 269.98 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sixth Sense 6eceef.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sixth Sense 6eceef.yaml index b06ff11fa..fbcec22f5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sixth Sense 6eceef.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sixth Sense 6eceef.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 277512 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2775': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05158\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 6eceef Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.13 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel Back) a03077.yaml b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel Back) a03077.yaml index c92bd37d2..b9fb8252d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel Back) a03077.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel Back) a03077.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 270204 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2702': BackIsHidden: true @@ -39,17 +39,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 2.12 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel Front) 8116a6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel Front) 8116a6.yaml index d1595f995..489c869b3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel Front) 8116a6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel Front) 8116a6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 270203 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2702': BackIsHidden: true @@ -39,17 +39,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.75 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel) 22ebb2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel) 22ebb2.yaml index 63b19896b..7924932f6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel) 22ebb2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole (Parallel) 22ebb2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 270202 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2702': BackIsHidden: true @@ -39,17 +39,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.73 posZ: -73.09 - rotX: 0.01 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 02463b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 02463b.yaml index 9015531db..c0580a133 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 02463b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 02463b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587102 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5871': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"01003-revised-m\",\n \"type\": \"Minicard\",\n \"traits\"\ - : \"\"\n}" +GMNotes: "{\n \"id\": \"01503-m\",\n \"type\": \"Minicard\"\n}" GUID: 02463b Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 47.42 posY: 2.0 posZ: -100.51 - rotX: 358.82 - rotY: 269.98 - rotZ: 0.02 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 6b00ec.yaml b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 6b00ec.yaml index 36fd65028..8de078e2d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 6b00ec.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 6b00ec.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 258502 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2585': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"01003-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"01003-m\",\n \"type\": \"Minicard\"\n}" GUID: 6b00ec Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 28.52 posY: 3.37 posZ: -59.39 - rotX: 0.61 - rotY: 269.98 - rotZ: 0.81 + rotX: 1.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 9015b4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 9015b4.yaml index 571c391c5..ac2c924e2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 9015b4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole 9015b4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 535502 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5355': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.73 posZ: -73.09 - rotX: 0.01 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole a41f81.yaml b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole a41f81.yaml index 86eb20d0b..54868b30c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole a41f81.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Skids O'Toole a41f81.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587402 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5874': BackIsHidden: true @@ -19,7 +19,7 @@ CustomDeck: UniqueBack: true Description: The Ex-Con DragSelectable: true -GMNotes: "{\n \"id\": \"01003-r\",\n \"type\": \"Investigator\",\n \"class\": \"\ +GMNotes: "{\n \"id\": \"01503\",\n \"type\": \"Investigator\",\n \"class\": \"\ Rogue\",\n \"traits\": \"Criminal.\",\n \"willpowerIcons\": 2,\n \"intellectIcons\"\ : 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 4,\n \"cycle\": \"Core\"\n}" GUID: a41f81 @@ -39,17 +39,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 45.64 posY: 2.01 posZ: -116.06 - rotX: 0.02 - rotY: 179.99 - rotZ: 1.36 - scaleX: 1.0 + rotX: 0.0 + rotY: 180.0 + rotZ: 1.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.0 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sled Dog 852697.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sled Dog 852697.yaml index c8a7c960b..fbb4e64f4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sled Dog 852697.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sled Dog 852697.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378914 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08127\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Creature.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of\ - \ the Earth\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Creature.\",\n \"combatIcons\"\ + : 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: '852697' Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.96 posZ: -16.73 - rotX: 359.91 - rotY: 269.8 - rotZ: 0.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sledgehammer (4) ae3ff5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sledgehammer (4) ae3ff5.yaml index b838083ad..63bc217ef 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sledgehammer (4) ae3ff5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sledgehammer (4) ae3ff5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378934 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08096\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Survivor\"\ ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Item. Tool. Weapon. Melee.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 3,\n \"\ - cycle\": \"Edge of the Earth\"\n}" + ,\n \"combatIcons\": 3,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: ae3ff5 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.8 posZ: -16.73 - rotX: 359.89 - rotY: 269.8 - rotZ: 0.16 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sledgehammer 78fdc7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sledgehammer 78fdc7.yaml index e779c0aab..9e1b7c564 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sledgehammer 78fdc7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sledgehammer 78fdc7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378932 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08094\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Survivor\"\ ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tool. Weapon. Melee.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - cycle\": \"Edge of the Earth\"\n}" + ,\n \"combatIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 78fdc7 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.19 - posY: 2.49 + posY: 2.5 posZ: -16.73 - rotX: 359.88 - rotY: 269.8 - rotZ: 0.23 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sleight of Hand (Taboo) 5a51d1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sleight of Hand (Taboo) 5a51d1.yaml index fb8660c74..a53c5df28 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sleight of Hand (Taboo) 5a51d1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sleight of Hand (Taboo) 5a51d1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450618 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03029-t\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 5a51d1 Grid: true GridProjection: false @@ -45,10 +44,10 @@ Tooltip: true Transform: posX: 9.1 posY: 3.73 - posZ: -16.72 - rotX: 359.99 - rotY: 269.86 - rotZ: 359.97 + posZ: -16.71 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sleight of Hand 819aee.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sleight of Hand 819aee.yaml index 509c547ef..0eccb4b86 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sleight of Hand 819aee.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sleight of Hand 819aee.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368710 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3687': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03029\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 819aee Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.68 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sleuth (3) 1bdb15.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sleuth (3) 1bdb15.yaml index f163b3f85..af3a7d4bc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sleuth (3) 1bdb15.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sleuth (3) 1bdb15.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378959 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08121\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Seeker|Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 2,\n \"type\": \"Resource\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"intellectIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 2,\n \"replenish\": 2,\n \ + \ \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\"\ + : \"Edge of the Earth\"\n}" GUID: 1bdb15 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.92 posZ: -16.73 - rotX: 359.9 - rotY: 269.8 - rotZ: 0.11 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Slip Away (2) 4a45c6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Slip Away (2) 4a45c6.yaml index 52dc699cc..d96b2378f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Slip Away (2) 4a45c6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Slip Away (2) 4a45c6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538622 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60324\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Trick.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 4a45c6 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.02 posY: 4.01 posZ: -16.7 - rotX: 359.84 + rotX: 0.0 rotY: 270.0 - rotZ: 0.04 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Slip Away cf1d4e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Slip Away cf1d4e.yaml index b7236b9c9..88f30de95 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Slip Away cf1d4e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Slip Away cf1d4e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368714 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3687': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04232\",\n \"alternate_ids\": [\n \"60314\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 0,\n\ - \ \"traits\": \"Trick.\",\n \"permanent\": false,\n \"weakness\": false,\n \"\ - intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\ - \n}" + \ \"traits\": \"Trick.\",\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \ + \ \"cycle\": \"The Forgotten Age\"\n}" GUID: cf1d4e Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 9.16 posY: 4.15 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.97 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Small Favor bf5a5f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Small Favor bf5a5f.yaml index 5afc97361..c4e8f56f3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Small Favor bf5a5f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Small Favor bf5a5f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378016 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3780': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05277\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Favor. Service.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Favor. Service.\",\n \"combatIcons\"\ + : 2,\n \"cycle\": \"The Circle Undone\"\n}" GUID: bf5a5f Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.68 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Small Radio c9feda.yaml b/unpacked/Bag All Player Cards 15bb07/Card Small Radio c9feda.yaml index 5dc60cbae..33071f769 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Small Radio c9feda.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Small Radio c9feda.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450311 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4503': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08619\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Item. Expedition.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"intellectIcons\": 2,\n \"wildIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Item. Expedition.\",\n \"intellectIcons\": 2,\n\ + \ \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ + : \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of\ + \ the Earth\"\n}" GUID: c9feda Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 79.13 posY: 3.33 posZ: 7.83 - rotX: 359.39 - rotY: 269.99 - rotZ: 359.91 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Smite the Wicked 58f534.yaml b/unpacked/Bag All Player Cards 15bb07/Card Smite the Wicked 58f534.yaml index 70d2076c1..4d240cfc5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Smite the Wicked 58f534.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Smite the Wicked 58f534.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 582827 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5828': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"traits\": \"Task.\",\n \"weakness\": true,\n \"cycle\": \"The Dunwich Legacy\"\ + \n}" GUID: 58f534 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.01 posY: 3.99 posZ: -16.7 - rotX: 359.88 + rotX: 0.0 rotY: 270.0 - rotZ: 0.03 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Smoking Pipe 603e29.yaml b/unpacked/Bag All Player Cards 15bb07/Card Smoking Pipe 603e29.yaml index ea67a0aa5..4d35b15bb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Smoking Pipe 603e29.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Smoking Pipe 603e29.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368514 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02116\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"\ - count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n\ - \ ],\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n\ + }" GUID: 603e29 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.12 posY: 3.95 posZ: -16.72 - rotX: 0.15 - rotY: 269.81 - rotZ: 359.88 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Smuggled Goods 1f3880.yaml b/unpacked/Bag All Player Cards 15bb07/Card Smuggled Goods 1f3880.yaml index 2082886cd..8c4db9efe 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Smuggled Goods 1f3880.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Smuggled Goods 1f3880.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 376938 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3769': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04010\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Supply. Illicit.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\ - \n}" + ,\n \"cost\": 0,\n \"traits\": \"Supply. Illicit.\",\n \"wildIcons\": 1,\n \"\ + cycle\": \"The Forgotten Age\"\n}" GUID: 1f3880 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.71 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Snare Trap (2) f66dd9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Snare Trap (2) f66dd9.yaml index 139ec5fc7..193148d7f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Snare Trap (2) f66dd9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Snare Trap (2) f66dd9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368849 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03199\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Trap. Improvised.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Trap. Improvised.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: f66dd9 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.77 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sneak Attack (2) 5f19e0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sneak Attack (2) 5f19e0.yaml index 464df2bde..000eb183c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sneak Attack (2) 5f19e0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sneak Attack (2) 5f19e0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315245 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03152\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 2,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 2,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 5f19e0 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.89 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sneak Attack b18b33.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sneak Attack b18b33.yaml index 59a2ab722..6bb946abc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sneak Attack b18b33.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sneak Attack b18b33.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368713 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3687': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01052\",\n \"alternate_ids\": [\n \"01552\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 0,\n\ - \ \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false,\n \ - \ \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Tactic.\",\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \ + \ \"cycle\": \"Core\"\n}" GUID: b18b33 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0.08 + rotX: 0.0 rotY: 270.0 - rotZ: 0.01 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sneak By d099f4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sneak By d099f4.yaml index 54c78b57a..0e5d379fb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sneak By d099f4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sneak By d099f4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538614 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60316\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"agilityIcons\"\ + : 2,\n \"cycle\": \"Investigator Packs\"\n}" GUID: d099f4 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.14 posY: 3.79 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Snipe (1) 79cbc6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Snipe (1) 79cbc6.yaml index 3e2618afe..ac5b77174 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Snipe (1) 79cbc6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Snipe (1) 79cbc6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378925 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08087\",\n \"type\": \"Event\",\n \"class\": \"Guardian|Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 79cbc6 Grid: true GridProjection: false @@ -43,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.18 + posX: 9.19 posY: 2.61 posZ: -16.73 - rotX: 359.88 - rotY: 269.8 - rotZ: 0.21 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Solemn Vow ef7c11.yaml b/unpacked/Bag All Player Cards 15bb07/Card Solemn Vow ef7c11.yaml index 5125bbe9a..fc07dcc1a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Solemn Vow ef7c11.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Solemn Vow ef7c11.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 440926 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4409': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06020\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: ef7c11 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 3.78 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Something Worth Fighting For a3f105.yaml b/unpacked/Bag All Player Cards 15bb07/Card Something Worth Fighting For a3f105.yaml index 82eda2833..ab9118bba 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Something Worth Fighting For a3f105.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Something Worth Fighting For a3f105.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 278011 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2780': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05109\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: a3f105 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.06 posY: 3.79 posZ: -16.71 - rotX: 0.03 - rotY: 269.94 - rotZ: 359.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Song of the Dead (2) 2ae3ce.yaml b/unpacked/Bag All Player Cards 15bb07/Card Song of the Dead (2) 2ae3ce.yaml index 3cf0254cf..c72e24e3c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Song of the Dead (2) 2ae3ce.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Song of the Dead (2) 2ae3ce.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230345 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02112\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell. Song.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 5,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell. Song.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n\ + }" GUID: 2ae3ce Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.95 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Soothing Melody 53f076.yaml b/unpacked/Bag All Player Cards 15bb07/Card Soothing Melody 53f076.yaml index e7aee513c..e75ec633b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Soothing Melody 53f076.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Soothing Melody 53f076.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378621 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3786': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05314\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Spell.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 53f076 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.01 posY: 3.83 posZ: -16.7 - rotX: 0.69 - rotY: 270.01 - rotZ: 359.83 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sophie 4f46ad.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sophie 4f46ad.yaml index 66e60c1df..cbf46a4b6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sophie 4f46ad.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sophie 4f46ad.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 374264 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3742': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03009\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"startsInPlay\": true,\n \"traits\": \"Item. Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"startsInPlay\": true,\n \"traits\": \"Item. Spirit.\",\n \"cycle\": \"\ + The Path to Carcosa\"\n}" GUID: 4f46ad Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 78.27 posY: 1.19 posZ: 26.81 - rotX: 0.02 - rotY: 270.02 - rotZ: 352.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 353.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Soul Sanctification (3) 52f6d6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Soul Sanctification (3) 52f6d6.yaml index 53be7381a..d2ce3a5ea 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Soul Sanctification (3) 52f6d6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Soul Sanctification (3) 52f6d6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379147 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09123\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"level\": 3,\n \"traits\": \"Ritual.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"level\": 3,\n \"traits\": \"Ritual.\",\n \"permanent\": true,\n \"cycle\"\ + : \"The Scarlet Keys\"\n}" GUID: 52f6d6 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 16.72 posY: 3.38 posZ: 65.64 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.12 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Spare Parts 9e136f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Spare Parts 9e136f.yaml index 49f26f16a..d50d713ee 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Spare Parts 9e136f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Spare Parts 9e136f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450312 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4503': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08620\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Item. Expedition.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 2,\n \"wildIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Item. Expedition.\",\n \"willpowerIcons\": 2,\n\ + \ \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ + : \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of\ + \ the Earth\"\n}" GUID: 9e136f Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 79.23 posY: 3.33 posZ: 7.79 - rotX: 359.38 - rotY: 269.99 - rotZ: 359.99 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Spectral Razor 8e8a14.yaml b/unpacked/Bag All Player Cards 15bb07/Card Spectral Razor 8e8a14.yaml index 3c8cc1366..952fb957e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Spectral Razor 8e8a14.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Spectral Razor 8e8a14.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448029 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4480': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06201\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 8e8a14 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.51 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Spectral Web 863f1a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Spectral Web 863f1a.yaml index af74e892a..06c76c2e7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Spectral Web 863f1a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Spectral Web 863f1a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 275733 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2757': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Spell. DragSelectable: true GMNotes: "{\n \"id\": \"05177\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Spell.\",\n \"cycle\": \"The Circle Undone\"\ + \n}" GUID: 863f1a Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.06 posY: 3.86 posZ: -16.71 - rotX: 0.16 - rotY: 269.94 - rotZ: 359.86 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Spirit Athame (1) 90a106.yaml b/unpacked/Bag All Player Cards 15bb07/Card Spirit Athame (1) 90a106.yaml index 9206dc21e..4459741f7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Spirit Athame (1) 90a106.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Spirit Athame (1) 90a106.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230335 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03035\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Item. Relic. Weapon. Melee.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - cycle\": \"The Path to Carcosa\"\n}" + ,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 90a106 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.03 posY: 3.68 posZ: -16.7 - rotX: 0.09 - rotY: 269.98 - rotZ: 359.94 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Spirit of Humanity (2) e5901b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Spirit of Humanity (2) e5901b.yaml index 541a5f75f..e0f71a402 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Spirit of Humanity (2) e5901b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Spirit of Humanity (2) e5901b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 579909 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5799': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07229\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Ritual. Blessed. Cursed.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"\ - cycle\": \"The Innsmouth Conspiracy\"\n}" + \ \"willpowerIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: e5901b Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.94 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Spirit-Speaker a33470.yaml b/unpacked/Bag All Player Cards 15bb07/Card Spirit-Speaker a33470.yaml index caa2d7abb..9ac21ede2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Spirit-Speaker a33470.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Spirit-Speaker a33470.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 375016 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3750': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Ritual.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: a33470 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.0 - posY: 3.86 - posZ: -16.69 - rotX: 0.35 - rotY: 270.01 - rotZ: 359.91 + posY: 3.87 + posZ: -16.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Spiritual Resolve (5) 26922c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Spiritual Resolve (5) 26922c.yaml index 2f0b53fd0..3b5ddd554 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Spiritual Resolve (5) 26922c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Spiritual Resolve (5) 26922c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448938 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4489': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06323\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Ritual.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Ritual.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 26922c Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.02 posY: 3.99 posZ: -16.7 - rotX: 359.8 - rotY: 269.99 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Split the Angle 67e006.yaml b/unpacked/Bag All Player Cards 15bb07/Card Split the Angle 67e006.yaml index 5fc79619f..879fe650a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Split the Angle 67e006.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Split the Angle 67e006.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 381050 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3810': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"98008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"Promo\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Spell.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"Promo\"\n}" GUID: 67e006 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 - posY: 3.72 + posY: 3.71 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Springfield M1903 (4) (Taboo) 21664c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Springfield M1903 (4) (Taboo) 21664c.yaml index 0fcdae882..a681a268a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Springfield M1903 (4) (Taboo) 21664c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Springfield M1903 (4) (Taboo) 21664c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 584611 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5846': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02226-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Item. Weapon. Firearm.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}" + \ \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\"\ + : 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"\ + cycle\": \"The Dunwich Legacy\"\n}" GUID: 21664c Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 3.86 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.95 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Springfield M1903 (4) a7944d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Springfield M1903 (4) a7944d.yaml index 93d33e69d..ef8884148 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Springfield M1903 (4) a7944d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Springfield M1903 (4) a7944d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226356 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02226-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 4,\n \"level\": 4,\n \"traits\": \"Item. Weapon. Firearm.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}" + \ \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\"\ + : 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ],\n \"\ + cycle\": \"The Dunwich Legacy\"\n}" GUID: a7944d Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.06 posY: 3.87 posZ: -16.71 - rotX: 0.19 - rotY: 269.94 - rotZ: 359.84 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card St. Hubert's Key 423d46.yaml b/unpacked/Bag All Player Cards 15bb07/Card St. Hubert's Key 423d46.yaml index d329ea0ae..0cf25cddf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card St. Hubert's Key 423d46.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card St. Hubert's Key 423d46.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230331 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Cleansing Fire DragSelectable: true GMNotes: "{\n \"id\": \"03269\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 423d46 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.15 posY: 3.9 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stand Together (3) cd7b97.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stand Together (3) cd7b97.yaml index 5a7473f8b..5f091e34c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stand Together (3) cd7b97.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stand Together (3) cd7b97.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226352 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02148\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: cd7b97 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 4.09 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stand Together 7ec473.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stand Together 7ec473.yaml index e98bb161b..bbb534439 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stand Together 7ec473.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stand Together 7ec473.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545316 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60118\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 7ec473 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.14 posY: 3.68 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stargazing (1) 968a26.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stargazing (1) 968a26.yaml index c915efc63..28379b347 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stargazing (1) 968a26.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stargazing (1) 968a26.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 444022 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4440': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06027\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Insight. Augury.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 1,\n\ - \ \"id\": \"06028\"\n }\n ],\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Insight. Augury.\",\n \"bonded\"\ + : [\n {\n \"count\": 1,\n \"id\": \"06028\"\n }\n ],\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 968a26 Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 9.1 posY: 3.74 posZ: -16.72 - rotX: 0.06 - rotY: 269.86 - rotZ: 359.93 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stars of Hyades 1890d0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stars of Hyades 1890d0.yaml index f45a6de31..c2f67c53d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stars of Hyades 1890d0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stars of Hyades 1890d0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 374115 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3741': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"traits\": \"Curse.\",\n \"weakness\": true,\n \"cycle\": \"The Path to\ + \ Carcosa\"\n}" GUID: 1890d0 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.15 posY: 3.77 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Steadfast 4e1d91.yaml b/unpacked/Bag All Player Cards 15bb07/Card Steadfast 4e1d91.yaml index 27e5f72f4..6591698c3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Steadfast 4e1d91.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Steadfast 4e1d91.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 431006 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4310': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05022\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"willpowerIcons\": 1,\n \"combatIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 4e1d91 Grid: true GridProjection: false @@ -45,10 +44,10 @@ Tooltip: true Transform: posX: 9.14 posY: 3.76 - posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stealth (3) 26a3bf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stealth (3) 26a3bf.yaml index 18b4a456d..63841f219 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stealth (3) 26a3bf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stealth (3) 26a3bf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 440720 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4407': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"52005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"Return\ - \ to the Path to Carcosa\"\n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"agilityIcons\"\ + : 2,\n \"cycle\": \"Return to the Path to Carcosa\"\n}" GUID: 26a3bf Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 - posY: 3.68 + posY: 3.69 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stealth ddee79.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stealth ddee79.yaml index 5b46f2306..dd040c8c5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stealth ddee79.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stealth ddee79.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368626 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3686': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03028\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: ddee79 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.87 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stella Clark 00e18e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stella Clark 00e18e.yaml index 4dce5f948..0bc3e2231 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stella Clark 00e18e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stella Clark 00e18e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 234904 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2349': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.83 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stella Clark dd3dbd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stella Clark dd3dbd.yaml index 70a7461d3..3bf842907 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stella Clark dd3dbd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stella Clark dd3dbd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 274220 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2742': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"60501-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"60501-m\",\n \"type\": \"Minicard\"\n}" GUID: dd3dbd Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.85 posZ: -18.15 - rotX: 359.91 - rotY: 269.95 - rotZ: 0.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stick to the Plan (3) 82d62c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stick to the Plan (3) 82d62c.yaml index 5042e7950..b77718582 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stick to the Plan (3) 82d62c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stick to the Plan (3) 82d62c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226350 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03264\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"The Path to Carcosa\"\n}" GUID: 82d62c Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.97 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stirring Up Trouble (1) e99f0d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stirring Up Trouble (1) e99f0d.yaml index d673960cd..86b7149a3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stirring Up Trouble (1) e99f0d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stirring Up Trouble (1) e99f0d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553104 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5531': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07112\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Insight. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Insight. Cursed.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: e99f0d Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.1 posY: 3.71 posZ: -16.72 - rotX: 0.11 - rotY: 269.85 - rotZ: 359.9 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Storm of Spirits (3) 1e9213.yaml b/unpacked/Bag All Player Cards 15bb07/Card Storm of Spirits (3) 1e9213.yaml index b19255815..f0ff86f11 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Storm of Spirits (3) 1e9213.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Storm of Spirits (3) 1e9213.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 444021 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4440': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"52008\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 2,\n\ - \ \"cycle\": \"Return to the Path to Carcosa\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 2,\n \"cycle\": \"Return to the Path to Carcosa\"\n}" GUID: 1e9213 Grid: true GridProjection: false @@ -47,7 +46,7 @@ Transform: posY: 3.74 posZ: -16.69 rotX: 0.0 - rotY: 270.01 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Storm of Spirits 9c922f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Storm of Spirits 9c922f.yaml index 3efac48d4..f7e0aaedf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Storm of Spirits 9c922f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Storm of Spirits 9c922f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230314 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03153\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 9c922f Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.81 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) (Taboo) e95ddb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) (Taboo) e95ddb.yaml index 42e5be765..4d46adaac 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) (Taboo) e95ddb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) (Taboo) e95ddb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558208 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Acidic Ichor DragSelectable: true GMNotes: "{\n \"id\": \"02263-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Science.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Science.\",\n \"combatIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n\ + }" GUID: e95ddb Grid: true GridProjection: false @@ -48,9 +48,9 @@ Transform: posX: 21.83 posY: 4.28 posZ: -44.46 - rotX: 359.99 - rotY: 269.85 - rotZ: 0.2 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) 4874bc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) 4874bc.yaml index 77b17c80f..4456e0c4e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) 4874bc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) 4874bc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430656 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Restorative Concoction DragSelectable: true GMNotes: "{\n \"id\": \"02262\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Science.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 4,\n \"type\": \"Supply\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Science.\",\n \"willpowerIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n\ + }" GUID: 4874bc Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 - posY: 3.68 + posY: 3.69 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) 9afe23.yaml b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) 9afe23.yaml index 614f0bb86..7803598e9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) 9afe23.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) 9afe23.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430654 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Freezing Variant DragSelectable: true GMNotes: "{\n \"id\": \"02264\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Science.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 4,\n \"type\": \"Supply\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Science.\",\n \"agilityIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n\ + }" GUID: 9afe23 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 posY: 3.67 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) d96e4b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) d96e4b.yaml index 9de83ba67..a13ed7479 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) d96e4b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) d96e4b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 313905 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3139': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Empowering Elixir DragSelectable: true GMNotes: "{\n \"id\": \"51004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Science.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Return to The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Science.\",\n \"intellectIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to The Dunwich\ + \ Legacy\"\n}" GUID: d96e4b Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: - posX: 9.17 + posX: 9.16 posY: 3.3 posZ: -16.73 - rotX: 359.94 - rotY: 269.8 - rotZ: 359.94 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) fa61ba.yaml b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) fa61ba.yaml index c003c0ae5..dc3510fdf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) fa61ba.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution (4) fa61ba.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430655 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4306': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Acidic Ichor DragSelectable: true GMNotes: "{\n \"id\": \"02263\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Science.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 4,\n \"traits\": \"Item. Science.\",\n \"combatIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dunwich Legacy\"\n\ + }" GUID: fa61ba Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.67 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution 565b6b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution 565b6b.yaml index 323f06b5f..3f76b5830 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Strange Solution 565b6b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Strange Solution 565b6b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368422 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Unidentified DragSelectable: true GMNotes: "{\n \"id\": \"02021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Science.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Science.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 565b6b Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.72 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stray Cat f474b1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stray Cat f474b1.yaml index 2578c2aeb..292275ec2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stray Cat f474b1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stray Cat f474b1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368824 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01076\",\n \"alternate_ids\": [\n \"01576\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 1,\n \"level\"\ - : 0,\n \"traits\": \"Ally. Creature.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}" + : 0,\n \"traits\": \"Ally. Creature.\",\n \"agilityIcons\": 1,\n \"cycle\": \"\ + Core\"\n}" GUID: f474b1 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 270.02 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Streetwise (3) (Taboo) 88a481.yaml b/unpacked/Bag All Player Cards 15bb07/Card Streetwise (3) (Taboo) 88a481.yaml index 647e6dbce..f2d7122ae 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Streetwise (3) (Taboo) 88a481.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Streetwise (3) (Taboo) 88a481.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450605 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02189-t\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"The Dunwich Legacy\"\n}" GUID: 88a481 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.18 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Streetwise (3) d7dbac.yaml b/unpacked/Bag All Player Cards 15bb07/Card Streetwise (3) d7dbac.yaml index 53a1ae98b..b796c4b36 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Streetwise (3) d7dbac.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Streetwise (3) d7dbac.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315251 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02189\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"The Dunwich Legacy\"\n}" GUID: d7dbac Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.01 posY: 3.94 posZ: -16.7 - rotX: 359.89 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Streetwise a973aa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Streetwise a973aa.yaml index 8da7acefb..a9ff7d301 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Streetwise a973aa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Streetwise a973aa.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538609 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5386': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60311\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: a973aa Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.79 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Strength in Numbers (1) 4e6d80.yaml b/unpacked/Bag All Player Cards 15bb07/Card Strength in Numbers (1) 4e6d80.yaml index aa4041e05..52ca26ea0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Strength in Numbers (1) 4e6d80.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Strength in Numbers (1) 4e6d80.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378906 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08077\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 1,\n \"traits\": \"Innate. Synergy.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 1,\n \"dynamicIcons\": true,\n \"cycle\"\ - : \"Edge of the Earth\"\n}" + ,\n \"level\": 1,\n \"traits\": \"Innate. Synergy.\",\n \"wildIcons\": 1,\n \ + \ \"dynamicIcons\": true,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 4e6d80 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.99 posY: 3.76 posZ: -16.69 - rotX: 359.75 - rotY: 270.01 - rotZ: 0.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card String of Curses 046b16.yaml b/unpacked/Bag All Player Cards 15bb07/Card String of Curses 046b16.yaml index cb4be4347..27677cac8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card String of Curses 046b16.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card String of Curses 046b16.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379112 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09088\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 046b16 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 358.76 - rotY: 270.02 - rotZ: 358.66 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stroke of Luck (2) 06228f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stroke of Luck (2) 06228f.yaml index b9a79992c..3d2b24750 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stroke of Luck (2) 06228f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stroke of Luck (2) 06228f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368843 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02271\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 2,\n \"traits\": \"Innate. Fortune.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\ - \n}" + ,\n \"level\": 2,\n \"traits\": \"Innate. Fortune.\",\n \"wildIcons\": 1,\n \ + \ \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 06228f Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.15 posY: 4.06 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stubborn Detective 4ea68b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stubborn Detective 4ea68b.yaml index 66d17a780..6005458be 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stubborn Detective 4ea68b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stubborn Detective 4ea68b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527418 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5274': BackIsHidden: true @@ -21,8 +21,7 @@ Description: Enemy DragSelectable: true GMNotes: "{\n \"id\": \"01103\",\n \"alternate_ids\": [\n \"01603\"\n ],\n \ \ \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Detective.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n\ - \ \"cycle\": \"Core\"\n}" + ,\n \"weakness\": true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"Core\"\n}" GUID: 4ea68b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 32.19 posY: 2.3 posZ: -77.72 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Studious (3) 4ea716.yaml b/unpacked/Bag All Player Cards 15bb07/Card Studious (3) 4ea716.yaml index ebc653d36..384bc457e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Studious (3) 4ea716.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Studious (3) 4ea716.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 592419 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5924': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05276\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"The Circle Undone\"\n}" GUID: 4ea716 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 5.08 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stunning Blow 58c435.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stunning Blow 58c435.yaml index bb187891f..64c06b270 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stunning Blow 58c435.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stunning Blow 58c435.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368805 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04112\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"combatIcons\": 1,\n \"cycle\"\ + : \"The Forgotten Age\"\n}" GUID: 58c435 Grid: true GridProjection: false @@ -42,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.08 - posY: 3.68 + posX: 9.07 + posY: 3.69 posZ: -16.71 - rotX: 359.93 - rotY: 269.92 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stupor a42bcf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stupor a42bcf.yaml index c9edbc1bc..ad0f1d368 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stupor a42bcf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stupor a42bcf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378920 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"08133\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: a42bcf Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.19 posY: 2.38 posZ: -16.73 - rotX: 359.88 - rotY: 269.8 - rotZ: 0.26 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Stylish Coat (1) 0a1b3a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Stylish Coat (1) 0a1b3a.yaml index 2910d92ac..a96d18c96 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Stylish Coat (1) 0a1b3a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Stylish Coat (1) 0a1b3a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379064 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09071\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Clothing.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1\n}" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Item. Clothing.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 0a1b3a Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 16.67 posY: 3.35 posZ: 65.93 - rotX: 357.42 - rotY: 270.07 - rotZ: 357.21 + rotX: 357.0 + rotY: 270.0 + rotZ: 357.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Suggestion (1) 0ec9bf.yaml b/unpacked/Bag All Player Cards 15bb07/Card Suggestion (1) 0ec9bf.yaml index d2a71851f..cd178da3a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Suggestion (1) 0ec9bf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Suggestion (1) 0ec9bf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 440721 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4407': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"52006\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Return to the Path to Carcosa\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the Path to\ + \ Carcosa\"\n}" GUID: 0ec9bf Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: - posX: 9.17 + posX: 9.16 posY: 3.29 posZ: -16.73 - rotX: 359.94 - rotY: 269.8 - rotZ: 359.94 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Suggestion (4) e7f37b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Suggestion (4) e7f37b.yaml index 0c489acb9..6e6740d11 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Suggestion (4) e7f37b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Suggestion (4) e7f37b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315259 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03268\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Path to Carcosa\"\ - \n}" + ,\n \"cost\": 3,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"\ + type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + The Path to Carcosa\"\n}" GUID: e7f37b Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.51 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Summoned Hound (1) ab4fb3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Summoned Hound (1) ab4fb3.yaml index 5e240cd73..93fd38d2e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Summoned Hound (1) ab4fb3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Summoned Hound (1) ab4fb3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527235 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5272': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06282\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Ally. Summon.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"count\": 1,\n\ - \ \"id\": \"06283\"\n }\n ],\n \"intellectIcons\": 1,\n \"combatIcons\"\ - : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Ally. Summon.\",\n \"bonded\"\ + : [\n {\n \"count\": 1,\n \"id\": \"06283\"\n }\n ],\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: ab4fb3 Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.8 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Summoned Nightgaunt cf96b9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Summoned Nightgaunt cf96b9.yaml index 01e938916..8babe8dbb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Summoned Nightgaunt cf96b9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Summoned Nightgaunt cf96b9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 546917 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5469': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: Monster. Nightgaunt. Power. DragSelectable: true GMNotes: "{\n \"id\": \"83058\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 4,\n \"traits\": \"Monster. Nightgaunt. Power.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\"\ - : \"\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\ - \n}" + ,\n \"cost\": 4,\n \"traits\": \"Monster. Nightgaunt. Power.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"\ + count\": 3,\n \"type\": \"\",\n \"token\": \"resource\"\n }\n ],\n\ + \ \"cycle\": \"Standalone\"\n}" GUID: cf96b9 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.15 posY: 4.16 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Summoned Servitor 73b311.yaml b/unpacked/Bag All Player Cards 15bb07/Card Summoned Servitor 73b311.yaml index 6328a5ee5..9c4d89f57 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Summoned Servitor 73b311.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Summoned Servitor 73b311.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379104 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,31 +20,29 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09080\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Summon.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"customizations\"\ - : [\n {\n \"name\": \"Armored Carapace\",\n \"xp\": 1,\n \"text\"\ - : \"Summoned Servitor gains a health value of 3. It can be assigned damage dealt\ - \ to any investigator at its location.\"\n },\n {\n \"name\": \"Claws\ - \ that Catch\",\n \"xp\": 1,\n \"text\": \"Add this action: \uFFFD\u20AC\ - \uFFFD? Fight. You fight any enemy at this location with a base Combat of 4. Ignore\ - \ the aloof and retaliate keywords for this attack.\uFFFD\u20AC?\"\n },\n \ - \ {\n \"name\": \"Jaws that Snatch\",\n \"xp\": 1,\n \"text\": \"\ - Add this action: \uFFFD\u20AC\uFFFD? Evade. You attempt to evade any enemy at this\ - \ location with a base Agility of 4. Ignore the alert keyword for this evasion attempt.\uFFFD\ - \u20AC?\"\n },\n {\n \"name\": \"Eyes of Flame\",\n \"xp\": 1,\n\ - \ \"text\": \"Add this action: \uFFFD\u20AC\uFFFD? Investigate. You investigate\ - \ this location with a base Intellect of 4.\uFFFD\u20AC?\"\n },\n {\n \ - \ \"name\": \"Wings of Night\",\n \"xp\": 1,\n \"text\": \"After Summoned\ - \ Servitor moves from your location to a connecting location, you may move to that\ - \ location, as well.\"\n },\n {\n \"name\": \"Dominance\",\n \"\ - xp\": 2,\n \"text\": \"Summoned Servitor no longer takes up an (select one):\ - \ arcane / ally slot.\"\n },\n {\n \"name\": \"Dreaming Call\",\n \ - \ \"xp\": 3,\n \"text\": \"Instead of discarding another asset you control\ - \ in order to play Summoned Servitor, you may return that asset to its owner\uFFFD\ - \u20AC\uFFFDs hand.\"\n },\n {\n \"name\": \"D\uFFFDmonic Influence\"\ - ,\n \"xp\": 5,\n \"text\": \"Summoned Servitor can take 2 different actions\ - \ instead of 1 during each of your turns.\"\n }\n ],\n \"cycle\": \"The Scarlet\ - \ Keys\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Summon.\",\n \"willpowerIcons\"\ + : 1,\n \"customizations\": [\n {\n \"name\": \"Armored Carapace\",\n \ + \ \"xp\": 1,\n \"text\": \"Summoned Servitor gains a health value of 3.\ + \ It can be assigned damage dealt to any investigator at its location.\"\n },\n\ + \ {\n \"name\": \"Claws that Catch\",\n \"xp\": 1,\n \"text\"\ + : \"Add this action: \u201C\u27D0 Fight. You fight any enemy at this location with\ + \ a base Combat of 4. Ignore the aloof and retaliate keywords for this attack.\u201D\ + \"\n },\n {\n \"name\": \"Jaws that Snatch\",\n \"xp\": 1,\n \ + \ \"text\": \"Add this action: \u201C\u27D0 Evade. You attempt to evade any enemy\ + \ at this location with a base Agility of 4. Ignore the alert keyword for this evasion\ + \ attempt.\u201D\"\n },\n {\n \"name\": \"Eyes of Flame\",\n \"\ + xp\": 1,\n \"text\": \"Add this action: \u201C\u27D0 Investigate. You investigate\ + \ this location with a base Intellect of 4.\u201D\"\n },\n {\n \"name\"\ + : \"Wings of Night\",\n \"xp\": 1,\n \"text\": \"After Summoned Servitor\ + \ moves from your location to a connecting location, you may move to that location,\ + \ as well.\"\n },\n {\n \"name\": \"Dominance\",\n \"xp\": 2,\n\ + \ \"text\": \"Summoned Servitor no longer takes up an (select one): arcane\ + \ / ally slot.\"\n },\n {\n \"name\": \"Dreaming Call\",\n \"xp\"\ + : 3,\n \"text\": \"Instead of discarding another asset you control in order\ + \ to play Summoned Servitor, you may return that asset to its owner\u2019s hand.\"\ + \n },\n {\n \"name\": \"D\xE6monic Influence\",\n \"xp\": 5,\n \ + \ \"text\": \"Summoned Servitor can take 2 different actions instead of 1 during\ + \ each of your turns.\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 73b311 Grid: true GridProjection: false @@ -69,9 +67,9 @@ Transform: posX: 16.67 posY: 3.38 posZ: 65.93 - rotX: 359.36 - rotY: 270.01 - rotZ: 359.31 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sure Gamble (3) 308be1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sure Gamble (3) 308be1.yaml index 4fdaa2481..31149ad21 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sure Gamble (3) 308be1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sure Gamble (3) 308be1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315254 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01056\",\n \"alternate_ids\": [\n \"01556\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"cost\": 2,\n \"level\": 3,\n\ - \ \"traits\": \"Fortune. Insight.\",\n \"permanent\": false,\n \"weakness\":\ - \ false,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Fortune. Insight.\",\n \"cycle\": \"Core\"\n}" GUID: 308be1 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0.08 - rotY: 269.99 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Surgical Kit (3) c8ecf2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Surgical Kit (3) c8ecf2.yaml index 301c2cac2..e952d375a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Surgical Kit (3) c8ecf2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Surgical Kit (3) c8ecf2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379049 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09056\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Tool. Science.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\"\ - : [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" + intellectIcons\": 2,\n \"uses\": [\n {\n \"count\": 4,\n \"type\"\ + : \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Scarlet\ + \ Keys\"\n}" GUID: c8ecf2 Grid: true GridProjection: false @@ -48,9 +48,9 @@ Transform: posX: 16.67 posY: 3.37 posZ: 65.93 - rotX: 358.29 - rotY: 270.03 - rotZ: 358.14 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Surprising Find (1) ff59dd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Surprising Find (1) ff59dd.yaml index ca7672029..7747d055d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Surprising Find (1) ff59dd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Surprising Find (1) ff59dd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448838 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4488': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06278\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 1,\n \"traits\": \"Fortune. Research.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n\ - }" + ,\n \"level\": 1,\n \"traits\": \"Fortune. Research.\",\n \"wildIcons\": 1,\n\ + \ \"cycle\": \"The Dream-Eaters\"\n}" GUID: ff59dd Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.15 posY: 3.68 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Survey the Area (1) 6aa5dc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Survey the Area (1) 6aa5dc.yaml index 49442ca1b..5b4958d70 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Survey the Area (1) 6aa5dc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Survey the Area (1) 6aa5dc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379027 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08037\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 1,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"dynamicIcons\": true,\n \"cycle\": \"Edge of the Earth\"\ - \n}" + ,\n \"level\": 1,\n \"traits\": \"Practiced. Expert.\",\n \"dynamicIcons\": true,\n\ + \ \"cycle\": \"Edge of the Earth\"\n}" GUID: 6aa5dc Grid: true GridProjection: false @@ -46,8 +45,8 @@ Transform: posX: 9.2 posY: 2.16 posZ: -16.74 - rotX: 359.92 - rotY: 269.79 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Survival Instinct (2) be4abe.yaml b/unpacked/Bag All Player Cards 15bb07/Card Survival Instinct (2) be4abe.yaml index b07154b97..30c4eb088 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Survival Instinct (2) be4abe.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Survival Instinct (2) be4abe.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368842 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02235\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\ - \n}" + ,\n \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"agilityIcons\": 2,\n\ + \ \"cycle\": \"The Dunwich Legacy\"\n}" GUID: be4abe Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.82 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Survival Instinct 078efb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Survival Instinct 078efb.yaml index 87d412927..e9721a4f2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Survival Instinct 078efb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Survival Instinct 078efb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368800 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01081\",\n \"alternate_ids\": [\n \"01581\"\n ],\n \ \ \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"level\": 0,\n \"traits\"\ - : \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\"\ - : 1,\n \"cycle\": \"Core\"\n}" + : \"Innate.\",\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n}" GUID: 078efb Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 269.99 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Survival Knife (2) c1d796.yaml b/unpacked/Bag All Player Cards 15bb07/Card Survival Knife (2) c1d796.yaml index 160074c1b..02bef0e42 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Survival Knife (2) c1d796.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Survival Knife (2) c1d796.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545201 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5452': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"53002\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\"\ - : \"Return to the Forgotten Age\"\n}" + combatIcons\": 2,\n \"cycle\": \"Return to the Forgotten Age\"\n}" GUID: c1d796 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.81 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Survival Knife 4d971e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Survival Knife 4d971e.yaml index d6d6423d1..d7f3db3ae 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Survival Knife 4d971e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Survival Knife 4d971e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226322 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04017\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\"\ - : \"The Forgotten Age\"\n}" + combatIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 4d971e Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.68 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sweeping Kick (1) b4d67b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sweeping Kick (1) b4d67b.yaml index d29fec932..410886e34 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sweeping Kick (1) b4d67b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sweeping Kick (1) b4d67b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379013 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08023\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Spirit. Tactic. Trick.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"cycle\": \"Edge of the Earth\"\n}" + \ \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\ + \n}" GUID: b4d67b Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 9.2 posY: 2.93 posZ: -16.73 - rotX: 0.04 - rotY: 269.8 - rotZ: 359.36 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Swift Reflexes c2d211.yaml b/unpacked/Bag All Player Cards 15bb07/Card Swift Reflexes c2d211.yaml index 4d709b569..f721abced 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Swift Reflexes c2d211.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Swift Reflexes c2d211.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 277711 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2777': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05156\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Gambit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Gambit.\",\n \"agilityIcons\"\ + : 2,\n \"cycle\": \"The Circle Undone\"\n}" GUID: c2d211 Grid: true GridProjection: false @@ -43,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.1 + posX: 9.11 posY: 3.69 posZ: -16.72 - rotX: 359.9 - rotY: 269.85 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Swift Reload (2) 2cfa4f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Swift Reload (2) 2cfa4f.yaml index 5d3a1e798..adb4000b9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Swift Reload (2) 2cfa4f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Swift Reload (2) 2cfa4f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 380028 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3800': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06161\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Tactic. Trick.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Tactic. Trick.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 2cfa4f Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.07 posY: 3.76 posZ: -16.71 - rotX: 0.5 - rotY: 269.92 - rotZ: 359.65 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Switchblade (2) (Taboo) 842d41.yaml b/unpacked/Bag All Player Cards 15bb07/Card Switchblade (2) (Taboo) 842d41.yaml index 66882dbae..cb920351c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Switchblade (2) (Taboo) 842d41.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Switchblade (2) (Taboo) 842d41.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450603 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02152-t\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Melee. Illicit.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\ + \n}" GUID: 842d41 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.99 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Switchblade (2) 2fba3b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Switchblade (2) 2fba3b.yaml index bd0b44bc2..472d10717 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Switchblade (2) 2fba3b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Switchblade (2) 2fba3b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315243 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02152\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Item. Weapon. Melee. Illicit.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\ + \n}" GUID: 2fba3b Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.1 posY: 3.68 posZ: -16.71 - rotX: 359.94 - rotY: 269.87 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Switchblade 213853.yaml b/unpacked/Bag All Player Cards 15bb07/Card Switchblade 213853.yaml index ad35ebc1e..eac8cc20d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Switchblade 213853.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Switchblade 213853.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368621 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3686': BackIsHidden: true @@ -21,9 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01044\",\n \"alternate_ids\": [\n \"60307\",\n \"\ 01544\"\n ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 1,\n\ - \ \"level\": 0,\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"Core\"\n\ - }" + \ \"level\": 0,\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"Core\"\n}" GUID: '213853' Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 29.34 posY: 3.37 posZ: -54.31 - rotX: 0.08 + rotX: 0.0 rotY: 270.0 - rotZ: 0.01 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Sword Cane 9c32e2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Sword Cane 9c32e2.yaml index 561d300ca..afed4da19 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Sword Cane 9c32e2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Sword Cane 9c32e2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 582423 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5824': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07029\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Relic. Weapon. Melee.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"\ - cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"combatIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 9c32e2 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.71 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Takada's Cache e627e8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Takada's Cache e627e8.yaml index 1773f9a86..f4758b872 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Takada's Cache e627e8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Takada's Cache e627e8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 452307 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4523': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08737\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Supply.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Supply.\",\n \"wildIcons\": 1,\n \"cycle\"\ + : \"Edge of the Earth\"\n}" GUID: e627e8 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 79.18 posY: 3.32 posZ: 8.23 - rotX: 359.54 - rotY: 269.99 - rotZ: 359.39 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Take Heart cc6e4d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Take Heart cc6e4d.yaml index af5dfed5b..9b9d570b1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Take Heart cc6e4d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Take Heart cc6e4d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368806 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04201\",\n \"alternate_ids\": [\n \"60519\"\n ],\n \ \ \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"level\": 0,\n \"traits\"\ - : \"Innate.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"\ - The Forgotten Age\"\n}" + : \"Innate.\",\n \"cycle\": \"The Forgotten Age\"\n}" GUID: cc6e4d Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 3.82 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Take the Initiative 50fb37.yaml b/unpacked/Bag All Player Cards 15bb07/Card Take the Initiative 50fb37.yaml index a8d34f238..7dd78c3d0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Take the Initiative 50fb37.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Take the Initiative 50fb37.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226300 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04150\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\"\ - ,\n \"level\": 0,\n \"traits\": \"Practiced. Bold.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 3,\n \"cycle\": \"The Forgotten Age\"\ - \n}" + ,\n \"level\": 0,\n \"traits\": \"Practiced. Bold.\",\n \"wildIcons\": 3,\n \ + \ \"cycle\": \"The Forgotten Age\"\n}" GUID: 50fb37 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.78 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Talisman of Protection 7b4b0c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Talisman of Protection 7b4b0c.yaml index c822611b4..591a74a90 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Talisman of Protection 7b4b0c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Talisman of Protection 7b4b0c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378954 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08116\",\n \"type\": \"Asset\",\n \"class\": \"Mystic|Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Edge\ - \ of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 7b4b0c Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.85 posZ: -16.73 - rotX: 359.9 - rotY: 269.8 - rotZ: 0.14 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Taunt (2) 9956d5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Taunt (2) 9956d5.yaml index c5a9d9578..3547453ee 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Taunt (2) 9956d5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Taunt (2) 9956d5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226344 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02019\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Tactic.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich\ + \ Legacy\"\n}" GUID: 9956d5 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 9.13 posY: 3.69 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Taunt (3) 85fe46.yaml b/unpacked/Bag All Player Cards 15bb07/Card Taunt (3) 85fe46.yaml index e9f736626..97173c67c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Taunt (3) 85fe46.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Taunt (3) 85fe46.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545328 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60130\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"combatIcons\": 1,\n\ - \ \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 1,\n \"level\": 3,\n \"traits\": \"Tactic.\",\n \"willpowerIcons\"\ + : 2,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator\ + \ Packs\"\n}" GUID: 85fe46 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 9.13 posY: 5.03 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Taunt d5cac6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Taunt d5cac6.yaml index 42f512ab5..abf6baeca 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Taunt d5cac6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Taunt d5cac6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226308 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02017\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: d5cac6 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.94 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Teachings of the Order 90fdb0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Teachings of the Order 90fdb0.yaml index d70e77ac7..0b7844f02 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Teachings of the Order 90fdb0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Teachings of the Order 90fdb0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 581922 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5819': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07151\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Tome.\",\n \"permanent\": true,\n \"weakness\": false,\n\ - \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"traits\": \"Item. Tome.\",\n \"permanent\": true,\n \"cycle\": \"The Innsmouth\ + \ Conspiracy\"\n}" GUID: 90fdb0 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 3.96 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Teamwork eab2ed.yaml b/unpacked/Bag All Player Cards 15bb07/Card Teamwork eab2ed.yaml index 5bb1603cb..02de3df27 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Teamwork eab2ed.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Teamwork eab2ed.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226306 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02018\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: eab2ed Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 4.74 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 05e697.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 05e697.yaml index 04e60a446..241784175 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 05e697.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 05e697.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449750 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4497': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"08728\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Edge of the\ + \ Earth\"\n}" GUID: 05e697 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 76.74 posY: 9.16 posZ: 17.5 - rotX: 359.99 - rotY: 269.99 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 0ba293.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 0ba293.yaml index 56e82b6a1..d82400f30 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 0ba293.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 0ba293.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449747 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4497': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"08725\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Edge of the\ + \ Earth\"\n}" GUID: 0ba293 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 76.29 posY: 15.16 posZ: 23.91 - rotX: 359.99 - rotY: 269.99 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 0ef2ba.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 0ef2ba.yaml index 6cd2a7cd6..ab6141c21 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 0ef2ba.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 0ef2ba.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449751 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4497': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"08729\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Edge of the\ + \ Earth\"\n}" GUID: 0ef2ba Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 76.46 posY: 29.78 posZ: 14.47 - rotX: 359.99 - rotY: 269.99 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 361f15.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 361f15.yaml index ae130874f..2b6999ffc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 361f15.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 361f15.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449749 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4497': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"08727\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Edge of the\ + \ Earth\"\n}" GUID: 361f15 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 70.81 posY: 2.54 posZ: 35.58 - rotX: 359.99 - rotY: 269.98 - rotZ: 359.22 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 519e41.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 519e41.yaml index 13cee323e..420951382 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 519e41.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 519e41.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449745 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4497': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"08723\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Edge of the\ + \ Earth\"\n}" GUID: 519e41 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 76.21 posY: 9.16 posZ: 18.21 - rotX: 359.99 - rotY: 269.99 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 76409f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 76409f.yaml index b68c7611b..ba14ece3f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 76409f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li 76409f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449746 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4497': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"08724\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Edge of the\ + \ Earth\"\n}" GUID: 76409f Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 76.72 posY: 9.16 posZ: 19.04 - rotX: 359.99 - rotY: 269.99 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li f5bd65.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li f5bd65.yaml index ba546bafd..6f5cc3c3b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li f5bd65.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tekeli-li f5bd65.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449748 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4497': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"08726\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Edge of the\ + \ Earth\"\n}" GUID: f5bd65 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 72.29 posY: 2.54 posZ: 30.83 - rotX: 359.99 - rotY: 269.99 - rotZ: 359.27 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Telescopic Sight (3) (Taboo) dc65fd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Telescopic Sight (3) (Taboo) dc65fd.yaml index d0db754ea..35e5f42b9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Telescopic Sight (3) (Taboo) dc65fd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Telescopic Sight (3) (Taboo) dc65fd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 584512 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5845': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05230-t\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Upgrade.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Upgrade.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\ + \n}" GUID: dc65fd Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 8.98 posY: 3.82 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Telescopic Sight (3) db2c81.yaml b/unpacked/Bag All Player Cards 15bb07/Card Telescopic Sight (3) db2c81.yaml index 5ec2cbe23..3c0717156 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Telescopic Sight (3) db2c81.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Telescopic Sight (3) db2c81.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 292816 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2928': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05230\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Upgrade.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Upgrade.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\ + \n}" GUID: db2c81 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 9.04 posY: 3.9 posZ: -16.7 - rotX: 359.82 - rotY: 269.96 - rotZ: 0.08 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tempt Fate 33f906.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tempt Fate 33f906.yaml index f0ca4ae9b..9dab62c2b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tempt Fate 33f906.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tempt Fate 33f906.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 583531 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5835': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07037\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Fortune. Blessed. Cursed.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Innsmouth Conspiracy\"\n}" + ,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 33f906 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 5.33 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash (3) b5e5f1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash (3) b5e5f1.yaml index 4943e5c24..ee51cdfdc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash (3) b5e5f1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash (3) b5e5f1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 292912 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2929': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Rogue DragSelectable: true GMNotes: "{\n \"id\": \"05190\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Illicit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Supply\",\n \"\ - token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Illicit.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"uses\": [\n {\n \"count\": 2,\n \"\ + type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + The Circle Undone\"\n}" GUID: b5e5f1 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.07 posY: 3.74 posZ: -16.71 - rotX: 0.55 - rotY: 269.92 - rotZ: 359.62 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash (3) cbe256.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash (3) cbe256.yaml index 98995f8dc..08a926d63 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash (3) cbe256.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash (3) cbe256.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 293013 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2930': BackIsHidden: true @@ -20,11 +20,10 @@ CustomDeck: Description: Survivor DragSelectable: true GMNotes: "{\n \"id\": \"05191\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Illicit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n\ - }" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Illicit.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"\ + type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"\ + The Circle Undone\"\n}" GUID: cbe256 Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.09 - posY: 3.68 + posY: 3.69 posZ: -16.71 - rotX: 359.92 - rotY: 269.89 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash be33f5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash be33f5.yaml index 5ee360b83..4b2a10cc4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash be33f5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tennessee Sour Mash be33f5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 277605 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2776': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05117\",\n \"type\": \"Asset\",\n \"class\": \"Rogue|Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Illicit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 2,\n \"type\": \"Supply\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Illicit.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n\ + }" GUID: be33f5 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.11 posY: 3.93 posZ: -16.72 rotX: 0.0 - rotY: 269.83 - rotZ: 359.97 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Terrible Secret 06322f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Terrible Secret 06322f.yaml index 3751c5e63..f1fed4371 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Terrible Secret 06322f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Terrible Secret 06322f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527561 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5275': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"The Circle Undone\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"The Circle\ + \ Undone\"\n}" GUID: 06322f Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.15 posY: 3.9 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tetsuo Mori 08e5a6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tetsuo Mori 08e5a6.yaml index e0bfb106b..6bb084c9f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tetsuo Mori 08e5a6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tetsuo Mori 08e5a6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379829 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3798': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Too Noble for His Own Good DragSelectable: true GMNotes: "{\n \"id\": \"06155\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Police.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ - \n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Ally. Police.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 08e5a6 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.74 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The 13th Vision c1ce8e.yaml b/unpacked/Bag All Player Cards 15bb07/Card The 13th Vision c1ce8e.yaml index bf5edb3cd..fbef51d22 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The 13th Vision c1ce8e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The 13th Vision c1ce8e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 290321 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2903': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05041\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Omen.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - basicWeaknessCount\": 2,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"traits\": \"Omen.\",\n \"weakness\": true,\n \"basicWeaknessCount\": 2,\n\ + \ \"cycle\": \"The Circle Undone\"\n}" GUID: c1ce8e Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.06 posY: 3.85 posZ: -16.71 - rotX: 0.14 - rotY: 269.94 - rotZ: 359.88 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Bell Tolls 6cbc01.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Bell Tolls 6cbc01.yaml index 160188bb7..a6acd40b6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Bell Tolls 6cbc01.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Bell Tolls 6cbc01.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 537609 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"04042\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \ - \ \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"traits\": \"Curse.\",\n \"weakness\": true,\n \"cycle\": \"The Forgotten\ + \ Age\"\n}" GUID: 6cbc01 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.07 posY: 3.69 posZ: -16.71 - rotX: 0.05 - rotY: 269.92 - rotZ: 359.94 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Black Book ae3775.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Black Book ae3775.yaml index d8a7332e8..351974070 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Black Book ae3775.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Black Book ae3775.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 275732 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2757': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: Signed in Blood DragSelectable: true GMNotes: "{\n \"id\": \"05150\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Item. Tome. Relic.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"\ - wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Item. Tome. Relic.\",\n \"willpowerIcons\":\ + \ 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\ + \n}" GUID: ae3775 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.17 posY: 2.91 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Black Cat (5) 16e57b.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Black Cat (5) 16e57b.yaml index 7c0864a8a..a8401cef5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Black Cat (5) 16e57b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Black Cat (5) 16e57b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448613 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4486': BackIsHidden: true @@ -21,8 +21,7 @@ Description: A Liar, or a Prophet, or Both DragSelectable: true GMNotes: "{\n \"id\": \"06285\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ ,\n \"cost\": 2,\n \"level\": 5,\n \"traits\": \"Ally. Avatar. Dreamlands.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\"\ - : \"The Dream-Eaters\"\n}" + ,\n \"wildIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 16e57b Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.12 posY: 4.07 posZ: -16.72 - rotX: 0.09 - rotY: 269.82 - rotZ: 359.91 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Black Fan (3) 3eafd5.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Black Fan (3) 3eafd5.yaml index fb8cb5aed..77969295d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Black Fan (3) 3eafd5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Black Fan (3) 3eafd5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379047 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: Symbol of Power DragSelectable: true GMNotes: "{\n \"id\": \"08057\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Relic.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\ + \n}" GUID: 3eafd5 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.14 posZ: -16.74 - rotX: 359.92 - rotY: 269.79 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone (3) a775ad.ttslua b/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone (3) a775ad.ttslua index b7aabf114..20a85e19d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone (3) a775ad.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone (3) a775ad.ttslua @@ -64,4 +64,4 @@ function getChaosBag() end if chaosbag == nil then printToAll("No chaos bag found") end return chaosbag -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone (3) a775ad.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone (3) a775ad.yaml index 388cc6cb1..220716a26 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone (3) a775ad.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone (3) a775ad.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545207 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5452': BackIsHidden: true @@ -21,10 +21,9 @@ Description: Stygian Waymark DragSelectable: true GMNotes: "{\n \"id\": \"53008\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Item. Relic. Cursed.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the Forgotten\ - \ Age\"\n}" + willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n \"count\"\ + : 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n\ + \ \"cycle\": \"Return to the Forgotten Age\"\n}" GUID: a775ad Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.03 posY: 3.86 posZ: -16.7 - rotX: 359.77 - rotY: 269.99 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone fc4ce8.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone fc4ce8.yaml index 8963bad7c..f4ca384f4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone fc4ce8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Chthonian Stone fc4ce8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230327 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,8 +21,7 @@ Description: Stygian Waymark DragSelectable: true GMNotes: "{\n \"id\": \"04030\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Relic. Cursed.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\"\ - : \"The Forgotten Age\"\n}" + intellectIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: fc4ce8 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.87 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Codex of Ages df9809.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Codex of Ages df9809.yaml index 30d8c0dd4..5623933a6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Codex of Ages df9809.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Codex of Ages df9809.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 583136 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5831': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: finis omnium nunc est DragSelectable: true GMNotes: "{\n \"id\": \"04013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Relic. Tome. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Relic. Tome. Blessed.\",\n \"willpowerIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: df9809 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.99 posY: 3.79 posZ: -16.69 - rotX: 359.88 - rotY: 270.01 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Council's Coffer (2) 0e39c2.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Council's Coffer (2) 0e39c2.yaml index d3de12c78..25fb35a85 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Council's Coffer (2) 0e39c2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Council's Coffer (2) 0e39c2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 312109 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3121': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: "What\uFFFD\uFFFD\u201A\uFFFD\uFFFDs in the Box?" DragSelectable: true GMNotes: "{\n \"id\": \"05196\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \ - \ \"countPerInvestigator\": 1,\n \"type\": \"Lock\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Item. Relic.\",\n \"wildIcons\"\ + : 1,\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\":\ + \ \"Lock\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Circle\ + \ Undone\"\n}" GUID: 0e39c2 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.06 posY: 3.91 posZ: -16.71 - rotX: 0.28 - rotY: 269.93 - rotZ: 359.79 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Devil ��‚�� XV 7bcaf3.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Devil ∙ XV 7bcaf3.yaml similarity index 72% rename from unpacked/Bag All Player Cards 15bb07/Card The Devil ��‚�� XV 7bcaf3.yaml rename to unpacked/Bag All Player Cards 15bb07/Card The Devil ∙ XV 7bcaf3.yaml index 35d9feb58..69700217c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Devil ��‚�� XV 7bcaf3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Devil ∙ XV 7bcaf3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449534 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4495': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Your Shadow Hungers DragSelectable: true GMNotes: "{\n \"id\": \"54015\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Omen. Tarot.\",\n \"permanent\": false,\n \"\ - weakness\": true,\n \"basicWeaknessCount\": 2,\n \"cycle\": \"Return to the Circle\ - \ Undone\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Omen. Tarot.\",\n \"weakness\": true,\n \"\ + basicWeaknessCount\": 2,\n \"cycle\": \"Return to the Circle Undone\"\n}" GUID: 7bcaf3 Grid: true GridProjection: false @@ -35,21 +34,21 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Card -Nickname: "The Devil \uFFFD\uFFFD\u201A\uFFFD\uFFFD XV" +Nickname: "The Devil \u2219 XV" SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.76 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Dirge of Reason fe68c6.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Dirge of Reason fe68c6.yaml index 2d4c459b8..01aeb48dc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Dirge of Reason fe68c6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Dirge of Reason fe68c6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 369945 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3699': BackIsHidden: true @@ -20,8 +20,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"98006\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"Promo\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Promo\"\n}" GUID: fe68c6 Grid: true GridProjection: false @@ -45,9 +44,9 @@ Transform: posX: 9.13 posY: 5.48 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Eye of Truth (5) d6085d.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Eye of Truth (5) d6085d.yaml index b32861333..cbf7254d5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Eye of Truth (5) d6085d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Eye of Truth (5) d6085d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448840 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4488': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06325\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 5,\n \"traits\": \"Spell. Practiced.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 4,\n \"cycle\": \"The Dream-Eaters\"\n\ - }" + ,\n \"level\": 5,\n \"traits\": \"Spell. Practiced.\",\n \"wildIcons\": 4,\n\ + \ \"cycle\": \"The Dream-Eaters\"\n}" GUID: d6085d Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.02 posY: 4.01 posZ: -16.7 - rotX: 359.81 - rotY: 269.99 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Fool ��‚�� 0 (3) b74c69.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Fool ∙ 0 (3) b74c69.yaml similarity index 77% rename from unpacked/Bag All Player Cards 15bb07/Card The Fool ��‚�� 0 (3) b74c69.yaml rename to unpacked/Bag All Player Cards 15bb07/Card The Fool ∙ 0 (3) b74c69.yaml index 60fd4f5c3..5830701d2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Fool ��‚�� 0 (3) b74c69.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Fool ∙ 0 (3) b74c69.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449532 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4495': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Unlimited Potential DragSelectable: true GMNotes: "{\n \"id\": \"54011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tarot.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"cycle\": \"Return to the Circle Undone\"\n\ - }" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tarot.\",\n \"cycle\": \"Return\ + \ to the Circle Undone\"\n}" GUID: b74c69 Grid: true GridProjection: false @@ -35,21 +34,21 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Card -Nickname: "The Fool \uFFFD\uFFFD\u201A\uFFFD\uFFFD 0 (3)" +Nickname: "The Fool \u2219 0 (3)" SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 - posY: 3.74 + posY: 3.73 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Gold Pocket Watch (4) 62d930.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Gold Pocket Watch (4) 62d930.yaml index a4301efd6..96f868d53 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Gold Pocket Watch (4) 62d930.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Gold Pocket Watch (4) 62d930.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315257 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Stealing Time DragSelectable: true GMNotes: "{\n \"id\": \"02305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 62d930 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.14 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Harbinger e9fef2.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Harbinger e9fef2.yaml index 06905122e..6daaf895f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Harbinger e9fef2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Harbinger e9fef2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379004 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"08006\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Omen. Endtimes.\",\n \"permanent\": false,\n \"weakness\":\ - \ true,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"traits\": \"Omen. Endtimes.\",\n \"weakness\": true,\n \"cycle\": \"Edge\ + \ of the Earth\"\n}" GUID: e9fef2 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.99 posY: 3.75 posZ: -16.69 - rotX: 359.77 - rotY: 270.01 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Hierophant ��‚�� V (3) 20c8a9.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Hierophant ∙ V (3) 20c8a9.yaml similarity index 78% rename from unpacked/Bag All Player Cards 15bb07/Card The Hierophant ��‚�� V (3) 20c8a9.yaml rename to unpacked/Bag All Player Cards 15bb07/Card The Hierophant ∙ V (3) 20c8a9.yaml index 339ce640f..dbb747042 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Hierophant ��‚�� V (3) 20c8a9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Hierophant ∙ V (3) 20c8a9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449527 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4495': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Your True Master Awaits DragSelectable: true GMNotes: "{\n \"id\": \"54007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tarot.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"cycle\": \"Return to the Circle Undone\"\n\ - }" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tarot.\",\n \"cycle\": \"Return\ + \ to the Circle Undone\"\n}" GUID: 20c8a9 Grid: true GridProjection: false @@ -35,21 +34,21 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Card -Nickname: "The Hierophant \uFFFD\uFFFD\u201A\uFFFD\uFFFD V (3)" +Nickname: "The Hierophant \u2219 V (3)" SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.83 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Home Front b80459.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Home Front b80459.yaml index 9292721db..6a8e5e5b6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Home Front b80459.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Home Front b80459.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 374330 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3743': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03007\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"combatIcons\": 4,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"traits\": \"Practiced. Expert.\",\n \"combatIcons\": 4,\n \"cycle\": \"\ + The Path to Carcosa\"\n}" GUID: b80459 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.0 posY: 3.87 posZ: -16.7 - rotX: 0.56 - rotY: 270.01 - rotZ: 359.86 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Hungering Blade (1) 2d94ed.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Hungering Blade (1) 2d94ed.yaml index 86c9291a6..e0e7d4a9e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Hungering Blade (1) 2d94ed.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Hungering Blade (1) 2d94ed.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 590414 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5904': BackIsHidden: true @@ -21,9 +21,8 @@ Description: "Calamitous Blade of Celepha\xEFs" DragSelectable: true GMNotes: "{\n \"id\": \"06018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Item. Weapon. Melee. Relic.\ - \ Cursed.\",\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n\ - \ {\n \"count\": 3,\n \"id\": \"06019\"\n }\n ],\n \"combatIcons\"\ - : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + \ Cursed.\",\n \"bonded\": [\n {\n \"count\": 3,\n \"id\": \"06019\"\ + \n }\n ],\n \"combatIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 2d94ed Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.77 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The King in Yellow 016b72.yaml b/unpacked/Bag All Player Cards 15bb07/Card The King in Yellow 016b72.yaml index ce3fd800e..eb235ee05 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The King in Yellow 016b72.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The King in Yellow 016b72.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 374633 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3746': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Tome.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - cycle\": \"The Path to Carcosa\"\n}" + ,\n \"traits\": \"Tome.\",\n \"weakness\": true,\n \"cycle\": \"The Path to Carcosa\"\ + \n}" GUID: 016b72 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.05 posY: 3.68 posZ: -16.71 - rotX: 359.91 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Man in the Pallid Mask 6720ef.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Man in the Pallid Mask 6720ef.yaml index 4dcdb755d..782e15488 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Man in the Pallid Mask 6720ef.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Man in the Pallid Mask 6720ef.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232300 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2323': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Humanoid. Elite. DragSelectable: true GMNotes: "{\n \"id\": \"03059\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Humanoid. Elite.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"traits\": \"Humanoid. Elite.\",\n \"weakness\": true,\n \"cycle\": \"The\ + \ Path to Carcosa\"\n}" GUID: 6720ef Grid: true GridProjection: false @@ -42,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.07 + posX: 9.06 posY: 3.9 posZ: -16.71 - rotX: 0.3 - rotY: 269.93 - rotZ: 359.77 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Moon ��‚�� XVIII (1) e80bd8.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Moon ∙ XVIII (1) e80bd8.yaml similarity index 79% rename from unpacked/Bag All Player Cards 15bb07/Card The Moon ��‚�� XVIII (1) e80bd8.yaml rename to unpacked/Bag All Player Cards 15bb07/Card The Moon ∙ XVIII (1) e80bd8.yaml index 7f1b4b2b0..bc208dd64 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Moon ��‚�� XVIII (1) e80bd8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Moon ∙ XVIII (1) e80bd8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527605 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5276': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Message from Your Inner Self DragSelectable: true GMNotes: "{\n \"id\": \"05031\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tarot.\",\n \"cycle\": \"The\ + \ Circle Undone\"\n}" GUID: e80bd8 Grid: true GridProjection: false @@ -34,21 +34,21 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Card -Nickname: "The Moon \uFFFD\uFFFD\u201A\uFFFD\uFFFD XVIII (1)" +Nickname: "The Moon \u2219 XVIII (1)" SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.79 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon (5) (Taboo) 9fa2a5.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon (5) (Taboo) 9fa2a5.yaml index 8dd7d69e0..30a9ac8db 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon (5) (Taboo) 9fa2a5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon (5) (Taboo) 9fa2a5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450613 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4506': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Petrus de Dacia Translation DragSelectable: true GMNotes: "{\n \"id\": \"60233-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 5,\n \"uses\": [\n {\n\ - \ \"count\": 6,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\"\ + : 5,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n\ + }" GUID: 9fa2a5 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 5.56 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon (5) 96ba38.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon (5) 96ba38.yaml index ae74cbc05..32bd8536c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon (5) 96ba38.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon (5) 96ba38.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538831 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Petrus de Dacia Translation DragSelectable: true GMNotes: "{\n \"id\": \"60233\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 5,\n \"uses\": [\n {\n\ - \ \"count\": 6,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 3,\n \"level\": 5,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\"\ + : 5,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Investigator Packs\"\n\ + }" GUID: 96ba38 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.01 posY: 3.81 posZ: -16.7 - rotX: 0.73 - rotY: 270.01 - rotZ: 359.82 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon 6b2550.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon 6b2550.yaml index 0d012be56..4a98b28da 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon 6b2550.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon 6b2550.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 370323 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3703': BackIsHidden: true @@ -21,7 +21,7 @@ Description: John Dee Translation DragSelectable: true GMNotes: "{\n \"id\": \"01009\",\n \"alternate_ids\": [\n \"01509\"\n ],\n \ \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"cycle\": \"Core\"\n}" + ,\n \"weakness\": true,\n \"cycle\": \"Core\"\n}" GUID: 6b2550 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 29.34 posY: 3.37 posZ: -58.91 - rotX: 0.08 - rotY: 270.01 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon d45f10.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon d45f10.yaml index 0e9d9da5f..8159f276c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon d45f10.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Necronomicon d45f10.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232934 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2329': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Olaus Wormius Translation DragSelectable: true GMNotes: "{\n \"id\": \"02140\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\ - \n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Tome.\",\n \"intellectIcons\": 1,\n \"\ + cycle\": \"The Dunwich Legacy\"\n}" GUID: d45f10 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.12 posY: 3.92 posZ: -16.72 - rotX: 0.14 - rotY: 269.81 - rotZ: 359.88 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Painted World dfd48b.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Painted World dfd48b.yaml index 9567ccc9e..84e087699 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Painted World dfd48b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Painted World dfd48b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 374014 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3740': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03012\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Path to Carcosa\"\n}" + ,\n \"traits\": \"Spell.\",\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n\ + \ \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: dfd48b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.2 posY: 3.05 posZ: -16.73 - rotX: 0.06 - rotY: 269.8 - rotZ: 359.26 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Price of Failure dc5b38.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Price of Failure dc5b38.yaml index ace7415a9..b1231f0e5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Price of Failure dc5b38.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Price of Failure dc5b38.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 537612 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"04039\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - cycle\": \"The Forgotten Age\"\n}" + ,\n \"traits\": \"Pact.\",\n \"weakness\": true,\n \"cycle\": \"The Forgotten\ + \ Age\"\n}" GUID: dc5b38 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.17 posY: 3.12 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Raven Quill b81037.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Raven Quill b81037.yaml index 349df6e6c..beee08729 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Raven Quill b81037.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Raven Quill b81037.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379035 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,25 +21,25 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09042\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Relic. Upgrade.\",\n \ - \ \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"\ - customizations\": [\n {\n \"name\": \"Living Quill\",\n \"xp\": 1,\n\ - \ \"text\": \"Using attached asset\uFFFD\u20AC\uFFFDs ? abilities does not\ - \ provoke attacks of opportunity.\"\n },\n {\n \"name\": \"Spectral Binding\"\ - ,\n \"xp\": 1,\n \"text\": \"Attached asset does not take up any slots.\"\ - \n },\n {\n \"name\": \"Mystic Vane\",\n \"xp\": 2,\n \"text\"\ - : \"You get +2 skill value while performing skill tests on attached asset.\"\n \ - \ },\n {\n \"name\": \"Endless Inkwell\",\n \"xp\": 2,\n \"\ - text\": \"Name two more Tome or Spell assets.\"\n },\n {\n \"name\":\ - \ \"Energy Sap\",\n \"xp\": 2,\n \"text\": \"The Raven Quill gains: \uFFFD\ - \u20AC\uFFFD? Exhaust The Raven Quill: Move 1 secret or charge from an asset you\ - \ control to attached asset.\uFFFD\u20AC?\"\n },\n {\n \"name\": \"Interwoven\ - \ Ink\",\n \"xp\": 3,\n \"text\": \"After you resolve an ? ability on\ - \ attached asset, you may exhaust The Raven Quill to ready another asset you control.\"\ - \n },\n {\n \"name\": \"Supernatural Record\",\n \"xp\": 4,\n \ - \ \"text\": \"When you play The Raven Quill, instead of attaching it to a named\ - \ asset you control, you may search your deck, discard pile, and hand for a copy\ - \ of a named asset and play it (paying its cost). Then, attach The Raven Quill to\ - \ it.\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" + \ \"intellectIcons\": 2,\n \"customizations\": [\n {\n \"name\": \"Living\ + \ Quill\",\n \"xp\": 1,\n \"text\": \"Using attached asset\u2019s \u27BD\ + \ abilities does not provoke attacks of opportunity.\"\n },\n {\n \"\ + name\": \"Spectral Binding\",\n \"xp\": 1,\n \"text\": \"Attached asset\ + \ does not take up any slots.\"\n },\n {\n \"name\": \"Mystic Vane\"\ + ,\n \"xp\": 2,\n \"text\": \"You get +2 skill value while performing skill\ + \ tests on attached asset.\"\n },\n {\n \"name\": \"Endless Inkwell\"\ + ,\n \"xp\": 2,\n \"text\": \"Name two more Tome or Spell assets.\"\n \ + \ },\n {\n \"name\": \"Energy Sap\",\n \"xp\": 2,\n \"text\"\ + : \"The Raven Quill gains: \u201C\U0001F5F2 Exhaust The Raven Quill: Move 1 secret\ + \ or charge from an asset you control to attached asset.\u201D\"\n },\n {\n\ + \ \"name\": \"Interwoven Ink\",\n \"xp\": 3,\n \"text\": \"After\ + \ you resolve an \u27BD ability on attached asset, you may exhaust The Raven Quill\ + \ to ready another asset you control.\"\n },\n {\n \"name\": \"Supernatural\ + \ Record\",\n \"xp\": 4,\n \"text\": \"When you play The Raven Quill,\ + \ instead of attaching it to a named asset you control, you may search your deck,\ + \ discard pile, and hand for a copy of a named asset and play it (paying its cost).\ + \ Then, attach The Raven Quill to it.\"\n }\n ],\n \"cycle\": \"The Scarlet\ + \ Keys\"\n}" GUID: b81037 Grid: true GridProjection: false @@ -63,9 +63,9 @@ Transform: posX: 16.67 posY: 3.4 posZ: 65.93 - rotX: 359.36 - rotY: 270.01 - rotZ: 359.3 + rotX: 359.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Red Clock (2) 814c79.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Red Clock (2) 814c79.yaml index 162883d01..fcd3a4a8b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Red Clock (2) 814c79.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Red Clock (2) 814c79.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379043 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Broken but Reliable DragSelectable: true GMNotes: "{\n \"id\": \"08053\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \ - \ \"count\": 0,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n\ - \ }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Item. Relic.\",\n \"wildIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 0,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n\ + }" GUID: 814c79 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.19 posY: 2.21 - posZ: -16.74 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Red Clock (5) 696894.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Red Clock (5) 696894.yaml index 5d564c410..7b805fd4f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Red Clock (5) 696894.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Red Clock (5) 696894.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379048 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: Broken but Reliable DragSelectable: true GMNotes: "{\n \"id\": \"08058\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 5,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"uses\": [\n {\n \ - \ \"count\": 0,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n\ - \ }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 5,\n \"traits\": \"Item. Relic.\",\n \"wildIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 0,\n \"type\": \"Charge\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n\ + }" GUID: '696894' Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: - posX: 9.19 + posX: 9.2 posY: 2.23 posZ: -16.74 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Red-Gloved Man (5) ad18a6.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Red-Gloved Man (5) ad18a6.yaml index 1999897c9..8c46b2658 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Red-Gloved Man (5) ad18a6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Red-Gloved Man (5) ad18a6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368526 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -21,8 +21,7 @@ Description: He Was Never There DragSelectable: true GMNotes: "{\n \"id\": \"02310\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ ,\n \"cost\": 2,\n \"level\": 5,\n \"traits\": \"Ally. Conspirator.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"\ - The Dunwich Legacy\"\n}" + wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: ad18a6 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.79 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Silver Key 61fd07.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Silver Key 61fd07.yaml index 7e1f8fcc8..e2f61d1ab 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Silver Key 61fd07.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Silver Key 61fd07.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 278846 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2788': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Key to the Gate of Dreams DragSelectable: true GMNotes: "{\n \"id\": \"06189\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Charm. Relic.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 2,\n \"cycle\"\ - : \"The Dream-Eaters\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Charm. Relic.\",\n \"willpowerIcons\"\ + : 1,\n \"wildIcons\": 2,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 61fd07 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.85 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Skeleton Key (2) 5d559a.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Skeleton Key (2) 5d559a.yaml index 732a1a378..aa8c29e34 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Skeleton Key (2) 5d559a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Skeleton Key (2) 5d559a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 581409 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5814': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04270\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 3,\n \"level\": 2,\n \"traits\": \"Item. Relic. Cursed.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\"\ - : \"The Forgotten Age\"\n}" + intellectIcons\": 2,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 5d559a Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.52 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Star ��‚�� XVII (3) a77ce0.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Star ∙ XVII (3) a77ce0.yaml similarity index 78% rename from unpacked/Bag All Player Cards 15bb07/Card The Star ��‚�� XVII (3) a77ce0.yaml rename to unpacked/Bag All Player Cards 15bb07/Card The Star ∙ XVII (3) a77ce0.yaml index 4876b538f..0b1f87c5f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Star ��‚�� XVII (3) a77ce0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Star ∙ XVII (3) a77ce0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449521 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4495': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: You Have Been Chosen DragSelectable: true GMNotes: "{\n \"id\": \"54001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tarot.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"cycle\": \"Return to the Circle Undone\"\n\ - }" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tarot.\",\n \"cycle\": \"Return\ + \ to the Circle Undone\"\n}" GUID: a77ce0 Grid: true GridProjection: false @@ -35,21 +34,21 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Card -Nickname: "The Star \uFFFD\uFFFD\u201A\uFFFD\uFFFD XVII (3)" +Nickname: "The Star \u2219 XVII (3)" SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.82 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Stars Are Right 600a3c.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Stars Are Right 600a3c.yaml index 89a44a1be..dfd4902fb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Stars Are Right 600a3c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Stars Are Right 600a3c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 443723 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4437': BackIsHidden: true @@ -20,8 +20,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06028\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Augury.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"traits\": \"Augury.\",\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 600a3c Grid: true GridProjection: false @@ -44,10 +43,10 @@ Tooltip: true Transform: posX: 9.14 posY: 3.73 - posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Stygian Eye (3) c4ae95.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Stygian Eye (3) c4ae95.yaml index af85a40da..9542555d3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Stygian Eye (3) c4ae95.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Stygian Eye (3) c4ae95.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449602 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4496': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07263\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 10,\n \"level\": 3,\n \"traits\": \"Insight. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 3,\n \"cycle\": \"The Innsmouth\ - \ Conspiracy\"\n}" + ,\n \"cost\": 10,\n \"level\": 3,\n \"traits\": \"Insight. Cursed.\",\n \"willpowerIcons\"\ + : 3,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: c4ae95 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.06 posY: 3.91 posZ: -16.71 - rotX: 0.28 - rotY: 269.93 - rotZ: 359.79 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Tattered Cloak 5d30a1.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Tattered Cloak 5d30a1.yaml index c608b7260..43cd11e20 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Tattered Cloak 5d30a1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Tattered Cloak 5d30a1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232333 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2323': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: Regalia Dementia DragSelectable: true GMNotes: "{\n \"id\": \"03143\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Clothing.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Clothing.\",\n \"willpowerIcons\": 1,\n\ + \ \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\ + \n}" GUID: 5d30a1 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.95 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Thing That Follows da227d.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Thing That Follows da227d.yaml index c725a41b2..811f5e02f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Thing That Follows da227d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Thing That Follows da227d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 431115 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4311': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Enemy DragSelectable: true GMNotes: "{\n \"id\": \"03042\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Monster. Curse.\",\n \"permanent\": false,\n \"weakness\":\ - \ true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"traits\": \"Monster. Curse.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: da227d Grid: true GridProjection: false @@ -44,10 +44,10 @@ Tooltip: true Transform: posX: 9.14 posY: 3.71 - posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Tower ��‚�� XVI d5c93d.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Tower ∙ XVI d5c93d.yaml similarity index 73% rename from unpacked/Bag All Player Cards 15bb07/Card The Tower ��‚�� XVI d5c93d.yaml rename to unpacked/Bag All Player Cards 15bb07/Card The Tower ∙ XVI d5c93d.yaml index df6caf2b8..9cdf63ff5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Tower ��‚�� XVI d5c93d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Tower ∙ XVI d5c93d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 290320 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2903': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Circumstances Beyond Your Control DragSelectable: true GMNotes: "{\n \"id\": \"05042\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 4,\n \"traits\": \"Omen. Tarot.\",\n \"permanent\": false,\n \"\ - weakness\": true,\n \"basicWeaknessCount\": 2,\n \"cycle\": \"The Circle Undone\"\ - \n}" + ,\n \"cost\": 4,\n \"traits\": \"Omen. Tarot.\",\n \"weakness\": true,\n \"\ + basicWeaknessCount\": 2,\n \"cycle\": \"The Circle Undone\"\n}" GUID: d5c93d Grid: true GridProjection: false @@ -35,21 +34,21 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Card -Nickname: "The Tower \uFFFD\uFFFD\u201A\uFFFD\uFFFD XVI" +Nickname: "The Tower \u2219 XVI" SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.75 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The Truth Beckons ca1b5c.yaml b/unpacked/Bag All Player Cards 15bb07/Card The Truth Beckons ca1b5c.yaml index ca240ecfd..df3ece614 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The Truth Beckons ca1b5c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The Truth Beckons ca1b5c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232102 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2321': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07154\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: ca1b5c Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.98 posY: 3.94 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card The World ��‚�� XXI (3) 372b5b.yaml b/unpacked/Bag All Player Cards 15bb07/Card The World ∙ XXI (3) 372b5b.yaml similarity index 77% rename from unpacked/Bag All Player Cards 15bb07/Card The World ��‚�� XXI (3) 372b5b.yaml rename to unpacked/Bag All Player Cards 15bb07/Card The World ∙ XXI (3) 372b5b.yaml index 003596ffd..436bd4030 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card The World ��‚�� XXI (3) 372b5b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card The World ∙ XXI (3) 372b5b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449523 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4495': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: The Journey is Complete DragSelectable: true GMNotes: "{\n \"id\": \"54003\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tarot.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"cycle\": \"Return to the Circle Undone\"\n\ - }" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Tarot.\",\n \"cycle\": \"Return\ + \ to the Circle Undone\"\n}" GUID: 372b5b Grid: true GridProjection: false @@ -35,21 +34,21 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Card -Nickname: "The World \uFFFD\uFFFD\u201A\uFFFD\uFFFD XXI (3)" +Nickname: "The World \u2219 XXI (3)" SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 - posY: 3.74 + posY: 3.73 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Thermos 5b14dc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Thermos 5b14dc.yaml index 869141f75..ac6b8e238 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Thermos 5b14dc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Thermos 5b14dc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 261102 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2611': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04274\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n \"\ - count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n\ - \ ],\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Item.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n\ + }" GUID: 5b14dc Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.73 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Thieves' Kit (3) be8d1f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Thieves' Kit (3) be8d1f.yaml index 5e114213c..3b55edf38 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Thieves' Kit (3) be8d1f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Thieves' Kit (3) be8d1f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379068 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09075\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Item. Tool. Illicit.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 6,\n \"type\": \"Supply\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" + intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"uses\": [\n {\n \"count\"\ + : 6,\n \"type\": \"Supply\",\n \"token\": \"resource\"\n }\n ],\n\ + \ \"cycle\": \"The Scarlet Keys\"\n}" GUID: be8d1f Grid: true GridProjection: false @@ -48,9 +48,9 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 358.35 - rotY: 270.03 - rotZ: 358.21 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Thieves' Kit 857b53.yaml b/unpacked/Bag All Player Cards 15bb07/Card Thieves' Kit 857b53.yaml index 936ca3793..aa78232a0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Thieves' Kit 857b53.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Thieves' Kit 857b53.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379057 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,9 +21,9 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09064\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Tool. Illicit.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 6,\n \"type\": \"Supply\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" + intellectIcons\": 1,\n \"uses\": [\n {\n \"count\": 6,\n \"type\"\ + : \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Scarlet\ + \ Keys\"\n}" GUID: 857b53 Grid: true GridProjection: false @@ -48,9 +48,9 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 357.76 - rotY: 270.05 - rotZ: 357.57 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Think on Your Feet (2) 3e0653.yaml b/unpacked/Bag All Player Cards 15bb07/Card Think on Your Feet (2) 3e0653.yaml index 433eac562..522cd87b1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Think on Your Feet (2) 3e0653.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Think on Your Feet (2) 3e0653.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315303 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3153': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"51006\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 2,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Trick.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 2,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}" GUID: 3e0653 Grid: true GridProjection: false @@ -43,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 8.98 + posX: 8.97 posY: 3.72 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Think on Your Feet 6fec31.yaml b/unpacked/Bag All Player Cards 15bb07/Card Think on Your Feet 6fec31.yaml index a9af4b03f..83876917f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Think on Your Feet 6fec31.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Think on Your Feet 6fec31.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368709 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3687': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02025\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 6fec31 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.88 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Third Time's a Charm (2) 45956a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Third Time's a Charm (2) 45956a.yaml index 5b0fdced9..9a1ec0386 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Third Time's a Charm (2) 45956a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Third Time's a Charm (2) 45956a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232109 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2321': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07161\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth\ + \ Conspiracy\"\n}" GUID: 45956a Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 8.97 posY: 4.51 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Thomas Dawson 1f7e6e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Thomas Dawson 1f7e6e.yaml index 1542d58ab..d5bb9730c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Thomas Dawson 1f7e6e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Thomas Dawson 1f7e6e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 369815 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3698': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: Soldier in a New War DragSelectable: true GMNotes: "{\n \"id\": \"07082\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 4,\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\"\ - : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 4,\n \"traits\": \"Ally. Agency. Veteran.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\ + \n}" GUID: 1f7e6e Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.77 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Three Aces (1) (Taboo) a11abb.yaml b/unpacked/Bag All Player Cards 15bb07/Card Three Aces (1) (Taboo) a11abb.yaml index 5a0093be7..49114dd18 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Three Aces (1) (Taboo) a11abb.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Three Aces (1) (Taboo) a11abb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 584413 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5844': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06199-t\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 1,\n \"traits\": \"Fortune. Practiced.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n\ - }" + ,\n \"level\": 1,\n \"traits\": \"Fortune. Practiced.\",\n \"wildIcons\": 1,\n\ + \ \"cycle\": \"The Dream-Eaters\"\n}" GUID: a11abb Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.09 posY: 3.7 posZ: -16.71 - rotX: 359.96 - rotY: 269.88 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Three Aces (1) 30062e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Three Aces (1) 30062e.yaml index babd3a094..bd48f14e9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Three Aces (1) 30062e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Three Aces (1) 30062e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 447630 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4476': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06199\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 1,\n \"traits\": \"Fortune. Practiced.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n\ - }" + ,\n \"level\": 1,\n \"traits\": \"Fortune. Practiced.\",\n \"wildIcons\": 1,\n\ + \ \"cycle\": \"The Dream-Eaters\"\n}" GUID: 30062e Grid: true GridProjection: false @@ -43,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 9.07 + posX: 9.06 posY: 3.9 posZ: -16.71 - rotX: 0.3 - rotY: 269.93 - rotZ: 359.77 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Thrice-Damned Curiosity 3eef18.yaml b/unpacked/Bag All Player Cards 15bb07/Card Thrice-Damned Curiosity 3eef18.yaml index 00bf84797..c5d100dac 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Thrice-Damned Curiosity 3eef18.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Thrice-Damned Curiosity 3eef18.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538801 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"60203\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - cycle\": \"Investigator Packs\"\n}" + ,\n \"traits\": \"Flaw.\",\n \"weakness\": true,\n \"cycle\": \"Investigator\ + \ Packs\"\n}" GUID: 3eef18 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.98 posY: 3.67 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Through the Gates fd9c56.yaml b/unpacked/Bag All Player Cards 15bb07/Card Through the Gates fd9c56.yaml index 0822c109e..ad6b0b6be 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Through the Gates fd9c56.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Through the Gates fd9c56.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527419 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5274': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"51011\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Pact. Mystery.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 2,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}" + ,\n \"traits\": \"Pact. Mystery.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 2,\n \"cycle\": \"Return to The Dunwich Legacy\"\n}" GUID: fd9c56 Grid: true GridProjection: false @@ -42,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 118.38 + posX: 118.39 posY: 1.99 posZ: 19.41 - rotX: 359.99 - rotY: 270.04 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tidal Memento b4f9ee.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tidal Memento b4f9ee.yaml index 3a7824f9a..d4bb49bf5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tidal Memento b4f9ee.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tidal Memento b4f9ee.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 536000 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5360': BackIsHidden: true @@ -20,8 +20,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"90038\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"\",\n \"permanent\": true,\n \"weakness\": false,\n \"cycle\"\ - : \"Standalone\"\n}" + ,\n \"permanent\": true,\n \"cycle\": \"Standalone\"\n}" GUID: b4f9ee Grid: true GridProjection: false @@ -39,16 +38,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 79.85 posY: 3.32 - posZ: 6.91 - rotX: 359.66 + posZ: 6.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.49 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tides of Fate 823e49.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tides of Fate 823e49.yaml index 7458b2404..580f11805 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tides of Fate 823e49.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tides of Fate 823e49.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 581024 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5810': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07030\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spell. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth\ - \ Conspiracy\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Spell. Blessed.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 823e49 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.84 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Time Warp (2) ba0fe7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Time Warp (2) ba0fe7.yaml index 362349058..958889faa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Time Warp (2) ba0fe7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Time Warp (2) ba0fe7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 583810 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5838': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03311\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spell. Paradox.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spell. Paradox.\",\n \"cycle\"\ + : \"The Path to Carcosa\"\n}" GUID: ba0fe7 Grid: true GridProjection: false @@ -45,8 +45,8 @@ Transform: posX: 9.17 posY: 3.23 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Timeworn Brand (5) d3e55b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Timeworn Brand (5) d3e55b.yaml index 5b49d30b8..cb341b032 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Timeworn Brand (5) d3e55b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Timeworn Brand (5) d3e55b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 261100 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2611': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04276\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ ,\n \"cost\": 5,\n \"level\": 5,\n \"traits\": \"Item. Relic. Weapon. Melee.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \ - \ \"combatIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"cycle\": \"The Forgotten\ + \ Age\"\n}" GUID: d3e55b Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.76 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card To Fight the Black Wind 00b6c3.yaml b/unpacked/Bag All Player Cards 15bb07/Card To Fight the Black Wind 00b6c3.yaml index 3c56e9e7c..4bdb1089c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card To Fight the Black Wind 00b6c3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card To Fight the Black Wind 00b6c3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230603 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2306': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"98012\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Task. Dreamlands.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"cycle\": \"Promo\"\n}" + ,\n \"traits\": \"Task. Dreamlands.\",\n \"weakness\": true,\n \"cycle\": \"\ + Promo\"\n}" GUID: 00b6c3 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 4.33 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Toe to Toe 58288b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Toe to Toe 58288b.yaml index 033f17613..26f29cd63 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Toe to Toe 58288b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Toe to Toe 58288b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379010 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08020\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 58288b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.2 posY: 2.44 posZ: -16.74 - rotX: 359.97 - rotY: 269.8 - rotZ: 359.72 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Token of Faith 2ea0d0.yaml b/unpacked/Bag All Player Cards 15bb07/Card Token of Faith 2ea0d0.yaml index 51ae7d198..0b60de281 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Token of Faith 2ea0d0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Token of Faith 2ea0d0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587627 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5876': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Innsmouth\ - \ Conspiracy\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 2ea0d0 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: - posX: 9.0 + posX: 9.01 posY: 3.86 posZ: -16.7 - rotX: 0.6 - rotY: 270.01 - rotZ: 359.85 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tommy Malloy c3a014.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tommy Malloy c3a014.yaml index 73a857698..371b9b425 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tommy Malloy c3a014.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tommy Malloy c3a014.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545301 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5453': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"60103\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Humanoid. Criminal. Syndicate.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"traits\": \"Humanoid. Criminal. Syndicate.\",\n \"weakness\": true,\n \"\ + cycle\": \"Investigator Packs\"\n}" GUID: c3a014 Grid: true GridProjection: false @@ -42,12 +42,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: 8.98 + posX: 8.97 posY: 3.67 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tommy Muldoon 5e73c6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tommy Muldoon 5e73c6.yaml index 30783ee3d..3eab573bb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tommy Muldoon 5e73c6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tommy Muldoon 5e73c6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 274011 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2740': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"06001-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"06001-m\",\n \"type\": \"Minicard\"\n}" GUID: 5e73c6 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.78 posZ: -18.15 - rotX: 359.91 - rotY: 269.95 - rotZ: 0.08 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tommy Muldoon e637cd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tommy Muldoon e637cd.yaml index 8bdc79b32..bc8627269 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tommy Muldoon e637cd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tommy Muldoon e637cd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 536532 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5365': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.79 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tony Morgan 4f0f4a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tony Morgan 4f0f4a.yaml index 1d710a9a1..81ff892d9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tony Morgan 4f0f4a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tony Morgan 4f0f4a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 274015 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2740': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"06003-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"06003-m\",\n \"type\": \"Minicard\"\n}" GUID: 4f0f4a Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.92 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tony Morgan 53a412.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tony Morgan 53a412.yaml index 1ebf2247b..769acd709 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tony Morgan 53a412.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tony Morgan 53a412.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 536436 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5364': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 2.13 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tony's .38 Long Colt 1186a1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tony's .38 Long Colt 1186a1.yaml index ba68d7095..dfa8c161a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tony's .38 Long Colt 1186a1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tony's .38 Long Colt 1186a1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 581705 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5817': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Ammo\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"\ + count\": 3,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n \ + \ ],\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 1186a1 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.82 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tony's Quarry d6f8d1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tony's Quarry d6f8d1.yaml index 0d1a51159..b403a6d64 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tony's Quarry d6f8d1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tony's Quarry d6f8d1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 582106 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5821': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06012\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Humanoid. Monster. Deep One.\",\n \"permanent\": false,\n \"\ - weakness\": true,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"traits\": \"Humanoid. Monster. Deep One.\",\n \"weakness\": true,\n \"\ + cycle\": \"The Dream-Eaters\"\n}" GUID: d6f8d1 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.07 posY: 3.88 posZ: -16.71 - rotX: 0.36 - rotY: 269.93 - rotZ: 359.74 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tool Belt 769a3e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tool Belt 769a3e.yaml index b849024e0..4c1629331 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tool Belt 769a3e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tool Belt 769a3e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379144 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09120\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Clothing.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Scarlet\ - \ Keys\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Item. Clothing.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 769a3e Grid: true GridProjection: false @@ -47,9 +46,9 @@ Transform: posX: 16.72 posY: 3.35 posZ: 65.64 - rotX: 358.83 - rotY: 269.99 - rotZ: 1.27 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tooth of Eztli c1a687.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tooth of Eztli c1a687.yaml index 8c3feb2c9..d3717d148 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tooth of Eztli c1a687.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tooth of Eztli c1a687.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368432 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Mortal Reminder DragSelectable: true GMNotes: "{\n \"id\": \"04023\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: c1a687 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.15 posY: 4.11 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Torrent of Power 79287f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Torrent of Power 79287f.yaml index d036d03a5..2045d8e8d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Torrent of Power 79287f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Torrent of Power 79287f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230300 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03235\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\"\ - ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Practiced.\",\n \"wildIcons\": 1,\n \"cycle\"\ + : \"The Path to Carcosa\"\n}" GUID: 79287f Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 3.77 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Track Shoes 6fa7fa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Track Shoes 6fa7fa.yaml index ea2e9cc57..bc30ac11a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Track Shoes 6fa7fa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Track Shoes 6fa7fa.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 274608 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2746': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05036\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Clothing. Footwear.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"\ - cycle\": \"The Circle Undone\"\n}" + ,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 6fa7fa Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.52 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Treasure Hunter (1) 18927e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Treasure Hunter (1) 18927e.yaml index 4f0f26830..ff541d7a9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Treasure Hunter (1) 18927e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Treasure Hunter (1) 18927e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 315236 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3152': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04025\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 1,\n \"level\": 1,\n \"traits\": \"Ally. Wayfarer.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 18927e Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.53 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Trench Coat ba560e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Trench Coat ba560e.yaml index f53b75623..62bd9593a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Trench Coat ba560e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Trench Coat ba560e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368518 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04203\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Clothing.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Item. Clothing.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: ba560e Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.71 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Trench Knife 0d4eb9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Trench Knife 0d4eb9.yaml index 49a9ec963..7871197e1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Trench Knife 0d4eb9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Trench Knife 0d4eb9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226320 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03147\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\"\ - : \"The Path to Carcosa\"\n}" + combatIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 0d4eb9 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.99 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Trial by Fire (3) 76978f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Trial by Fire (3) 76978f.yaml index 286f2e2a7..8bd52a808 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Trial by Fire (3) 76978f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Trial by Fire (3) 76978f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449530 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4495': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"54010\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Return to\ - \ the Circle Undone\"\n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"wildIcons\"\ + : 2,\n \"cycle\": \"Return to the Circle Undone\"\n}" GUID: 76978f Grid: true GridProjection: false @@ -44,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 9.11 - posY: 3.68 + posY: 3.67 posZ: -16.72 - rotX: 359.92 - rotY: 269.85 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Trial by Fire 869d4c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Trial by Fire 869d4c.yaml index 947299398..435de9834 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Trial by Fire 869d4c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Trial by Fire 869d4c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 374418 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3744': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05281\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 869d4c Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.76 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Trigger Man (3) 11d7ad.yaml b/unpacked/Bag All Player Cards 15bb07/Card Trigger Man (3) 11d7ad.yaml index ee611e12b..b8198e13c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Trigger Man (3) 11d7ad.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Trigger Man (3) 11d7ad.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379100 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09076\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Ally. Criminal.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1\n}" + ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Ally. Criminal.\",\n \"combatIcons\"\ + : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 11d7ad Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 16.67 posY: 3.39 posZ: 65.93 - rotX: 359.63 - rotY: 270.01 - rotZ: 359.59 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Trish Scarborough 333fe7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Trish Scarborough 333fe7.yaml index 44a48ed29..15641eca2 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Trish Scarborough 333fe7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Trish Scarborough 333fe7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553402 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5534': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 2.0 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Trish Scarborough fc5d62.yaml b/unpacked/Bag All Player Cards 15bb07/Card Trish Scarborough fc5d62.yaml index dea9e6072..44a679db0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Trish Scarborough fc5d62.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Trish Scarborough fc5d62.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 553202 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5532': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"07003-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"07003-m\",\n \"type\": \"Minicard\"\n}" GUID: fc5d62 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.95 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Tristan Botley (2) 1fd630.yaml b/unpacked/Bag All Player Cards 15bb07/Card Tristan Botley (2) 1fd630.yaml index d93ee623f..69d25cb5d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Tristan Botley (2) 1fd630.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Tristan Botley (2) 1fd630.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 588705 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5887': BackIsHidden: true @@ -21,8 +21,7 @@ Description: Fixer for Hire DragSelectable: true GMNotes: "{\n \"id\": \"07194\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"cost\": 5,\n \"level\": 2,\n \"traits\": \"Ally. Criminal. Cursed.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Innsmouth Conspiracy\"\n}" + \ \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 1fd630 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.15 posY: 3.68 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card True Grit e25dc1.yaml b/unpacked/Bag All Player Cards 15bb07/Card True Grit e25dc1.yaml index efaee729c..1b2340161 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card True Grit e25dc1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card True Grit e25dc1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226329 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03021\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: e25dc1 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.77 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card True Magick (5) 79870f.yaml b/unpacked/Bag All Player Cards 15bb07/Card True Magick (5) 79870f.yaml index 175d09a4f..e7994637c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card True Magick (5) 79870f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card True Magick (5) 79870f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379060 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,10 +21,9 @@ Description: Reworking Reality DragSelectable: true GMNotes: "{\n \"id\": \"08070\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ ,\n \"cost\": 4,\n \"level\": 5,\n \"traits\": \"Item. Relic. Tome.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"wildIcons\"\ - : 1,\n \"uses\": [\n {\n \"count\": 1,\n \"type\": \"Charge\",\n \ - \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n\ - }" + willpowerIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\"\ + : 1,\n \"replenish\": 1,\n \"type\": \"Charge\",\n \"token\": \"\ + resource\"\n }\n ],\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 79870f Grid: true GridProjection: false @@ -42,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.19 posY: 2.35 posZ: -16.73 - rotX: 359.91 - rotY: 269.8 - rotZ: 0.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card True Survivor (3) 8837ff.yaml b/unpacked/Bag All Player Cards 15bb07/Card True Survivor (3) 8837ff.yaml index 28c6dbbde..81e664a55 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card True Survivor (3) 8837ff.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card True Survivor (3) 8837ff.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368859 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03273\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"cycle\": \"\ + The Path to Carcosa\"\n}" GUID: 8837ff Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.16 posY: 3.89 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card True Understanding 4167c0.yaml b/unpacked/Bag All Player Cards 15bb07/Card True Understanding 4167c0.yaml index 23682debe..04ddf1ae8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card True Understanding 4167c0.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card True Understanding 4167c0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368403 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04153\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"wildIcons\": 1,\n \"cycle\"\ + : \"The Forgotten Age\"\n}" GUID: 4167c0 Grid: true GridProjection: false @@ -45,8 +45,8 @@ Transform: posX: 8.99 posY: 3.76 posZ: -16.69 - rotX: 0.01 - rotY: 270.01 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Trusted 1bc300.yaml b/unpacked/Bag All Player Cards 15bb07/Card Trusted 1bc300.yaml index 50e04f346..1a5c39fe6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Trusted 1bc300.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Trusted 1bc300.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226315 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04019\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Upgrade.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Upgrade.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 1bc300 Grid: true GridProjection: false @@ -44,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 8.98 - posY: 3.82 + posY: 3.81 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Trusty Bullwhip ca9a60.yaml b/unpacked/Bag All Player Cards 15bb07/Card Trusty Bullwhip ca9a60.yaml index f8a7d7f8a..d37e629af 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Trusty Bullwhip ca9a60.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Trusty Bullwhip ca9a60.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379005 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"agilityIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"Edge of the Earth\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Weapon. Melee.\",\n \"agilityIcons\":\ + \ 2,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: ca9a60 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 78.56 posY: 3.33 posZ: 7.39 - rotX: 359.96 + rotX: 0.0 rotY: 270.0 - rotZ: 0.84 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Truth from Fiction (2) 45cd73.yaml b/unpacked/Bag All Player Cards 15bb07/Card Truth from Fiction (2) 45cd73.yaml index 1c4baa711..f75a82bc1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Truth from Fiction (2) 45cd73.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Truth from Fiction (2) 45cd73.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 545202 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5452': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"53003\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 3,\n \"uses\": [\n {\n\ - \ \"count\": 2,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"Return to the Forgotten Age\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 3,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Return to the Forgotten\ + \ Age\"\n}" GUID: 45cd73 Grid: true GridProjection: false @@ -47,9 +47,9 @@ Transform: posX: 9.02 posY: 3.97 posZ: -16.7 - rotX: 359.8 - rotY: 269.99 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Truth from Fiction d64c99.yaml b/unpacked/Bag All Player Cards 15bb07/Card Truth from Fiction d64c99.yaml index d5fbf7fd7..25f209cd3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Truth from Fiction d64c99.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Truth from Fiction d64c99.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368412 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04152\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"uses\": [\n {\n\ - \ \"count\": 2,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 2,\n \"uses\": [\n {\n \"count\": 2,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n\ + }" GUID: d64c99 Grid: true GridProjection: false @@ -47,9 +47,9 @@ Transform: posX: 8.97 posY: 4.18 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Try and Try Again (1) 3dc82f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Try and Try Again (1) 3dc82f.yaml index dca9e1831..aecb2e12c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Try and Try Again (1) 3dc82f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Try and Try Again (1) 3dc82f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 314802 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3148': BackIsHidden: true @@ -20,10 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04159\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Try\",\n \"token\": \"resource\"\n\ - \ }\n ],\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Try\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 3dc82f Grid: true GridProjection: false @@ -41,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.01 posY: 3.94 posZ: -16.7 - rotX: 359.89 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Try and Try Again (3) f1b0f9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Try and Try Again (3) f1b0f9.yaml index 889c51683..7d4f95075 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Try and Try Again (3) f1b0f9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Try and Try Again (3) f1b0f9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368857 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02309\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Dunwich\ - \ Legacy\"\n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: f1b0f9 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.04 posY: 3.93 posZ: -16.7 - rotX: 359.89 - rotY: 269.97 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Twila Katherine Price (3) 9f76ec.yaml b/unpacked/Bag All Player Cards 15bb07/Card Twila Katherine Price (3) 9f76ec.yaml index 427af1d2a..db4d88cc0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Twila Katherine Price (3) 9f76ec.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Twila Katherine Price (3) 9f76ec.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448034 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4480': BackIsHidden: true @@ -21,8 +21,8 @@ Description: Lost in a Dream DragSelectable: true GMNotes: "{\n \"id\": \"06244\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ ,\n \"cost\": 3,\n \"level\": 3,\n \"traits\": \"Ally. Artist. Dreamer.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"\ - agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + \ \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\ + \n}" GUID: 9f76ec Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.14 posY: 3.83 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Twilight Blade 223ba3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Twilight Blade 223ba3.yaml index 356e96201..159170733 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Twilight Blade 223ba3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Twilight Blade 223ba3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449359 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4493': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: Sanctum's Reward DragSelectable: true GMNotes: "{\n \"id\": \"05013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Item. Relic. Weapon.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\"\ - : 1,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Item. Relic. Weapon.\",\n \"willpowerIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\ + \n}" GUID: 223ba3 Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.1 posY: 3.68 posZ: -16.71 - rotX: 359.94 - rotY: 269.87 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unbound Beast 86cf9c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unbound Beast 86cf9c.yaml index d382d8d20..607509798 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unbound Beast 86cf9c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unbound Beast 86cf9c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527236 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5272': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Monster. Extradimensional. Tindalos. DragSelectable: true GMNotes: "{\n \"id\": \"06283\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"weakness\": true,\n\ + \ \"cycle\": \"The Dream-Eaters\"\n}" GUID: 86cf9c Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 3.83 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Uncage the Soul (3) 343f3a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Uncage the Soul (3) 343f3a.yaml index e828d2e48..ccf942abc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Uncage the Soul (3) 343f3a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Uncage the Soul (3) 343f3a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379119 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09095\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1\n\ - }" + ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 343f3a Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 16.74 posY: 3.35 posZ: 65.49 - rotX: 358.79 - rotY: 269.97 - rotZ: 2.32 + rotX: 359.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Uncage the Soul 45d2d2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Uncage the Soul 45d2d2.yaml index 6ad448588..4b98f764a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Uncage the Soul 45d2d2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Uncage the Soul 45d2d2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230305 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03033\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 45d2d2 Grid: true GridProjection: false @@ -45,10 +44,10 @@ Tooltip: true Transform: posX: 9.14 posY: 3.72 - posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Under Surveillance (1) cc8321.yaml b/unpacked/Bag All Player Cards 15bb07/Card Under Surveillance (1) cc8321.yaml index 509519d54..bf880f740 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Under Surveillance (1) cc8321.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Under Surveillance (1) cc8321.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232105 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2321': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07157\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tactic. Trap.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Tactic. Trap.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: cc8321 Grid: true GridProjection: false @@ -46,8 +45,8 @@ Transform: posX: 9.14 posY: 3.75 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Underprepared 709a54.yaml b/unpacked/Bag All Player Cards 15bb07/Card Underprepared 709a54.yaml index 59f720591..87733fb36 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Underprepared 709a54.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Underprepared 709a54.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379152 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"09128\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Blunder.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"basicWeaknessCount\": 1,\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Blunder.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: 709a54 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 16.71 posY: 3.37 posZ: 65.64 - rotX: 359.84 + rotX: 0.0 rotY: 270.0 - rotZ: 0.2 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Underworld Market (2) bba889.yaml b/unpacked/Bag All Player Cards 15bb07/Card Underworld Market (2) bba889.yaml index 9ef5b0892..5c8b4b386 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Underworld Market (2) bba889.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Underworld Market (2) bba889.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379101 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3791': BackIsHidden: true @@ -21,7 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"09077\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"level\": 2,\n \"traits\": \"Connection. Illicit.\",\n \"permanent\": true,\n\ - \ \"weakness\": false,\n \"cycle\": \"The Scarlet Keys\"\n}" + \ \"cycle\": \"The Scarlet Keys\"\n}" GUID: bba889 Grid: true GridProjection: false @@ -46,9 +46,9 @@ Transform: posX: 16.67 posY: 3.36 posZ: 65.93 - rotX: 358.3 - rotY: 270.03 - rotZ: 358.16 + rotX: 358.0 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Underworld Support 8190ac.yaml b/unpacked/Bag All Player Cards 15bb07/Card Underworld Support 8190ac.yaml index 84c7cd948..95256676b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Underworld Support 8190ac.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Underworld Support 8190ac.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379036 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -21,7 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08046\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ ,\n \"level\": 0,\n \"traits\": \"Favor. Illicit.\",\n \"permanent\": true,\n\ - \ \"weakness\": false,\n \"cycle\": \"Edge of the Earth\"\n}" + \ \"cycle\": \"Edge of the Earth\"\n}" GUID: 8190ac Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.16 posZ: -16.74 - rotX: 359.91 - rotY: 269.79 - rotZ: 0.06 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unearth the Ancients (2) 3a4edd.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unearth the Ancients (2) 3a4edd.yaml index 63908f6c7..335e59637 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unearth the Ancients (2) 3a4edd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unearth the Ancients (2) 3a4edd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379029 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08039\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 0,\n \"level\": 2,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 2,\n \"agilityIcons\": 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 3a4edd Grid: true GridProjection: false @@ -44,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 9.2 - posY: 2.26 + posY: 2.27 posZ: -16.74 - rotX: 359.95 - rotY: 269.8 - rotZ: 359.82 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unearth the Ancients f763e8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unearth the Ancients f763e8.yaml index c89e1bef3..f55cf188d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unearth the Ancients f763e8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unearth the Ancients f763e8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368410 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04024\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: f763e8 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.71 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage (2) 2f2190.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage (2) 2f2190.yaml index 630c94bc0..091f1f23b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage (2) 2f2190.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage (2) 2f2190.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550824 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60526\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Investigator Packs\"\ - \n}" + ,\n \"level\": 2,\n \"traits\": \"Innate. Developed.\",\n \"wildIcons\": 2,\n\ + \ \"cycle\": \"Investigator Packs\"\n}" GUID: 2f2190 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.09 posY: 3.68 posZ: -16.71 - rotX: 359.92 - rotY: 269.89 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage 853b6c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage 853b6c.yaml index af2b0769f..10cf8f2f5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage 853b6c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage 853b6c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587212 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5872': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01593\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 2,\n \"cycle\": \"Core\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"wildIcons\": 2,\n \"cycle\"\ + : \"Core\"\n}" GUID: 853b6c Grid: true GridProjection: false @@ -44,10 +44,10 @@ Tooltip: true Transform: posX: 78.81 posY: 3.32 - posZ: 7.66 - rotX: 359.05 - rotY: 269.99 - rotZ: 0.91 + posZ: 7.67 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage acb83a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage acb83a.yaml index 2b0c8aa90..615c5246f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage acb83a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unexpected Courage acb83a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368508 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3685': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01093\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"wildIcons\": 2,\n \"cycle\": \"Core\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Innate.\",\n \"wildIcons\": 2,\n \"cycle\"\ + : \"Core\"\n}" GUID: acb83a Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.17 posY: 3.25 posZ: -16.73 - rotX: 359.94 - rotY: 269.8 - rotZ: 359.93 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Universal Solvent 2f1166.yaml b/unpacked/Bag All Player Cards 15bb07/Card Universal Solvent 2f1166.yaml index abdabf15b..8fbd54567 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Universal Solvent 2f1166.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Universal Solvent 2f1166.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 233604 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2336': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"85029\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"uses\"\ - : [\n {\n \"count\": 4,\n \"type\": \"Supply\",\n \"token\": \"\ - resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Science.\",\n \"intellectIcons\": 1,\n\ + \ \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\"\ + : \"Supply\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\ + \n}" GUID: 2f1166 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.0 posY: 3.69 posZ: -16.69 - rotX: 359.87 - rotY: 270.01 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unrelenting (1) 45386d.ttslua b/unpacked/Bag All Player Cards 15bb07/Card Unrelenting (1) 45386d.ttslua index e6e2fe949..ae8184b49 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unrelenting (1) 45386d.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/Card Unrelenting (1) 45386d.ttslua @@ -96,4 +96,4 @@ function readBag() end end self.addContextMenuItem("Refresh Seal Options", readBag) -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unrelenting (1) 45386d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unrelenting (1) 45386d.yaml index ac452e181..c47d80540 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unrelenting (1) 45386d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unrelenting (1) 45386d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558007 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5580': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07196\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 1,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\ - \n}" + ,\n \"level\": 1,\n \"traits\": \"Practiced.\",\n \"wildIcons\": 1,\n \"cycle\"\ + : \"The Innsmouth Conspiracy\"\n}" GUID: 45386d Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.01 posY: 3.68 posZ: -16.7 - rotX: 359.96 - rotY: 270.01 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unscrupulous Loan (3) 57b95d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unscrupulous Loan (3) 57b95d.yaml index a1567040f..660db9bbf 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unscrupulous Loan (3) 57b95d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unscrupulous Loan (3) 57b95d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378951 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3789': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08113\",\n \"type\": \"Asset\",\n \"class\": \"Rogue|Survivor\"\ - ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"cycle\": \"Edge of the Earth\"\n}" + ,\n \"cost\": 0,\n \"level\": 3,\n \"traits\": \"Pact.\",\n \"cycle\": \"Edge\ + \ of the Earth\"\n}" GUID: 57b95d Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.18 posY: 2.86 posZ: -16.73 - rotX: 359.9 - rotY: 269.8 - rotZ: 0.15 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unsolved Case 22d886.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unsolved Case 22d886.yaml index 7bb7fec55..3c8f73a74 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unsolved Case 22d886.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unsolved Case 22d886.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 431656 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4316': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05010\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 4,\n \"traits\": \"Insight. Mystery.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 4,\n \"traits\": \"Insight. Mystery.\",\n \"weakness\": true,\n\ + \ \"cycle\": \"The Circle Undone\"\n}" GUID: 22d886 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.06 posY: 3.88 posZ: -16.71 - rotX: 0.08 - rotY: 269.94 - rotZ: 359.92 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Bloodthirst) a5be8b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Bloodthirst) a5be8b.yaml index dbb8ea95a..15f157e90 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Bloodthirst) a5be8b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Bloodthirst) a5be8b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 438124 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4381': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"52011\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness. Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1,\n \"cycle\": \"Return to the Path to Carcosa\"\n}" + ,\n \"traits\": \"Madness. Pact.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"hidden\": true,\n \"cycle\": \"Return to the Path to Carcosa\"\n}" GUID: a5be8b Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.16 posY: 4.18 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.97 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Cowardice) ea0fa1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Cowardice) ea0fa1.yaml index e339e95e2..24bc24bde 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Cowardice) ea0fa1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Cowardice) ea0fa1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 438122 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4381': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"52013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness. Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1,\n \"cycle\": \"Return to the Path to Carcosa\"\n}" + ,\n \"traits\": \"Madness. Pact.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"hidden\": true,\n \"cycle\": \"Return to the Path to Carcosa\"\n}" GUID: ea0fa1 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 3.77 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Curiosity) f6aba5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Curiosity) f6aba5.yaml index e9e7aa146..3adefe392 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Curiosity) f6aba5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Unspeakable Oath (Curiosity) f6aba5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 438123 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4381': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"52012\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness. Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1,\n \"cycle\": \"Return to the Path to Carcosa\"\n}" + ,\n \"traits\": \"Madness. Pact.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"hidden\": true,\n \"cycle\": \"Return to the Path to Carcosa\"\n}" GUID: f6aba5 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 3.8 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Until the End of Time 41a9ec.yaml b/unpacked/Bag All Player Cards 15bb07/Card Until the End of Time 41a9ec.yaml index 468692608..db689fd60 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Until the End of Time 41a9ec.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Until the End of Time 41a9ec.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 376600 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3766': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04015\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Talent.\",\n \"combatIcons\": 1,\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 41a9ec Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.18 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Untimely Transaction (1) 69289f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Untimely Transaction (1) 69289f.yaml index 571e8e332..d51c14c6e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Untimely Transaction (1) 69289f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Untimely Transaction (1) 69289f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379041 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08051\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Favor.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the\ - \ Earth\"\n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Favor.\",\n \"wildIcons\":\ + \ 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 69289f Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.2 posY: 2.18 posZ: -16.74 - rotX: 359.92 - rotY: 269.79 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ursula Downs 07c37d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ursula Downs 07c37d.yaml index 0062a3bd6..1465465aa 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ursula Downs 07c37d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ursula Downs 07c37d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 271417 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2714': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.81 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ursula Downs c91482.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ursula Downs c91482.yaml index 0f6fce9f9..41aae2e0f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ursula Downs c91482.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ursula Downs c91482.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 260317 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2603': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"04002-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"04002-m\",\n \"type\": \"Minicard\"\n}" GUID: c91482 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 - posY: 1.81 + posY: 1.8 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Valentino Rivas 726d1d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Valentino Rivas 726d1d.yaml index 33c24b9fa..a138f5d7a 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Valentino Rivas 726d1d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Valentino Rivas 726d1d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 312514 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3125': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Took You Long Enough DragSelectable: true GMNotes: "{\n \"id\": \"05261\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Ally. Socialite.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Circle Undone\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Ally. Socialite.\",\n \"agilityIcons\": 1,\n\ + \ \"wildIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 726d1d Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 5.0 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Vantage Point 2f9ab1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Vantage Point 2f9ab1.yaml index 7cdc08f7b..afef9e04c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Vantage Point 2f9ab1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Vantage Point 2f9ab1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368411 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04306\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 2f9ab1 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.09 posY: 3.68 posZ: -16.71 - rotX: 359.91 - rotY: 269.89 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Vault of Knowledge 2fdcc9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Vault of Knowledge 2fdcc9.yaml index a479aff41..351dde0dc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Vault of Knowledge 2fdcc9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Vault of Knowledge 2fdcc9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538800 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60202\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Talent.\",\n \"willpowerIcons\": 1,\n \"agilityIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 2fdcc9 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.0 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Veda Whitsley a0c2da.yaml b/unpacked/Bag All Player Cards 15bb07/Card Veda Whitsley a0c2da.yaml index 56545a36d..8428fc178 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Veda Whitsley a0c2da.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Veda Whitsley a0c2da.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 231709 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2317': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: Skilled Botanist DragSelectable: true GMNotes: "{\n \"id\": \"53037\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1,\n \"\ - wildIcons\": 2,\n \"cycle\": \"Return to the Forgotten Age\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Ally. Wayfarer.\",\n \"willpowerIcons\": 1,\n\ + \ \"agilityIcons\": 1,\n \"wildIcons\": 2,\n \"cycle\": \"Return to the Forgotten\ + \ Age\"\n}" GUID: a0c2da Grid: true GridProjection: false @@ -40,16 +40,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.2 posY: 2.94 posZ: -16.73 - rotX: 0.04 - rotY: 269.8 - rotZ: 359.36 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Vengeful Hound ce3a1a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Vengeful Hound ce3a1a.yaml index ec7e7f979..96991496e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Vengeful Hound ce3a1a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Vengeful Hound ce3a1a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 380949 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3809': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"98009\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"cycle\": \"Promo\"\n}" + ,\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"weakness\": true,\n\ + \ \"cycle\": \"Promo\"\n}" GUID: ce3a1a Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 3.85 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Venturer 0e2987.yaml b/unpacked/Bag All Player Cards 15bb07/Card Venturer 0e2987.yaml index a49b4b4d1..1495509b0 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Venturer 0e2987.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Venturer 0e2987.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226332 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Supply\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Wayfarer.\",\n \"intellectIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Supply\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Forgotten Age\"\n\ + }" GUID: 0e2987 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.15 posY: 3.83 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Versatile (2) eca1c8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Versatile (2) eca1c8.yaml index b80d59974..b88ad7296 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Versatile (2) eca1c8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Versatile (2) eca1c8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379711 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3797': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06167\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\"\ - : false,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\": true,\n \"cycle\"\ + : \"The Dream-Eaters\"\n}" GUID: eca1c8 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.71 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Vicious Blow (2) d2e026.yaml b/unpacked/Bag All Player Cards 15bb07/Card Vicious Blow (2) d2e026.yaml index 1f409897a..30e17f7ce 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Vicious Blow (2) d2e026.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Vicious Blow (2) d2e026.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226341 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02299\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\"\ - ,\n \"level\": 2,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Dunwich Legacy\"\ - \n}" + ,\n \"level\": 2,\n \"traits\": \"Practiced. Expert.\",\n \"combatIcons\": 2,\n\ + \ \"cycle\": \"The Dunwich Legacy\"\n}" GUID: d2e026 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.01 posY: 3.76 posZ: -16.7 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Vicious Blow 889121.yaml b/unpacked/Bag All Player Cards 15bb07/Card Vicious Blow 889121.yaml index 50dcc7d10..8c1f7d19f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Vicious Blow 889121.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Vicious Blow 889121.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226302 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01025\",\n \"alternate_ids\": [\n \"60119\",\n \"\ 01525\"\n ],\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"level\":\ - \ 0,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"combatIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ 0,\n \"traits\": \"Practiced.\",\n \"combatIcons\": 1,\n \"cycle\": \"Core\"\ + \n}" GUID: '889121' Grid: true GridProjection: false @@ -44,11 +44,11 @@ Tags: Tooltip: true Transform: posX: 18.97 - posY: 3.37 + posY: 3.38 posZ: -56.94 - rotX: 359.51 - rotY: 270.01 - rotZ: 0.28 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Vincent Lee 43ad8a.yaml b/unpacked/Bag All Player Cards 15bb07/Card Vincent Lee 43ad8a.yaml index 01ba8ae76..15d7e026e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Vincent Lee 43ad8a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Vincent Lee 43ad8a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 846101 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8461': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09004-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"09004-m\",\n \"type\": \"Minicard\"\n}" GUID: 43ad8a Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 15.3 posY: 2.21 posZ: 54.5 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Vincent Lee c431f3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Vincent Lee c431f3.yaml index 7ce3368e0..6586f17e7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Vincent Lee c431f3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Vincent Lee c431f3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 843401 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8434': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 20.94 posY: 2.21 posZ: 51.76 - rotX: 0.02 - rotY: 180.01 - rotZ: 359.98 - scaleX: 1.0 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.0 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Voice of Ra (Taboo) 77f7f3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Voice of Ra (Taboo) 77f7f3.yaml index e8f170cfa..4be5a320d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Voice of Ra (Taboo) 77f7f3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Voice of Ra (Taboo) 77f7f3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 558207 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5582': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60416-t\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 77f7f3 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 21.63 posY: 4.28 posZ: -62.25 - rotX: 0.04 - rotY: 269.81 - rotZ: 2.68 + rotX: 0.0 + rotY: 270.0 + rotZ: 3.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Voice of Ra 0988b2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Voice of Ra 0988b2.yaml index 013b340f3..34d1e8f55 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Voice of Ra 0988b2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Voice of Ra 0988b2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538714 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5387': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60416\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 0988b2 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.02 posY: 4.01 posZ: -16.7 - rotX: 359.87 + rotX: 0.0 rotY: 270.0 - rotZ: 0.03 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Voice of the Messenger f93ea8.yaml b/unpacked/Bag All Player Cards 15bb07/Card Voice of the Messenger f93ea8.yaml index 8d5cf8362..11c826c1f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Voice of the Messenger f93ea8.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Voice of the Messenger f93ea8.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 376501 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3765': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04016\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse. Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"traits\": \"Curse. Pact.\",\n \"weakness\": true,\n \"cycle\": \"The Forgotten\ + \ Age\"\n}" GUID: f93ea8 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.0 posY: 3.71 posZ: -16.69 - rotX: 359.95 - rotY: 270.01 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection (2) 4d74f6.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection (2) 4d74f6.yaml index a69e01ac4..7f9d018cb 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection (2) 4d74f6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection (2) 4d74f6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230341 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03270\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spell. Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Path to\ - \ Carcosa\"\n}" + ,\n \"cost\": 1,\n \"level\": 2,\n \"traits\": \"Spell. Spirit.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: 4d74f6 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.02 posY: 4.05 posZ: -16.7 - rotX: 359.85 + rotX: 0.0 rotY: 270.0 - rotZ: 0.03 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection (5) 7bc995.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection (5) 7bc995.yaml index 494df67a2..2b3dafea3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection (5) 7bc995.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection (5) 7bc995.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230360 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02307\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 1,\n \"level\": 5,\n \"traits\": \"Spell. Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n\ - \ \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"level\": 5,\n \"traits\": \"Spell. Spirit.\",\n \"willpowerIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 7bc995 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 3.82 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection 6656ad.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection 6656ad.yaml index 25315d19e..169a428cc 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection 6656ad.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ward of Protection 6656ad.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 230308 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2303': BackIsHidden: true @@ -21,8 +21,8 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01065\",\n \"alternate_ids\": [\n \"01565\"\n ],\n \ \ \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 1,\n \"level\": 0,\n\ - \ \"traits\": \"Spell. Spirit.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}" + \ \"traits\": \"Spell. Spirit.\",\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n\ + }" GUID: 6656ad Grid: true GridProjection: false @@ -44,11 +44,11 @@ Tags: Tooltip: true Transform: posX: 32.98 - posY: 3.32 + posY: 3.33 posZ: -47.41 - rotX: 1.15 - rotY: 270.01 - rotZ: 1.7 + rotX: 1.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Ward of Radiance 69116c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Ward of Radiance 69116c.yaml index eeee38b76..ade5066be 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Ward of Radiance 69116c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Ward of Radiance 69116c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 583025 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5830': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07031\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Insight. Blessed.\",\n \"willpowerIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 69116c Grid: true GridProjection: false @@ -44,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 9.09 - posY: 3.68 + posY: 3.69 posZ: -16.71 - rotX: 359.93 - rotY: 269.87 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Warning Shot ec38db.yaml b/unpacked/Bag All Player Cards 15bb07/Card Warning Shot ec38db.yaml index 25f1c72c1..8f4de3764 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Warning Shot ec38db.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Warning Shot ec38db.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 292814 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2928': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05229\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Tactic. Trick.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Tactic. Trick.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: ec38db Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.0 posY: 3.87 posZ: -16.7 - rotX: 0.56 - rotY: 270.01 - rotZ: 359.86 + rotX: 1.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Watch this! c40cb4.yaml b/unpacked/Bag All Player Cards 15bb07/Card Watch this! c40cb4.yaml index 7d3c4b403..e4f1bdd80 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Watch this! c40cb4.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Watch this! c40cb4.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 261700 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2617': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03233\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 0,\n \"traits\": \"Gambit.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"The Path to Carcosa\"\n}" + ,\n \"level\": 0,\n \"traits\": \"Gambit.\",\n \"willpowerIcons\": 1,\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: c40cb4 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 5.44 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Watcher from Another Dimension 6945f7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Watcher from Another Dimension 6945f7.yaml index 4702bb28c..16989108c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Watcher from Another Dimension 6945f7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Watcher from Another Dimension 6945f7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 581311 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5813': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06017\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Monster. Extradimensional.\",\n \"permanent\": false,\n \"\ - weakness\": true,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"traits\": \"Monster. Extradimensional.\",\n \"weakness\": true,\n \"hidden\"\ + : true,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 6945f7 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 4.65 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Waveworn Idol 591284.yaml b/unpacked/Bag All Player Cards 15bb07/Card Waveworn Idol 591284.yaml index a501c0dee..ea8da0139 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Waveworn Idol 591284.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Waveworn Idol 591284.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 451112 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4511': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07179\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"intellectIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\":\ - \ \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Item. Relic.\",\n \"intellectIcons\": 1,\n \ + \ \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: '591284' Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.82 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Waylay da207b.yaml b/unpacked/Bag All Player Cards 15bb07/Card Waylay da207b.yaml index 39e1023a0..c8ee2587f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Waylay da207b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Waylay da207b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368818 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"03237\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 2,\n \"cycle\": \"The Path\ - \ to Carcosa\"\n}" + ,\n \"cost\": 3,\n \"level\": 0,\n \"traits\": \"Tactic.\",\n \"agilityIcons\"\ + : 2,\n \"cycle\": \"The Path to Carcosa\"\n}" GUID: da207b Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.17 posY: 3.03 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Well Connected (3) 170127.yaml b/unpacked/Bag All Player Cards 15bb07/Card Well Connected (3) 170127.yaml index 739d30a8f..08bdc50ab 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Well Connected (3) 170127.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Well Connected (3) 170127.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449526 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4495': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"54006\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Condition.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"Return to the Circle Undone\"\n}" + ,\n \"cost\": 2,\n \"level\": 3,\n \"traits\": \"Condition.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Return to the Circle Undone\"\n}" GUID: '170127' Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: - posX: 9.13 + posX: 9.12 posY: 3.88 posZ: -16.72 - rotX: 0.17 - rotY: 269.81 - rotZ: 359.87 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Well Connected 66b7d5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Well Connected 66b7d5.yaml index cb6a6b3da..17a9f3dc4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Well Connected 66b7d5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Well Connected 66b7d5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 527608 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5276': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05028\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Condition.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Condition.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: 66b7d5 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.2 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Well Prepared (2) eea4ef.yaml b/unpacked/Bag All Player Cards 15bb07/Card Well Prepared (2) eea4ef.yaml index 9aa0eb1db..2e2f6e496 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Well Prepared (2) eea4ef.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Well Prepared (2) eea4ef.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 226345 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2263': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04151\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Talent.\",\n \"cycle\": \"\ + The Forgotten Age\"\n}" GUID: eea4ef Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.17 posY: 3.03 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.04 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Well-Maintained (1) e454c3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Well-Maintained (1) e454c3.yaml index 742403ebc..6cd928df7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Well-Maintained (1) e454c3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Well-Maintained (1) e454c3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 278012 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2780': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05152\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Upgrade.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 0,\n \"level\": 1,\n \"traits\": \"Upgrade.\",\n \"agilityIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: e454c3 Grid: true GridProjection: false @@ -46,8 +45,8 @@ Transform: posX: 9.15 posY: 4.06 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel Back) 4232d9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel Back) 4232d9.yaml index 547d03d9e..2b7670428 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel Back) 4232d9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel Back) 4232d9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 535802 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5358': BackIsHidden: true @@ -39,17 +39,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 78.8 posY: 3.3 - posZ: 7.31 - rotX: 2.02 - rotY: 179.98 - rotZ: 1.48 - scaleX: 1.1 + posZ: 7.3 + rotX: 2.0 + rotY: 180.0 + rotZ: 1.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel Front) 61503e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel Front) 61503e.yaml index e5c2dfc97..8856c376d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel Front) 61503e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel Front) 61503e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 535801 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5358': BackIsHidden: true @@ -39,17 +39,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 78.22 posY: 3.32 posZ: 8.84 - rotX: 359.47 - rotY: 179.98 - rotZ: 359.72 - scaleX: 1.1 + rotX: 359.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel) fd91ea.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel) fd91ea.yaml index 2348df136..4e503d92c 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel) fd91ea.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams (Parallel) fd91ea.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 535800 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5358': BackIsHidden: true @@ -39,17 +39,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 78.67 posY: 3.33 posZ: 7.63 - rotX: 0.2 + rotX: 0.0 rotY: 180.0 - rotZ: 0.23 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams 11bcb3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams 11bcb3.yaml index 955c56b00..ceb72cbb5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams 11bcb3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams 11bcb3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587404 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5874': BackIsHidden: true @@ -19,7 +19,7 @@ CustomDeck: UniqueBack: true Description: The Urchin DragSelectable: true -GMNotes: "{\n \"id\": \"01005-r\",\n \"type\": \"Investigator\",\n \"class\": \"\ +GMNotes: "{\n \"id\": \"01505\",\n \"type\": \"Investigator\",\n \"class\": \"\ Survivor\",\n \"traits\": \"Drifter.\",\n \"willpowerIcons\": 4,\n \"intellectIcons\"\ : 3,\n \"combatIcons\": 1,\n \"agilityIcons\": 4,\n \"cycle\": \"Core\"\n}" GUID: 11bcb3 @@ -39,17 +39,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 47.46 posY: 1.99 posZ: -116.22 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.0 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.0 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams 15e40d.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams 15e40d.yaml index 6999c0564..1c8d79a20 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams 15e40d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams 15e40d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 258404 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2584': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"01005-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"01005-m\",\n \"type\": \"Minicard\"\n}" GUID: 15e40d Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 28.75 posY: 3.37 posZ: -59.03 rotX: 1.0 - rotY: 269.99 - rotZ: 0.48 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams 9b1e1f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams 9b1e1f.yaml index 3c3d87d94..5d22885b3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams 9b1e1f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams 9b1e1f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587104 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5871': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"01005-revised-m\",\n \"type\": \"Minicard\",\n \"traits\"\ - : \"\"\n}" +GMNotes: "{\n \"id\": \"01505-m\",\n \"type\": \"Minicard\"\n}" GUID: 9b1e1f Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 45.3 posY: 1.99 posZ: -99.98 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams fc1d17.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams fc1d17.yaml index 4741fd861..05d860ba7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams fc1d17.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wendy Adams fc1d17.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 535704 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5357': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.49 posZ: -73.09 - rotX: 359.62 + rotX: 0.0 rotY: 180.0 - rotZ: 0.09 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 05d7d5.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 05d7d5.yaml index 7ddca1295..38b65b374 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 05d7d5.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 05d7d5.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587213 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5872': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01514\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Core\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"wildIcons\": 2,\n \"cycle\"\ + : \"Core\"\n}" GUID: 05d7d5 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 48.56 posY: 1.99 posZ: -126.16 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 27b4ea.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 27b4ea.yaml index fec7227e1..76637eb14 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 27b4ea.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 27b4ea.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 590608 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5906': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"wildIcons\": 2,\n \"cycle\": \"Core\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"wildIcons\": 2,\n \"cycle\"\ + : \"Core\"\n}" GUID: 27b4ea Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.71 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 664b70.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 664b70.yaml index 6bf61044e..117b17b7d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 664b70.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wendy's Amulet 664b70.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 536001 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5360': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Advanced DragSelectable: true GMNotes: "{\n \"id\": \"90039\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 2,\n \"cycle\":\ - \ \"Standalone\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item. Relic.\",\n \"willpowerIcons\": 1,\n \ + \ \"wildIcons\": 2,\n \"cycle\": \"Standalone\"\n}" GUID: 664b70 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 79.37 posY: 3.3 posZ: 6.7 - rotX: 359.58 - rotY: 269.99 - rotZ: 1.14 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card What Have You Done 2c76d9.yaml b/unpacked/Bag All Player Cards 15bb07/Card What Have You Done 2c76d9.yaml index 7d4cbe999..8fab41275 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card What Have You Done 2c76d9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card What Have You Done 2c76d9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 534901 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5349': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Madness. DragSelectable: true GMNotes: "{\n \"id\": \"84007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"Standalone\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"Standalone\"\ + \n}" GUID: 2c76d9 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 101.21 posY: 1.99 posZ: -15.65 - rotX: 359.99 - rotY: 269.98 - rotZ: 359.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Whispers from the Deep dd4a25.yaml b/unpacked/Bag All Player Cards 15bb07/Card Whispers from the Deep dd4a25.yaml index 174109dff..e7087dc8f 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Whispers from the Deep dd4a25.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Whispers from the Deep dd4a25.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 585903 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5859': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"07009\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \ - \ \"wildIcons\": 1,\n \"negativeIcons\": true,\n \"cycle\": \"The Innsmouth Conspiracy\"\ - \n}" + ,\n \"traits\": \"Curse.\",\n \"weakness\": true,\n \"wildIcons\": 1,\n \"negativeIcons\"\ + : true,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: dd4a25 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 3.8 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Whitton Greene (2) 854c79.yaml b/unpacked/Bag All Player Cards 15bb07/Card Whitton Greene (2) 854c79.yaml index 969d8600b..28a5468f8 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Whitton Greene (2) 854c79.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Whitton Greene (2) 854c79.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538821 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Hunter of Rare Books DragSelectable: true GMNotes: "{\n \"id\": \"60223\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ - : 1,\n \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 4,\n \"level\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n \"willpowerIcons\"\ + : 1,\n \"intellectIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 854c79 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.0 posY: 3.78 posZ: -16.69 - rotX: 0.04 - rotY: 270.01 - rotZ: 359.99 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Whitton Greene 3c5099.yaml b/unpacked/Bag All Player Cards 15bb07/Card Whitton Greene 3c5099.yaml index 5cf1fec9b..4ed6bdaa6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Whitton Greene 3c5099.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Whitton Greene 3c5099.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 538811 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5388': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Hunter of Rare Books DragSelectable: true GMNotes: "{\n \"id\": \"60213\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"cycle\": \"Investigator\ - \ Packs\"\n}" + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"intellectIcons\"\ + : 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: 3c5099 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.79 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Will to Survive (3) 0027f2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Will to Survive (3) 0027f2.yaml index e02b8d884..c27f911e7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Will to Survive (3) 0027f2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Will to Survive (3) 0027f2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368860 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3688': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01085\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \ - \ \"cycle\": \"Core\"\n}" + ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"combatIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}" GUID: 0027f2 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.72 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Will to Survive (3) 3959fa.yaml b/unpacked/Bag All Player Cards 15bb07/Card Will to Survive (3) 3959fa.yaml index 0be8318c9..05f68ca6d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Will to Survive (3) 3959fa.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Will to Survive (3) 3959fa.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587216 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5872': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01585\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \ - \ \"cycle\": \"Core\"\n}" + ,\n \"cost\": 4,\n \"level\": 3,\n \"traits\": \"Spirit.\",\n \"combatIcons\"\ + : 1,\n \"wildIcons\": 1,\n \"cycle\": \"Core\"\n}" GUID: 3959fa Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 78.76 posY: 3.32 posZ: 7.67 - rotX: 359.22 - rotY: 269.99 - rotZ: 0.87 + rotX: 359.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Will to Survive dc4a2c.yaml b/unpacked/Bag All Player Cards 15bb07/Card Will to Survive dc4a2c.yaml index f6d9f5a06..44b7f6f2d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Will to Survive dc4a2c.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Will to Survive dc4a2c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550810 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5508': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"60512\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n\ - \ \"cycle\": \"Investigator Packs\"\n}" + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Spirit.\",\n \"combatIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"Investigator Packs\"\n}" GUID: dc4a2c Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.06 posY: 3.87 posZ: -16.71 - rotX: 0.19 - rotY: 269.94 - rotZ: 359.84 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card William Yorick 7e4c56.yaml b/unpacked/Bag All Player Cards 15bb07/Card William Yorick 7e4c56.yaml index ecbb7a904..bc35eb6c5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card William Yorick 7e4c56.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card William Yorick 7e4c56.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 271114 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2711': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.94 posZ: -73.09 - rotX: 0.02 + rotX: 0.0 rotY: 180.0 - rotZ: 359.98 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card William Yorick 98d974.yaml b/unpacked/Bag All Player Cards 15bb07/Card William Yorick 98d974.yaml index c24fdfc76..8bcf0e73d 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card William Yorick 98d974.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card William Yorick 98d974.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 259414 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2594': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"03005-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"03005-m\",\n \"type\": \"Minicard\"\n}" GUID: 98d974 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 2.13 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Winds of Power (1) bcdfde.yaml b/unpacked/Bag All Player Cards 15bb07/Card Winds of Power (1) bcdfde.yaml index 4af254af1..384f845ba 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Winds of Power (1) bcdfde.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Winds of Power (1) bcdfde.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379053 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08063\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spirit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 2,\n \"cycle\": \"Edge\ - \ of the Earth\"\n}" + ,\n \"cost\": 2,\n \"level\": 1,\n \"traits\": \"Spirit.\",\n \"willpowerIcons\"\ + : 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: bcdfde Grid: true GridProjection: false @@ -45,10 +44,10 @@ Tooltip: true Transform: posX: 9.19 posY: 2.21 - posZ: -16.74 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + posZ: -16.73 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Winging It aa3984.yaml b/unpacked/Bag All Player Cards 15bb07/Card Winging It aa3984.yaml index a187a67ec..c3d2c3352 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Winging It aa3984.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Winging It aa3984.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 430501 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4305': BackIsHidden: true @@ -21,8 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04272\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Tactic. Improvised.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The Forgotten Age\"\n\ - }" + cycle\": \"The Forgotten Age\"\n}" GUID: aa3984 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 5.41 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Winifred Habbamock 038599.yaml b/unpacked/Bag All Player Cards 15bb07/Card Winifred Habbamock 038599.yaml index cec45dc79..38771d54b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Winifred Habbamock 038599.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Winifred Habbamock 038599.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 274218 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2742': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"60301-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"60301-m\",\n \"type\": \"Minicard\"\n}" GUID: 038599 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.99 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Winifred Habbamock cd4028.yaml b/unpacked/Bag All Player Cards 15bb07/Card Winifred Habbamock cd4028.yaml index c4edde6ec..c3af6d8ac 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Winifred Habbamock cd4028.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Winifred Habbamock cd4028.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 234902 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2349': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.64 posZ: -73.09 - rotX: 0.04 + rotX: 0.0 rotY: 180.0 - rotZ: 359.97 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wish Eater 464ca1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wish Eater 464ca1.yaml index f4aff20f7..1019409b4 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wish Eater 464ca1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wish Eater 464ca1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448937 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4489': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Jewel of the Gods DragSelectable: true GMNotes: "{\n \"id\": \"06277\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Item. Relic. Blessed.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"traits\": \"Item. Relic. Blessed.\",\n \"cycle\": \"The Dream-Eaters\"\n\ + }" GUID: 464ca1 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.18 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wither (4) f57a6f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wither (4) f57a6f.yaml index 1c4f2c48c..f3d0aea90 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wither (4) f57a6f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wither (4) f57a6f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379619 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3796': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05321\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"combatIcons\": 2,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 2,\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"combatIcons\"\ + : 2,\n \"cycle\": \"The Circle Undone\"\n}" GUID: f57a6f Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.77 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wither d946d9.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wither d946d9.yaml index 58ef825a1..acb26a1c6 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wither d946d9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wither d946d9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 277511 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2775': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05157\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"combatIcons\": 1,\n \"cycle\": \"The Circle\ - \ Undone\"\n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Spell.\",\n \"combatIcons\"\ + : 1,\n \"cycle\": \"The Circle Undone\"\n}" GUID: d946d9 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.1 posY: 3.68 posZ: -16.71 - rotX: 359.91 - rotY: 269.87 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wooden Sledge 991640.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wooden Sledge 991640.yaml index 5d8c17515..25e455fa1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wooden Sledge 991640.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wooden Sledge 991640.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 450307 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4503': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08615\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Item. Expedition.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"agilityIcons\": 1,\n \"wildIcons\": 2,\n \"cycle\"\ - : \"Edge of the Earth\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Item. Expedition.\",\n \"agilityIcons\": 1,\n\ + \ \"wildIcons\": 2,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: '991640' Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 79.36 posY: 3.32 posZ: 8.08 - rotX: 359.43 - rotY: 269.99 - rotZ: 359.61 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Word of Command (2) 26853e.yaml b/unpacked/Bag All Player Cards 15bb07/Card Word of Command (2) 26853e.yaml index 5d7fffaa2..1bdda4fae 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Word of Command (2) 26853e.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Word of Command (2) 26853e.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 448030 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4480': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06202\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 2,\n \"level\": 2,\n \"traits\": \"Spell.\",\n \"cycle\": \"The\ + \ Dream-Eaters\"\n}" GUID: 26853e Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 5.54 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Word of Weal 5edfc2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Word of Weal 5edfc2.yaml index bc6ff54a3..e584796c7 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Word of Weal 5edfc2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Word of Weal 5edfc2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379008 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -19,9 +19,9 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09013\",\n \"type\": \"Event\",\n \"cost\": 0,\n \"traits\"\ - : \"Pact.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The\ - \ Scarlet Keys\"\n}" +GMNotes: "{\n \"id\": \"09013\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ + ,\n \"cost\": 0,\n \"traits\": \"Pact.\",\n \"cycle\": \"The Scarlet Keys\"\n\ + }" GUID: 5edfc2 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 15.34 posY: 2.21 posZ: 59.44 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Word of Woe bb7174.yaml b/unpacked/Bag All Player Cards 15bb07/Card Word of Woe bb7174.yaml index 220311b40..0d48bb739 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Word of Woe bb7174.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Word of Woe bb7174.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379007 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -19,9 +19,9 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09012\",\n \"type\": \"Event\",\n \"cost\": 2,\n \"traits\"\ - : \"Pact.\",\n \"permanent\": false,\n \"weakness\": false,\n \"cycle\": \"The\ - \ Scarlet Keys\"\n}" +GMNotes: "{\n \"id\": \"09012\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ + ,\n \"cost\": 2,\n \"traits\": \"Pact.\",\n \"cycle\": \"The Scarlet Keys\"\n\ + }" GUID: bb7174 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 15.06 posY: 2.21 posZ: 59.71 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Working a Hunch 07b7a1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Working a Hunch 07b7a1.yaml index 7a30a7c3e..b93082181 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Working a Hunch 07b7a1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Working a Hunch 07b7a1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 587203 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5872': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01537\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Core\"\ - \n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"Core\"\n}" GUID: 07b7a1 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 78.81 posY: 3.33 posZ: 7.67 - rotX: 359.82 + rotX: 0.0 rotY: 270.0 - rotZ: 0.2 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Working a Hunch eb6165.yaml b/unpacked/Bag All Player Cards 15bb07/Card Working a Hunch eb6165.yaml index 91ad20c8c..55cda99d9 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Working a Hunch eb6165.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Working a Hunch eb6165.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368413 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3684': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"01037\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 2,\n \"cycle\": \"Core\"\ - \n}" + ,\n \"cost\": 2,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"intellectIcons\"\ + : 2,\n \"cycle\": \"Core\"\n}" GUID: eb6165 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.97 posY: 4.06 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wounded Bystander fb54d3.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wounded Bystander fb54d3.yaml index 325a818ca..49b64e831 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wounded Bystander fb54d3.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wounded Bystander fb54d3.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379004 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: On Death's Doorstep DragSelectable: true GMNotes: "{\n \"id\": \"09007\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Bystander.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Damage\",\n\ - \ \"token\": \"Damage\"\n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" + ,\n \"traits\": \"Ally. Bystander.\",\n \"weakness\": true,\n \"uses\": [\n \ + \ {\n \"count\": 3,\n \"type\": \"Damage\",\n \"token\": \"damage\"\ + \n }\n ],\n \"cycle\": \"The Scarlet Keys\"\n}" GUID: fb54d3 Grid: true GridProjection: false @@ -46,10 +46,10 @@ Tooltip: true Transform: posX: 18.9 posY: 2.21 - posZ: 59.61 - rotX: 0.02 + posZ: 59.62 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Wracked by Nightmares 97781f.yaml b/unpacked/Bag All Player Cards 15bb07/Card Wracked by Nightmares 97781f.yaml index 4a328d806..e99546bd3 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Wracked by Nightmares 97781f.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Wracked by Nightmares 97781f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 371013 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3710': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"The Dunwich Legacy\"\n}" + ,\n \"traits\": \"Madness.\",\n \"weakness\": true,\n \"cycle\": \"The Dunwich\ + \ Legacy\"\n}" GUID: 97781f Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.13 posY: 4.18 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Written in the Stars 320bbe.yaml b/unpacked/Bag All Player Cards 15bb07/Card Written in the Stars 320bbe.yaml index 9993825fe..a84acfc74 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Written in the Stars 320bbe.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Written in the Stars 320bbe.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 379024 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3790': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"08034\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"Edge of the\ - \ Earth\"\n}" + ,\n \"cost\": 1,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"wildIcons\"\ + : 1,\n \"cycle\": \"Edge of the Earth\"\n}" GUID: 320bbe Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 8.99 posY: 3.82 posZ: -16.69 - rotX: 359.86 - rotY: 270.01 - rotZ: 0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Yaotl (1) 284bbe.yaml b/unpacked/Bag All Player Cards 15bb07/Card Yaotl (1) 284bbe.yaml index 4047c7950..25a5d00bd 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Yaotl (1) 284bbe.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Yaotl (1) 284bbe.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 584811 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5848': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Lost Son of Eztli DragSelectable: true GMNotes: "{\n \"id\": \"04035\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"cycle\": \"The Forgotten\ - \ Age\"\n}" + ,\n \"cost\": 3,\n \"level\": 1,\n \"traits\": \"Ally. Wayfarer.\",\n \"willpowerIcons\"\ + : 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: 284bbe Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 3.75 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Yaztaroth bd65dc.yaml b/unpacked/Bag All Player Cards 15bb07/Card Yaztaroth bd65dc.yaml index 4eb48fce1..d3cf4752e 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Yaztaroth bd65dc.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Yaztaroth bd65dc.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 590201 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5902': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"98018\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse. Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"Promo\"\n}" + ,\n \"traits\": \"Curse. Pact.\",\n \"weakness\": true,\n \"cycle\": \"Promo\"\ + \n}" GUID: bd65dc Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 9.11 posY: 3.94 posZ: -16.72 - rotX: 0.01 - rotY: 269.83 - rotZ: 359.96 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card You handle this one! dcdcea.yaml b/unpacked/Bag All Player Cards 15bb07/Card You handle this one! dcdcea.yaml index 3eb601e43..9f34e7fe5 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card You handle this one! dcdcea.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card You handle this one! dcdcea.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 368705 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3687': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"04028\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Forgotten Age\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Trick.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Forgotten Age\"\n}" GUID: dcdcea Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.13 posY: 3.68 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card You owe me one! d27d12.yaml b/unpacked/Bag All Player Cards 15bb07/Card You owe me one! d27d12.yaml index 70ff7d4cb..0ff4de388 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card You owe me one! d27d12.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card You owe me one! d27d12.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 378018 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3780': BackIsHidden: true @@ -20,9 +20,9 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"05319\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Favor. Gambit.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"combatIcons\": 1,\n\ - \ \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\n}" + ,\n \"cost\": 0,\n \"level\": 0,\n \"traits\": \"Favor. Gambit.\",\n \"intellectIcons\"\ + : 1,\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Circle Undone\"\ + \n}" GUID: d27d12 Grid: true GridProjection: false @@ -46,8 +46,8 @@ Transform: posX: 9.08 posY: 3.73 posZ: -16.71 - rotX: 359.94 - rotY: 269.91 + rotX: 0.0 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Your Worst Nightmare 406ab2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Your Worst Nightmare 406ab2.yaml index 30092eab3..f20aecd4b 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Your Worst Nightmare 406ab2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Your Worst Nightmare 406ab2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 438128 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4381': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Basic Weakness DragSelectable: true GMNotes: "{\n \"id\": \"06038\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Monster.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"traits\": \"Monster.\",\n \"weakness\": true,\n \"basicWeaknessCount\"\ + : 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 406ab2 Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.99 posY: 3.75 posZ: -16.69 - rotX: 359.89 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Zeal 695bb7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Zeal 695bb7.yaml index a1ae06a9e..0aca258a1 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Zeal 695bb7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Zeal 695bb7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 440625 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4406': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"06032\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"cost\": 1,\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"intellectIcons\": 1,\n \"agilityIcons\":\ - \ 1,\n \"cycle\": \"The Dream-Eaters\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"intellectIcons\"\ + : 1,\n \"agilityIcons\": 1,\n \"cycle\": \"The Dream-Eaters\"\n}" GUID: 695bb7 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.17 posY: 3.18 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Zebulon Whateley 6714b2.yaml b/unpacked/Bag All Player Cards 15bb07/Card Zebulon Whateley 6714b2.yaml index 519ca7d1a..227e65901 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Zebulon Whateley 6714b2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Zebulon Whateley 6714b2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 232949 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2329': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Recalling Ancient Things DragSelectable: true GMNotes: "{\n \"id\": \"02217\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Ally. Dunwich.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"willpowerIcons\": 1,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"The Dunwich Legacy\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Ally. Dunwich.\",\n \"willpowerIcons\": 1,\n\ + \ \"wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 6714b2 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 3.8 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Zoey Samaras 98a0e1.yaml b/unpacked/Bag All Player Cards 15bb07/Card Zoey Samaras 98a0e1.yaml index 76f229601..e3c815b32 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Zoey Samaras 98a0e1.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Zoey Samaras 98a0e1.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 449902 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '4499': BackIsHidden: true @@ -40,17 +40,18 @@ SidewaysCard: true Snap: true Sticky: true Tags: +- Investigator - PlayerCard Tooltip: true Transform: posX: 18.45 posY: 1.59 posZ: -73.09 - rotX: 0.26 + rotX: 0.0 rotY: 180.0 - rotZ: 359.92 - scaleX: 1.1 + rotZ: 0.0 + scaleX: 1.15 scaleY: 1.0 - scaleZ: 1.1 + scaleZ: 1.15 Value: 0 XmlUI: '' diff --git a/unpacked/Bag All Player Cards 15bb07/Card Zoey Samaras ef75e7.yaml b/unpacked/Bag All Player Cards 15bb07/Card Zoey Samaras ef75e7.yaml index 43c24b001..399438003 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Zoey Samaras ef75e7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Zoey Samaras ef75e7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 259105 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2591': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: true Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"02001-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"02001-m\",\n \"type\": \"Minicard\"\n}" GUID: ef75e7 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.85 posZ: -18.15 - rotX: 359.91 - rotY: 269.95 - rotZ: 0.07 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/Card Zoey's Cross 66d810.yaml b/unpacked/Bag All Player Cards 15bb07/Card Zoey's Cross 66d810.yaml index 7b02bc70e..382f65596 100644 --- a/unpacked/Bag All Player Cards 15bb07/Card Zoey's Cross 66d810.yaml +++ b/unpacked/Bag All Player Cards 15bb07/Card Zoey's Cross 66d810.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 371704 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '3717': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"02006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 1,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"combatIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\": \"\ - The Dunwich Legacy\"\n}" + ,\n \"cost\": 1,\n \"traits\": \"Item. Charm.\",\n \"combatIcons\": 2,\n \"\ + wildIcons\": 1,\n \"cycle\": \"The Dunwich Legacy\"\n}" GUID: 66d810 Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.97 posY: 4.11 posZ: -16.69 - rotX: 359.91 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Alchemical Distillation Upgrade Sheet 156166.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Alchemical Distillation Upgrade Sheet 156166.ttslua index 95ecd11fe..d382c4a9e 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Alchemical Distillation Upgrade Sheet 156166.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Alchemical Distillation Upgrade Sheet 156166.ttslua @@ -178,4 +178,4 @@ function createButtonsAndBoxes() value = box_data.value }) end -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Alchemical Distillation Upgrade Sheet 156166.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Alchemical Distillation Upgrade Sheet 156166.yaml index ef41a405f..27edb0ff2 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Alchemical Distillation Upgrade Sheet 156166.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Alchemical Distillation Upgrade Sheet 156166.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 846700 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8467': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09040-c\",\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}" +GMNotes: "{\n \"id\": \"09040-c\",\n \"type\": \"UpgradeSheet\"\n}" GUID: '156166' Grid: true GridProjection: false @@ -44,9 +43,9 @@ Transform: posX: 76.13 posY: 9.19 posZ: 19.27 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Ancient Covenant (2) 436401.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Ancient Covenant (2) 436401.yaml index 428a98628..6985ab3ad 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Ancient Covenant (2) 436401.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Ancient Covenant (2) 436401.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 546400 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5464': BackIsHidden: true @@ -21,7 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07122\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ ,\n \"level\": 2,\n \"traits\": \"Covenant. Blessed.\",\n \"permanent\": true,\n\ - \ \"weakness\": false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: '436401' Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.16 posY: 4.18 posZ: -16.73 - rotX: 359.93 - rotY: 269.8 - rotZ: 359.97 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Blasphemous Covenant (2) 10b087.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Blasphemous Covenant (2) 10b087.yaml index ddde564a5..4e6758e00 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Blasphemous Covenant (2) 10b087.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Blasphemous Covenant (2) 10b087.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 546500 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5465': BackIsHidden: true @@ -21,7 +21,7 @@ Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07113\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ ,\n \"level\": 2,\n \"traits\": \"Covenant. Cursed.\",\n \"permanent\": true,\n\ - \ \"weakness\": false,\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + \ \"cycle\": \"The Innsmouth Conspiracy\"\n}" GUID: 10b087 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 8.98 posY: 3.67 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Custom Modifications Upgrade Sheet 4104bf.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Custom Modifications Upgrade Sheet 4104bf.ttslua index 1e0e5350f..7c8da9420 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Custom Modifications Upgrade Sheet 4104bf.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Custom Modifications Upgrade Sheet 4104bf.ttslua @@ -176,4 +176,4 @@ function createButtonsAndBoxes() value = box_data.value }) end -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Custom Modifications Upgrade Sheet 4104bf.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Custom Modifications Upgrade Sheet 4104bf.yaml index 4ec1aba67..86e16023b 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Custom Modifications Upgrade Sheet 4104bf.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Custom Modifications Upgrade Sheet 4104bf.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 846600 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8466': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09023-c\",\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}" +GMNotes: "{\n \"id\": \"09023-c\",\n \"type\": \"UpgradeSheet\"\n}" GUID: 4104bf Grid: true GridProjection: false @@ -45,7 +44,7 @@ Transform: posY: 9.19 posZ: 17.58 rotX: 0.0 - rotY: 270.01 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Daisy's Tote Bag cf41be.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Daisy's Tote Bag cf41be.yaml index f422af4c1..5d6e28d9c 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Daisy's Tote Bag cf41be.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Daisy's Tote Bag cf41be.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 231600 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2316': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Advanced DragSelectable: true GMNotes: "{\n \"id\": \"90002\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 2,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 2,\n\ - \ \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 2,\n \"traits\": \"Item.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\"\ + : 1,\n \"wildIcons\": 2,\n \"cycle\": \"Standalone\"\n}" GUID: cf41be Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.06 posY: 3.76 posZ: -16.71 rotX: 0.0 - rotY: 269.94 - rotZ: 359.97 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Damning Testimony Upgrade Sheet dc4a62.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Damning Testimony Upgrade Sheet dc4a62.ttslua index 77255bfbc..9288e2e93 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Damning Testimony Upgrade Sheet dc4a62.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Damning Testimony Upgrade Sheet dc4a62.ttslua @@ -176,4 +176,4 @@ function createButtonsAndBoxes() value = box_data.value }) end -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Damning Testimony Upgrade Sheet dc4a62.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Damning Testimony Upgrade Sheet dc4a62.yaml index 72e84aa0a..c3a0b271c 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Damning Testimony Upgrade Sheet dc4a62.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Damning Testimony Upgrade Sheet dc4a62.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 847000 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8470': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09059-c\",\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}" +GMNotes: "{\n \"id\": \"09059-c\",\n \"type\": \"UpgradeSheet\"\n}" GUID: dc4a62 Grid: true GridProjection: false @@ -44,9 +43,9 @@ Transform: posX: 74.2 posY: 2.55 posZ: 15.62 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Eldritch Sophist f6b1b6.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Eldritch Sophist f6b1b6.yaml index b937e259d..dfe1b3152 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Eldritch Sophist f6b1b6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Eldritch Sophist f6b1b6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 549300 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5493': BackIsHidden: true @@ -20,10 +20,10 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07111\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"willpowerIcons\": 1,\n \"uses\": [\n {\n\ - \ \"count\": 3,\n \"type\": \"Secret\",\n \"token\": \"resource\"\ - \n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\n}" + ,\n \"cost\": 4,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic\",\n \"willpowerIcons\"\ + : 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Secret\",\n \ + \ \"token\": \"resource\"\n }\n ],\n \"cycle\": \"The Innsmouth Conspiracy\"\ + \n}" GUID: f6b1b6 Grid: true GridProjection: false @@ -41,16 +41,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.13 posY: 4.52 posZ: -16.72 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Empirical Hypothesis Upgrade Sheet 0c46a7.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Empirical Hypothesis Upgrade Sheet 0c46a7.ttslua index b31231752..ece55943e 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Empirical Hypothesis Upgrade Sheet 0c46a7.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Empirical Hypothesis Upgrade Sheet 0c46a7.ttslua @@ -178,4 +178,4 @@ function createButtonsAndBoxes() value = box_data.value }) end -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Empirical Hypothesis Upgrade Sheet 0c46a7.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Empirical Hypothesis Upgrade Sheet 0c46a7.yaml index 56a4abf1e..f48cad5a6 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Empirical Hypothesis Upgrade Sheet 0c46a7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Empirical Hypothesis Upgrade Sheet 0c46a7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 846800 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8468': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09041-c\",\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}" +GMNotes: "{\n \"id\": \"09041-c\",\n \"type\": \"UpgradeSheet\"\n}" GUID: 0c46a7 Grid: true GridProjection: false @@ -42,7 +41,7 @@ Tags: Tooltip: true Transform: posX: 76.0 - posY: 15.18 + posY: 15.19 posZ: 23.87 rotX: 0.0 rotY: 270.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Friends in Low Places Upgrade Sheet 9fb3b9.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Friends in Low Places Upgrade Sheet 9fb3b9.ttslua index 8f1cae925..97f096bd3 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Friends in Low Places Upgrade Sheet 9fb3b9.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Friends in Low Places Upgrade Sheet 9fb3b9.ttslua @@ -180,4 +180,4 @@ function createButtonsAndBoxes() value = box_data.value }) end -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Friends in Low Places Upgrade Sheet 9fb3b9.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Friends in Low Places Upgrade Sheet 9fb3b9.yaml index 396e1f4c8..8398bb448 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Friends in Low Places Upgrade Sheet 9fb3b9.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Friends in Low Places Upgrade Sheet 9fb3b9.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 847100 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8471': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09060-c\",\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}" +GMNotes: "{\n \"id\": \"09060-c\",\n \"type\": \"UpgradeSheet\"\n}" GUID: 9fb3b9 Grid: true GridProjection: false @@ -44,9 +43,9 @@ Transform: posX: 76.25 posY: 15.19 posZ: 23.11 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Gloria Goldberg aa6282.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Gloria Goldberg aa6282.yaml index e717e8a06..39accb557 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Gloria Goldberg aa6282.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Gloria Goldberg aa6282.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 591500 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5915': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"98019-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"98019-m\",\n \"type\": \"Minicard\"\n}" GUID: aa6282 Grid: true GridProjection: false @@ -38,15 +37,15 @@ SidewaysCard: false Snap: false Sticky: true Tags: -- PlayerCard +- Minicard Tooltip: true Transform: posX: 21.23 posY: 1.9 posZ: -18.15 - rotX: 359.92 - rotY: 269.95 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Grizzled Upgrade Sheet ef8f08.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Grizzled Upgrade Sheet ef8f08.ttslua index 39a5a906e..c582c2093 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Grizzled Upgrade Sheet ef8f08.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Grizzled Upgrade Sheet ef8f08.ttslua @@ -178,4 +178,4 @@ function createButtonsAndBoxes() value = box_data.value }) end -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Grizzled Upgrade Sheet ef8f08.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Grizzled Upgrade Sheet ef8f08.yaml index 2c3252548..21e17ca2a 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Grizzled Upgrade Sheet ef8f08.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Grizzled Upgrade Sheet ef8f08.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 847800 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8478': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09101-c\",\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}" +GMNotes: "{\n \"id\": \"09101-c\",\n \"type\": \"UpgradeSheet\"\n}" GUID: ef8f08 Grid: true GridProjection: false diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Honed Instinct Upgrade Sheet ba0e34.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Honed Instinct Upgrade Sheet ba0e34.ttslua index bde1a713a..ceb63520c 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Honed Instinct Upgrade Sheet ba0e34.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Honed Instinct Upgrade Sheet ba0e34.ttslua @@ -178,4 +178,4 @@ function createButtonsAndBoxes() value = box_data.value }) end -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Honed Instinct Upgrade Sheet ba0e34.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Honed Instinct Upgrade Sheet ba0e34.yaml index 6b6aefc5a..671d2613c 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Honed Instinct Upgrade Sheet ba0e34.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Honed Instinct Upgrade Sheet ba0e34.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 847200 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8472': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09061-c\",\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}" +GMNotes: "{\n \"id\": \"09061-c\",\n \"type\": \"UpgradeSheet\"\n}" GUID: ba0e34 Grid: true GridProjection: false @@ -44,9 +43,9 @@ Transform: posX: 72.99 posY: 2.55 posZ: 16.19 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Hospital Debts bd323d.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Hospital Debts bd323d.yaml index 6ad18d8cd..7c045dd3e 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Hospital Debts bd323d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Hospital Debts bd323d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 541300 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5413': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Advanced DragSelectable: true GMNotes: "{\n \"id\": \"90010\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - cycle\": \"Standalone\"\n}" + ,\n \"traits\": \"Task.\",\n \"weakness\": true,\n \"cycle\": \"Standalone\"\n\ + }" GUID: bd323d Grid: true GridProjection: false @@ -45,9 +45,9 @@ Transform: posX: 8.97 posY: 4.67 posZ: -16.69 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Hunter's Armor Upgrade Sheet d2d01b.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Hunter's Armor Upgrade Sheet d2d01b.ttslua index b2ed3fdaa..04f81ccce 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Hunter's Armor Upgrade Sheet d2d01b.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Hunter's Armor Upgrade Sheet d2d01b.ttslua @@ -177,4 +177,4 @@ function createButtonsAndBoxes() value = box_data.value }) end -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Hunter's Armor Upgrade Sheet d2d01b.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Hunter's Armor Upgrade Sheet d2d01b.yaml index 8da76f303..c129852fb 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Hunter's Armor Upgrade Sheet d2d01b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Hunter's Armor Upgrade Sheet d2d01b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 846400 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8464': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09021-c\",\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}" +GMNotes: "{\n \"id\": \"09021-c\",\n \"type\": \"UpgradeSheet\"\n}" GUID: d2d01b Grid: true GridProjection: false @@ -44,9 +43,9 @@ Transform: posX: 75.36 posY: 15.19 posZ: 24.46 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Hyperphysical Shotcaster Upgrade Sheet a4eec2.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Hyperphysical Shotcaster Upgrade Sheet a4eec2.ttslua index fb0949793..60aa60eff 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Hyperphysical Shotcaster Upgrade Sheet a4eec2.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Hyperphysical Shotcaster Upgrade Sheet a4eec2.ttslua @@ -177,4 +177,4 @@ function createButtonsAndBoxes() value = box_data.value }) end -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Hyperphysical Shotcaster Upgrade Sheet a4eec2.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Hyperphysical Shotcaster Upgrade Sheet a4eec2.yaml index 25dc3d46f..a02db14d6 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Hyperphysical Shotcaster Upgrade Sheet a4eec2.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Hyperphysical Shotcaster Upgrade Sheet a4eec2.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 847900 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8479': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09119-c\",\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}" +GMNotes: "{\n \"id\": \"09119-c\",\n \"type\": \"UpgradeSheet\"\n}" GUID: a4eec2 Grid: true GridProjection: false @@ -43,10 +42,10 @@ Tooltip: true Transform: posX: 76.5 posY: 9.19 - posZ: 17.47 - rotX: 359.92 + posZ: 17.48 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Liber Omnium Finium 242a11.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Liber Omnium Finium 242a11.yaml index 61aa69d04..33ee7a47c 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Liber Omnium Finium 242a11.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Liber Omnium Finium 242a11.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 273000 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2730': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: Weakness DragSelectable: true GMNotes: "{\n \"id\": \"98021\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Endtimes.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"Promo\"\n}" + ,\n \"traits\": \"Endtimes.\",\n \"weakness\": true,\n \"cycle\": \"Promo\"\n\ + }" GUID: 242a11 Grid: true GridProjection: false @@ -43,11 +43,11 @@ Tags: Tooltip: true Transform: posX: 8.99 - posY: 3.82 + posY: 3.81 posZ: -16.69 - rotX: 359.69 - rotY: 270.01 - rotZ: 0.07 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Living Link Upgrade Sheet 19a05b.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Living Link Upgrade Sheet 19a05b.ttslua index 7599137eb..6b3a2e798 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Living Link Upgrade Sheet 19a05b.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Living Link Upgrade Sheet 19a05b.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/customizable/LivingInkUpgradeSheet") +end) +__bundle_register("playercards/customizable/LivingInkUpgradeSheet", function(require, _LOADED, __bundle_register, __bundle_modules) -- Customizable Cards: Living Ink -- by Chr1Z information = { @@ -5,7 +52,7 @@ information = { last_updated = "12.10.2022" } --- Color information for buttons +-- Size information for buttons boxSize = 40 -- static values @@ -28,40 +75,80 @@ posZ = { -- box setup (amount of boxes per line and amount of marked boxes in that line) existingBoxes = { 1, 1, 2, 2, 3, 3, 3 } -inputBoxes = {} - -- override 'marked boxes' for debugging ('all' or 'none') markDEBUG = "" +-- Locations of the skill selectors +local SKILL_ICON_POSITIONS = { + willpower = { x = 0.085, z = -0.88}, + intellect = { x = -0.183, z = -0.88}, + combat = { x = -0.473, z = -0.88}, + agility = { x = -0.74, z = -0.88}, +} + +local selectedSkills = { + willpower = false, + intellect = false, + combat = false, + agility = false +} + -- save state when going into bags / decks function onDestroy() self.script_state = onSave() end -function onSave() return JSON.encode({ markedBoxes, inputValues }) end +function onSave() + local skillArray = { } + for skill, isSelected in pairs(selectedSkills) do + if (isSelected) then + table.insert(skillArray, skill) + end + end + return JSON.encode({ markedBoxes, skillArray }) +end -- Startup procedure function onLoad(saved_data) if saved_data ~= "" and markDEBUG == "" then local loaded_data = JSON.decode(saved_data) markedBoxes = loaded_data[1] - inputValues = loaded_data[2] + log(loaded_data[2]) + for _, skill in ipairs(loaded_data[2]) do + if (skill ~= "") then + log("Skill from load "..skill) + selectedSkills[skill] = true + end + end else markedBoxes = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } inputValues = { "", "", "", "", "" } + local selectedSkills = { + willpower = false, + intellect = false, + combat = false, + agility = false + } end makeData() createButtonsAndBoxes() self.addContextMenuItem("Reset Inputs", function() updateState() end) - self.addContextMenuItem("Scale: normal", function() self.setScale({ 1, 1, 1 }) end) - self.addContextMenuItem("Scale: double", function() self.setScale({ 2, 1, 2 }) end) - self.addContextMenuItem("Scale: triple", function() self.setScale({ 3, 1, 3 }) end) + self.addContextMenuItem("Scale: normal", function() updateScale(1) end) + self.addContextMenuItem("Scale: double", function() updateScale(2) end) + self.addContextMenuItem("Scale: triple", function() updateScale(3) end) + updateSkillDisplay() +end + +function updateScale(scale) + self.setScale({ scale, 1, scale }) + updateSkillDisplay() end function updateState(markedBoxesNew) if markedBoxesNew then markedBoxes = markedBoxesNew end makeData() createButtonsAndBoxes() + updateSkillDisplay() end -- create Data @@ -91,19 +178,6 @@ function makeData() end end end - - -- repeat this for each entry (= line) in inputBoxes - local totalCount = 0 - for i = 1, #inputBoxes do - -- repeat this for each textbox per line - for j = 1, inputBoxes[i] do - totalCount = totalCount + 1 - Data.textbox[totalCount] = {} - Data.textbox[totalCount].pos = inputPos[totalCount] - Data.textbox[totalCount].width = inputWidth[totalCount] - Data.textbox[totalCount].value = inputValues[totalCount] - end - end end -- checks or unchecks the given box @@ -128,16 +202,28 @@ function click_checkbox(tableIndex) }) end --- updates saved value for given text box -function click_textbox(i, value, selected) - if selected == false then - inputValues[i] = value - end +function click_willpower() + selectedSkills.willpower = not selectedSkills.willpower + updateSkillDisplay() +end + +function click_intellect() + selectedSkills.intellect = not selectedSkills.intellect + updateSkillDisplay() +end + +function click_combat() + selectedSkills.combat = not selectedSkills.combat + updateSkillDisplay() +end + +function click_agility() + selectedSkills.agility = not selectedSkills.agility + updateSkillDisplay() end function createButtonsAndBoxes() self.clearButtons() - self.clearInputs() for i, box_data in ipairs(Data.checkbox) do local funcName = "checkbox" .. i @@ -157,24 +243,72 @@ function createButtonsAndBoxes() }) end - for i, box_data in ipairs(Data.textbox) do - local funcName = "textbox" .. i - local func = function(_, _, val, sel) click_textbox(i, val, sel) end - self.setVar(funcName, func) - - self.createInput({ - input_function = funcName, - function_owner = self, - label = "Click to type", - alignment = 2, - position = box_data.pos, - scale = buttonScale, - width = box_data.width, - height = (inputFontsize * 1) + 24, - font_size = inputFontsize, - color = "White", - font_color = buttonFontColor, - value = box_data.value - }) - end + makeSkillSelectionButtons() end + +-- Creates the invisible buttons overlaying the skill icons +function makeSkillSelectionButtons() + local buttonPositions = { x = -1 * SKILL_ICON_POSITIONS.willpower.x, y = 0.2, z = SKILL_ICON_POSITIONS.willpower.z } + local buttonData = { + click_function = "click_willpower", + function_owner = self, + position = buttonPositions, + height = 130, + width = 130, + scale = { 1, 1, 1 }, + color = { 0, 0, 0, 0 }, + } + self.createButton(buttonData) + buttonData.click_function = "click_intellect" + buttonPositions.x = -1 * SKILL_ICON_POSITIONS.intellect.x + buttonData.position = buttonPositions + self.createButton(buttonData) + buttonData.click_function = "click_combat" + buttonPositions.x = -1 * SKILL_ICON_POSITIONS.combat.x + buttonData.position = buttonPositions + self.createButton(buttonData) + buttonData.click_function = "click_agility" + buttonPositions.x = -1 * SKILL_ICON_POSITIONS.agility.x + buttonData.position = buttonPositions + self.createButton(buttonData) +end + +-- Refresh the vector circles indicating a skill is selected. Since we can only have one table of +-- vectors set, have to refresh all 4 at once +function updateSkillDisplay() + local circles = { } + for skill, isSelected in pairs(selectedSkills) do + if isSelected then + local circle = getCircleVector(SKILL_ICON_POSITIONS[skill]) + if circle ~= nil then + table.insert(circles, circle) + end + end + end + self.setVectorLines(circles) +end + +function getCircleVector(center) + local diameter = Vector(0, 0, 0.1) + local pointOfOrigin = Vector(center.x, 0.3, center.z) + + -- Declare Results vectors + local vec = Vector(0, 0, 0) + local vecList = {} + + local arcStep = 5 + for i = 0, 360, arcStep do + diameter:rotateOver('y', arcStep) + vec = pointOfOrigin + diameter + vec.y = pointOfOrigin.y + table.insert(vecList, vec) + end + + return { + points = vecList, + color = {0.597, 0.195, 0.796}, + thickness = 0.02, + } +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Living Link Upgrade Sheet 19a05b.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Living Link Upgrade Sheet 19a05b.yaml index 00a980e28..08c9c4e43 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Living Link Upgrade Sheet 19a05b.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Living Link Upgrade Sheet 19a05b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 847300 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8473': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09079-c\",\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}" +GMNotes: "{\n \"id\": \"09079-c\",\n \"type\": \"UpgradeSheet\"\n}" GUID: 19a05b Grid: true GridProjection: false @@ -30,7 +29,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false LuaScript: !include 'CardCustom Living Link Upgrade Sheet 19a05b.ttslua' -LuaScriptState: '[[0,0,0,0,0,0,0,0,0,0],["","","","",""]]' +LuaScriptState: '[[0,0,0,0,0,0,0,0,0,0],[]]' MeasureMovement: false Name: CardCustom Nickname: Living Link Upgrade Sheet @@ -41,12 +40,12 @@ Tags: - PlayerCard Tooltip: true Transform: - posX: -36.41 - posY: 2.3 - posZ: 52.08 - rotX: 0.02 + posX: -23.26 + posY: 3.49 + posZ: -44.19 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Makeshift Trap Upgrade Sheet 64dfce.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Makeshift Trap Upgrade Sheet 64dfce.ttslua index f43f200c3..629178386 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Makeshift Trap Upgrade Sheet 64dfce.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Makeshift Trap Upgrade Sheet 64dfce.ttslua @@ -177,4 +177,4 @@ function createButtonsAndBoxes() value = box_data.value }) end -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Makeshift Trap Upgrade Sheet 64dfce.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Makeshift Trap Upgrade Sheet 64dfce.yaml index 0bcd95889..ca2f0aa1f 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Makeshift Trap Upgrade Sheet 64dfce.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Makeshift Trap Upgrade Sheet 64dfce.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 847700 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8477': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09100-c\",\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}" +GMNotes: "{\n \"id\": \"09100-c\",\n \"type\": \"UpgradeSheet\"\n}" GUID: 64dfce Grid: true GridProjection: false @@ -43,10 +42,10 @@ Tooltip: true Transform: posX: 74.02 posY: 2.55 - posZ: 18.19 - rotX: 0.02 + posZ: 18.18 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom On the Lam 9c4900.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom On the Lam 9c4900.yaml index de8a511bf..4896a8998 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom On the Lam 9c4900.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom On the Lam 9c4900.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 541200 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5412': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Advanced DragSelectable: true GMNotes: "{\n \"id\": \"90009\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 0,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 2,\n\ - \ \"cycle\": \"Standalone\"\n}" + ,\n \"cost\": 0,\n \"traits\": \"Tactic.\",\n \"intellectIcons\": 1,\n \"agilityIcons\"\ + : 1,\n \"wildIcons\": 2,\n \"cycle\": \"Standalone\"\n}" GUID: 9c4900 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.03 posY: 3.77 posZ: -16.7 - rotX: 359.76 - rotY: 269.99 - rotZ: 0.05 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Pocket Multi Tool Upgrade Sheet d706e7.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Pocket Multi Tool Upgrade Sheet d706e7.ttslua index 24c8e8ca2..6593dc67d 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Pocket Multi Tool Upgrade Sheet d706e7.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Pocket Multi Tool Upgrade Sheet d706e7.ttslua @@ -177,4 +177,4 @@ function createButtonsAndBoxes() value = box_data.value }) end -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Pocket Multi Tool Upgrade Sheet d706e7.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Pocket Multi Tool Upgrade Sheet d706e7.yaml index 7071d7352..30c9cc4cf 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Pocket Multi Tool Upgrade Sheet d706e7.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Pocket Multi Tool Upgrade Sheet d706e7.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 847600 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8476': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09099-c\",\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}" +GMNotes: "{\n \"id\": \"09099-c\",\n \"type\": \"UpgradeSheet\"\n}" GUID: d706e7 Grid: true GridProjection: false diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Power Word Upgrade Sheet 0d9481.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Power Word Upgrade Sheet 0d9481.ttslua index 9d19459b3..0a16229e0 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Power Word Upgrade Sheet 0d9481.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Power Word Upgrade Sheet 0d9481.ttslua @@ -178,4 +178,4 @@ function createButtonsAndBoxes() value = box_data.value }) end -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Power Word Upgrade Sheet 0d9481.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Power Word Upgrade Sheet 0d9481.yaml index 6fde3bf8b..f0852fb7b 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Power Word Upgrade Sheet 0d9481.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Power Word Upgrade Sheet 0d9481.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 847500 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8475': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09081-c\",\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}" +GMNotes: "{\n \"id\": \"09081-c\",\n \"type\": \"UpgradeSheet\"\n}" GUID: 0d9481 Grid: true GridProjection: false @@ -45,7 +44,7 @@ Transform: posY: 9.19 posZ: 15.56 rotX: 0.0 - rotY: 270.01 + rotY: 270.0 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Runic Axe Upgrade Sheet be427d.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Runic Axe Upgrade Sheet be427d.ttslua index 3a365ef02..3cf7b028f 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Runic Axe Upgrade Sheet be427d.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Runic Axe Upgrade Sheet be427d.ttslua @@ -178,4 +178,4 @@ function createButtonsAndBoxes() value = box_data.value }) end -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Runic Axe Upgrade Sheet be427d.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Runic Axe Upgrade Sheet be427d.yaml index f5dd6bde6..dd335fbe1 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Runic Axe Upgrade Sheet be427d.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Runic Axe Upgrade Sheet be427d.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 846500 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8465': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09022-c\",\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}" +GMNotes: "{\n \"id\": \"09022-c\",\n \"type\": \"UpgradeSheet\"\n}" GUID: be427d Grid: true GridProjection: false @@ -44,9 +43,9 @@ Transform: posX: 77.21 posY: 15.19 posZ: 23.12 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Ruth Westmacott 782e0a.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Ruth Westmacott 782e0a.yaml index ba84fffaf..540dbc8d7 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Ruth Westmacott 782e0a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Ruth Westmacott 782e0a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 273100 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2731': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: Dark Revelations DragSelectable: true GMNotes: "{\n \"id\": \"98020\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"cost\": 3,\n \"traits\": \"Ally. Artist.\",\n \"permanent\": false,\n \ - \ \"weakness\": false,\n \"intellectIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\"\ - : \"Promo\"\n}" + ,\n \"cost\": 3,\n \"traits\": \"Ally. Artist.\",\n \"intellectIcons\": 2,\n\ + \ \"wildIcons\": 1,\n \"cycle\": \"Promo\"\n}" GUID: 782e0a Grid: true GridProjection: false @@ -40,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 9.0 posY: 3.93 posZ: -16.7 - rotX: 0.43 - rotY: 270.01 - rotZ: 359.89 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Skeptic (1) d2cd42.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Skeptic (1) d2cd42.yaml index 3348a3588..9c0bd1234 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Skeptic (1) d2cd42.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Skeptic (1) d2cd42.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 550100 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5501': BackIsHidden: true @@ -20,9 +20,8 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: "{\n \"id\": \"07115\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 1,\n \"traits\": \"Practiced.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"wildIcons\": 1,\n \"cycle\": \"The Innsmouth Conspiracy\"\ - \n}" + ,\n \"level\": 1,\n \"traits\": \"Practiced.\",\n \"wildIcons\": 1,\n \"cycle\"\ + : \"The Innsmouth Conspiracy\"\n}" GUID: d2cd42 Grid: true GridProjection: false @@ -46,9 +45,9 @@ Transform: posX: 9.15 posY: 3.87 posZ: -16.73 - rotX: 359.92 - rotY: 269.8 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor Upgrade Sheet 5397a6.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor Upgrade Sheet 5397a6.ttslua index 75ab46006..89e2e868c 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor Upgrade Sheet 5397a6.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor Upgrade Sheet 5397a6.ttslua @@ -178,4 +178,4 @@ function createButtonsAndBoxes() value = box_data.value }) end -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor Upgrade Sheet 5397a6.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor Upgrade Sheet 5397a6.yaml index b45811331..aca58d8c7 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor Upgrade Sheet 5397a6.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor Upgrade Sheet 5397a6.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 847400 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8474': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09080-c\",\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}" +GMNotes: "{\n \"id\": \"09080-c\",\n \"type\": \"UpgradeSheet\"\n}" GUID: 5397a6 Grid: true GridProjection: false @@ -42,7 +41,7 @@ Tags: Tooltip: true Transform: posX: 76.59 - posY: 15.18 + posY: 15.19 posZ: 23.99 rotX: 0.0 rotY: 270.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor d187dd.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor d187dd.yaml index 28a906731..d730d6724 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor d187dd.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom Summoned Servitor d187dd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 803600 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8036': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09080-m\",\n \"type\": \"Minicard\",\n \"traits\": \"\"\ - \n}" +GMNotes: "{\n \"id\": \"09080-m\",\n \"type\": \"Minicard\"\n}" GUID: d187dd Grid: true GridProjection: false @@ -38,17 +37,15 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- player_card -- PlayerCard -- SC_memory_object +- Minicard Tooltip: true Transform: posX: 16.98 posY: 2.21 posZ: 55.09 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom The Necronomicon 5b2e10.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom The Necronomicon 5b2e10.yaml index 13f038331..6e7a47163 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom The Necronomicon 5b2e10.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom The Necronomicon 5b2e10.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 539500 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5395': BackIsHidden: true @@ -20,8 +20,8 @@ CustomDeck: Description: John Dee Translation (Advanced) DragSelectable: true GMNotes: "{\n \"id\": \"90003\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"cycle\": \"Standalone\"\n}" + ,\n \"traits\": \"Item. Tome.\",\n \"weakness\": true,\n \"cycle\": \"Standalone\"\ + \n}" GUID: 5b2e10 Grid: true GridProjection: false @@ -39,16 +39,16 @@ SidewaysCard: false Snap: true Sticky: true Tags: -- PlayerCard - Asset +- PlayerCard Tooltip: true Transform: posX: 30.12 - posY: 2.3 + posY: 2.31 posZ: -68.59 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.ttslua b/unpacked/Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.ttslua index e213bf7c4..277c58457 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.ttslua +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.ttslua @@ -180,4 +180,4 @@ function createButtonsAndBoxes() value = box_data.value }) end -end +end \ No newline at end of file diff --git a/unpacked/Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.yaml b/unpacked/Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.yaml index 6e7f5992c..00000fc4b 100644 --- a/unpacked/Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.yaml +++ b/unpacked/Bag All Player Cards 15bb07/CardCustom The Raven Quill Upgrade Sheet 23b96a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 847000 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '8470': BackIsHidden: true @@ -19,8 +19,7 @@ CustomDeck: UniqueBack: false Description: '' DragSelectable: true -GMNotes: "{\n \"id\": \"09042-c\",\n \"traits\": \"\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}" +GMNotes: "{\n \"id\": \"09042-c\",\n \"type\": \"UpgradeSheet\"\n}" GUID: 23b96a Grid: true GridProjection: false @@ -44,9 +43,9 @@ Transform: posX: 78.8 posY: 3.33 posZ: 36.48 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 359.78 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag Metadata Helper d932ff.yaml b/unpacked/Bag Metadata Helper d932ff.yaml deleted file mode 100644 index 19999e376..000000000 --- a/unpacked/Bag Metadata Helper d932ff.yaml +++ /dev/null @@ -1,8253 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 0.0 - g: 0.366520882 - r: 0.7058823 -ContainedObjects: -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/dYBh01u.png - WidthScale: 0.0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2c130f - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: "-- Bundled by luabundle {\"version\":\"1.6.0\"}\nlocal __bundle_require,\ - \ __bundle_loaded, __bundle_register, __bundle_modules = (function(superRequire)\n\ - \tlocal loadingPlaceholder = {[{}] = true}\n\n\tlocal register\n\tlocal modules\ - \ = {}\n\n\tlocal require\n\tlocal loaded = {}\n\n\tregister = function(name,\ - \ body)\n\t\tif not modules[name] then\n\t\t\tmodules[name] = body\n\t\tend\n\t\ - end\n\n\trequire = function(name)\n\t\tlocal loadedModule = loaded[name]\n\n\t\ - \tif loadedModule then\n\t\t\tif loadedModule == loadingPlaceholder then\n\t\t\ - \t\treturn nil\n\t\t\tend\n\t\telse\n\t\t\tif not modules[name] then\n\t\t\t\t\ - if not superRequire then\n\t\t\t\t\tlocal identifier = type(name) == 'string'\ - \ and '\\\"' .. name .. '\\\"' or tostring(name)\n\t\t\t\t\terror('Tried to require\ - \ ' .. identifier .. ', but no such module has been registered')\n\t\t\t\telse\n\ - \t\t\t\t\treturn superRequire(name)\n\t\t\t\tend\n\t\t\tend\n\n\t\t\tloaded[name]\ - \ = loadingPlaceholder\n\t\t\tloadedModule = modules[name](require, loaded, register,\ - \ modules)\n\t\t\tloaded[name] = loadedModule\n\t\tend\n\n\t\treturn loadedModule\n\ - \tend\n\n\treturn require, loaded, register, modules\nend)(nil)\n__bundle_register(\"\ - __root\", function(require, _LOADED, __bundle_register, __bundle_modules)\nrequire(\"\ - MassMetadataHelper\")\n\nend)\n__bundle_register(\"MassMetadataHelper\", function(require,\ - \ _LOADED, __bundle_register, __bundle_modules)\nrequire(\"CardMetadata\")\r\n\ - \r\nlocal tagTargetGuid = \"\"\r\nlocal verifyTargetGuid = \"\"\r\nlocal moveTargetGuid\ - \ = \"\"\r\nlocal allCardsBagGuid = \"\"\r\n\r\nfunction allCardsGuidChanged(player,\ - \ value)\r\n allCardsBagGuid = value\r\nend\r\n\r\nfunction moveTargetGuidChanged(player,\ - \ value)\r\n moveTargetGuid = value\r\nend\r\n\r\nfunction verifyTargetGuidChanged(player,\ - \ value)\r\n verifyTargetGuid = value\r\nend\r\n\r\nfunction tagTargetGuidChanged(player,\ - \ value)\r\n tagTargetGuid = value\r\nend\r\n\r\n-- Starts the operation to tag\ - \ cards identified by the Tag field GUID\r\nfunction tagCards()\r\n local tagTarget\ - \ = getObjectFromGUID(tagTargetGuid)\r\n if (tagTarget.name == \"Card\") then\r\ - \n tagSingleCard(tagTargetGuid)\r\n elseif (tagTarget.name == \"Bag\" or tagTarget.name\ - \ == \"Deck\") then\r\n startLuaCoroutine(self, \"tagContainer\")\r\n else\r\ - \n broadcastToAll(\"Tag GUID does not point to a card, deck, or bag\")\r\n\ - \ return\r\n end\r\nend\r\n\r\n-- Matches a single card to the metadata entry,\ - \ and sets the GM Notes field with\r\n-- the metadata. It then moves that card\ - \ to either a good or bad pile, based\r\n-- on success\r\n-- Parameter targetGuid:\ - \ GUID of the card to be tagged\r\nfunction tagSingleCard(targetGuid)\r\n local\ - \ targetCard = getObjectFromGUID(targetGuid)\r\n local goodPosition = self.positionToWorld({3,\ - \ 1, 0})\r\n local badPosition = self.positionToWorld({3, 1, -1})\r\n -- Try\ - \ and match the metadata using both name and subname\r\n local name = targetCard.getName()..\"\ - |\"\r\n if (targetCard.getDescription() ~= nil) then\r\n name = name..targetCard.getDescription()\r\ - \n end\r\n -- If we miss name+subname, try and match based on just the name\r\ - \n local cardJson = allCards[name]\r\n if (cardJson == nil) then\r\n name\ - \ = targetCard.getName()..\"|\"\r\n end\r\n cardJson = allCards[name]\r\n --\ - \ If we still don't hit it, try and match based on ArkhamID. This will\r\n --\ - \ only work to update cards that already have metadata but will be handy\r\n \ - \ -- for cards with special characters, which otherwise fail the lookup\r\n if\ - \ (cardJson == nil and targetCard.getGMNotes() ~= nil) then\r\n local metadata\ - \ = JSON.decode(targetCard.getGMNotes())\r\n if (metadata ~= nil and metadata.id\ - \ ~= nil) then\r\n cardJson = allCards[metadata.id]\r\n end\r\n end\r\ - \n if (cardJson == nil) then\r\n log(\"Could not find data for \"..name);\r\ - \n targetCard.setPosition(badPosition)\r\n else\r\n targetCard.setGMNotes(cardJson)\r\ - \n targetCard.setPosition(goodPosition)\r\n end\r\nend\r\n\r\n-- Coroutine\ - \ to tag all cards in a given container. Since we can't pass\r\n-- parameters\ - \ to a coroutine, uses the value in tagTargetGuid to find the\r\n-- container\ - \ to be tagged. All cards will be tagged and moved to either the\r\n-- good or\ - \ bad piles based on success.\r\nfunction tagContainer()\r\n local tagTarget\ - \ = getObjectFromGUID(tagTargetGuid)\r\n local tempPosition = Vector(20, 1, 0)\r\ - \n local cardsProcessed = 0\r\n local isDeck = false\r\n local deckPosition\r\ - \n if (tagTarget.name == \"Deck\") then\r\n isDeck = true\r\n deckPosition\ - \ = Vector(tagTarget.getPosition().x, 0, tagTarget.getPosition().z)\r\n end\r\ - \n while (tagTarget.getQuantity() > 0) do\r\n local takenCard = tagTarget.takeObject({\r\ - \n position = tempPosition,\r\n })\r\n tagSingleCard(takenCard.getGUID())\r\ - \n coroutine.yield(0)\r\n end\r\n -- If the container is a deck it destroys\ - \ itself once there's only a single\r\n -- card left. Check the position of\ - \ the deck to find the card and tag it\r\n -- as well\r\n if (isDeck) then\r\ - \n -- Have to let the second-to-last card in the deck get out of the way so\ - \ the\r\n -- position check won't hit it\r\n Wait.frames(function()\r\n\ - \ local everything = getAllObjects()\r\n for _, object in ipairs(everything)\ - \ do\r\n if (object.name == \"Card\") then\r\n local objPosition\ - \ = Vector(object.getPosition().x, 0, object.getPosition().z)\r\n if\ - \ (deckPosition:distance(objPosition) < 0.1) then\r\n tagSingleCard(object.getGUID())\r\ - \n return 1\r\n end\r\n end\r\n end\r\n end,\ - \ 90)\r\n end\r\n\r\n return 1\r\nend\r\n\r\n-- Starts the verification process\ - \ for a given GUID\r\nfunction verifyCards()\r\n local verifyTarget = getObjectFromGUID(verifyTargetGuid)\r\ - \n if (verifyTarget.name == \"Card\") then\r\n verifySingleCard()\r\n elseif\ - \ (verifyTarget.name == \"Bag\" or verifyTarget.name == \"Deck\") then\r\n \ - \ startLuaCoroutine(self, \"verifyContainer\")\r\n else\r\n log(\"Verification\ - \ target GUID does not point to a card, deck, or bag\")\r\n return\r\n end\r\ - \nend\r\n\r\n-- Verifies the correctness of a single card using the current value\ - \ of\r\n-- verifyTargetGuid. Verification will parse the JSON metadata from the\ - \ card's\r\n-- GM Notes field, and check that it has an ID\r\nfunction verifySingleCard()\r\ - \n local verifyTarget = getObjectFromGUID(verifyTargetGuid)\r\n if (verifyTarget.getGMNotes()\ - \ == nil or verifyTarget.getGMNotes() == \"\") then\r\n log(verifyTarget.getName()..\"\ - \ has no metadata\")\r\n else\r\n local metadata = JSON.decode(verifyTarget.getGMNotes())\r\ - \n if (metadata.id == nil or metadata.id == \"\") then\r\n log(verifyTarget.getName()..\"\ - \ has no ID set, probable bad metadata\")\r\n end\r\n end\r\n log(verifyTarget.getName()..\"\ - \ has proper metadata\")\r\nend\r\n\r\n-- Verify all cards in a bag or deck. \ - \ The verification logic is the same, but\r\n-- since we're doing it based on\ - \ the container data rather than the card itself\r\n-- the implementation does\ - \ not leverage verifySingleCard\r\nfunction verifyContainer()\r\n local verifyTarget\ - \ = getObjectFromGUID(verifyTargetGuid)\r\n log(verifyTarget)\r\n local checkCount\ - \ = 0\r\n local failCount = 0\r\n for _, cardData in ipairs(verifyTarget.getData().ContainedObjects)\ - \ do\r\n local cardName = cardData.Nickname\r\n log(\"Checking \"..cardName)\r\ - \n if (cardData.GMNotes == nil or cardData.GMNotes == \"\") then\r\n log(cardName..\"\ - \ has no metadata\")\r\n failCount = failCount + 1\r\n else\r\n local\ - \ metadata = JSON.decode(cardData.GMNotes)\r\n if (metadata.id == nil or\ - \ metadata.id == \"\") then\r\n log(cardName..\" has no ID set, probable\ - \ bad metadata\")\r\n failCount = failCount + 1\r\n end\r\n end\r\ - \n checkCount = checkCount + 1\r\n coroutine.yield(0)\r\n end\r\n log(\"\ - Finished checking \"..checkCount..\" cards, \"..failCount..\" card(s) had problems\"\ - )\r\n return 1\r\nend\r\n\r\n-- Starts the process to move all cards from one\ - \ container to another\r\nfunction moveToAllCardsBag()\r\n startLuaCoroutine(self,\ - \ \"moveCardsToBag\")\r\nend\r\n\r\n-- Coroutine to move all cards from one container\ - \ to another. The target will\r\n-- generally be the All Cards Bag, but the allCardsBagGuid\ - \ could point to any\r\n-- container. Since we can't pass parameters to a coroutine,\ - \ uses the values\r\n-- stored in moveTargetGuid and allCardsBagGuid.\r\nfunction\ - \ moveCardsToBag()\r\n local allCardsBag = getObjectFromGUID(allCardsBagGuid)\r\ - \n local moveFrom = getObjectFromGUID(moveTargetGuid)\r\n local isDeck = false\r\ - \n local deckPosition\r\n if (moveFrom.name == \"Deck\") then\r\n isDeck\ - \ = true\r\n deckPosition = Vector(moveFrom.getPosition().x, 0, moveFrom.getPosition().z)\r\ - \n end\r\n while (moveFrom.getQuantity() > 0) do\r\n allCardsBag.putObject(moveFrom.takeObject());\r\ - \n coroutine.yield(0)\r\n end\r\n -- If the container is a deck it destroys\ - \ itself once there's only a single\r\n -- card left. Check the position of\ - \ the deck to find the card and move it\r\n -- as well\r\n if (isDeck) then\r\ - \n -- Have to let the second-to-last card in the deck get out of the way so the\r\ - \n -- position check won't hit it\r\n Wait.frames(function()\r\n local\ - \ everything = getAllObjects()\r\n for _, object in ipairs(everything) do\r\ - \n if (object.name == \"Card\") then\r\n local objPosition = Vector(object.getPosition().x,\ - \ 0, object.getPosition().z)\r\n\r\n if (deckPosition:distance(objPosition)\ - \ < 0.3) then\r\n allCardsBag.putObject(object)\r\n return\ - \ 1\r\n end\r\n end\r\n end\r\n end, 90)\r\n end\r\n\ - \ return 1\r\nend\r\n\nend)\n__bundle_register(\"CardMetadata\", function(require,\ - \ _LOADED, __bundle_register, __bundle_modules)\nallCards = { }\n\nallCards[\"\ - Daniela Reyes|The Mechanic\"] = [[{\n \"id\": \"08001\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Entrepeneur.\"\n}]]\nallCards[\"\ - Daniela Reyes (promo version)|The Mechanic\"] = [[{\n \"id\": \"08001-promo\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Entrepeneur.\"\n}]]\nallCards[\"Daniela Reyes (Parallel)|The Mechanic\"] = [[{\n\ - \ \"id\": \"08001-p\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Entrepeneur.\"\n}]]\nallCards[\"Daniela Reyes (Parallel Front)|The\ - \ Mechanic\"] = [[{\n \"id\": \"08001-pf\",\n \"type\": \"Investigator\",\n\ - \ \"class\": \"Guardian\",\n \"traits\": \"Entrepeneur.\"\n}]]\nallCards[\"\ - Daniela Reyes (Parallel Back)|The Mechanic\"] = [[{\n \"id\": \"08001-pb\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Entrepeneur.\"\ - \n}]]\nallCards[\"Daniela Reyes|\"] = [[{\n \"id\": \"08001-m\",\n \"type\"\ - : \"Minicard\"\n}]]\nallCards[\"Daniela Reyes|Promo version\"] = [[{\n \"id\"\ - : \"08001-promo-m\",\n \"type\": \"Minicard\"\n}]]\nallCards[\"Mechanic's Wrench|\"\ - ] = [[{\n \"id\": \"08002\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Tool. Melee.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\nallCards[\"Mob Goons|\"] = [[{\n \"id\": \"08003\",\n \"type\"\ - : \"Enemy\",\n \"traits\": \"Humanoid. Criminal.\",\n \"class\": \"Neutral\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\nallCards[\"Norman Withers|The\ - \ Astronomer\"] = [[{\n \"id\": \"08004\",\n \"alternate_ids\": [ \"98007\"\ - \ ],\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"\ - Miskatonic.\"\n}]]\nallCards[\"Norman Withers (promo version)|The Astronomer\"\ - ] = [[{\n \"id\": \"08004-promo\",\n \"alternate_ids\": [ \"98007-promo\" ],\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\ - \n}]]\nallCards[\"Norman Withers (Parallel)|The Astronomer\"] = [[{\n \"id\"\ - : \"08004-p\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Miskatonic.\"\n}]]\nallCards[\"Norman Withers (Parallel Front)|The\ - \ Astronomer\"] = [[{\n \"id\": \"08004-pf\",\n \"type\": \"Investigator\",\n\ - \ \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\nallCards[\"Norman\ - \ Withers (Parallel Back)|The Astronomer\"] = [[{\n \"id\": \"08004-pb\",\n \ - \ \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\ - \n}]]\nallCards[\"Norman Withers|\"] = [[{\n \"id\": \"08004-m\",\n \"alternate_ids\"\ - : [ \"98007-m\" ],\n \"type\": \"Minicard\"\n}]]\nallCards[\"Norman Withers|Promo\ - \ version\"] = [[{\n \"id\": \"08004-promo-m\",\n \"alternate_ids\": [ \"98007-promo-m\"\ - \ ],\n \"type\": \"Minicard\"\n}]]\nallCards[\"Livre d'Eibon|Hyperborean Grimoire\"\ - ] = [[{\n \"id\": \"08005\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Relic. Tome.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\nallCards[\"Livre d'Eibon|\"] = [[{\n \"id\": \"08005\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Tome.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"The Harbinger|\"\ - ] = [[{\n \"id\": \"08006\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Omen. Endtimes.\",\n \"permanent\": false,\n \"weakness\"\ - : true\n}]]\nallCards[\"Monterey Jack|The Archaeologist\"] = [[{\n \"id\": \"\ - 08007\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Wayfarer.\"\n}]]\nallCards[\"Monterey Jack (promo version)|The Archaeologist\"\ - ] = [[{\n \"id\": \"08007-promo\",\n \"type\": \"Investigator\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Wayfarer.\"\n}]]\nallCards[\"Monterey Jack (Parallel)|The\ - \ Archaeologist\"] = [[{\n \"id\": \"08007-p\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Wayfarer.\"\n}]]\nallCards[\"Monterey\ - \ Jack (Parallel Front)|The Archaeologist\"] = [[{\n \"id\": \"08007-pf\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Wayfarer.\"\ - \n}]]\nallCards[\"Monterey Jack (Parallel Back)|The Archaeologist\"] = [[{\n \ - \ \"id\": \"08007-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Wayfarer.\"\n}]]\nallCards[\"Monterey Jack|\"] = [[{\n \"\ - id\": \"08007-m\",\n \"type\": \"Minicard\"\n}]]\nallCards[\"Monterey Jack|Promo\ - \ version\"] = [[{\n \"id\": \"08007-promo-m\",\n \"type\": \"Minicard\"\n}]]\n\ - allCards[\"Trusty Bullwhip|\"] = [[{\n \"id\": \"08008\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\nallCards[\"Buried Secrets|\"] = [[{\n \"\ - id\": \"08009\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Mystery.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\n\ - allCards[\"Lily Chen|The Martial Artist\"] = [[{\n \"id\": \"08010\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Chosen. Warden.\"\ - \n}]]\nallCards[\"Lily Chen (promo version)|The Martial Artist\"] = [[{\n \"\ - id\": \"08010-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Chosen. Warden.\"\n}]]\nallCards[\"Lily Chen (Parallel)|The\ - \ Martial Artist\"] = [[{\n \"id\": \"08010-p\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Chosen. Warden.\"\n}]]\nallCards[\"\ - Lily Chen (Parallel Front)|The Martial Artist\"] = [[{\n \"id\": \"08010-pf\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Chosen.\ - \ Warden.\"\n}]]\nallCards[\"Lily Chen (Parallel Back)|The Martial Artist\"] =\ - \ [[{\n \"id\": \"08010-pb\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Chosen. Warden.\"\n}]]\nallCards[\"Lily Chen|\"] =\ - \ [[{\n \"id\": \"08010-m\",\n \"type\": \"Minicard\"\n}]]\nallCards[\"Lily\ - \ Chen|Promo version\"] = [[{\n \"id\": \"08010-promo-m\",\n \"type\": \"Minicard\"\ - \n}]]\nallCards[\"Discipline|Alignment of Spirit\"] = [[{\n \"id\": \"08011a\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Unbroken.\"\ - ,\n \"permanent\": true,\n \"weakness\": false\n}]]\nallCards[\"Discipline|Quiescence\ - \ of Thought\"] = [[{\n \"id\": \"08012a\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Unbroken.\",\n \"permanent\": true,\n \"weakness\"\ - : false\n}]]\nallCards[\"Discipline|Prescience of Fate\"] = [[{\n \"id\": \"\ - 08013a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Unbroken.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\nallCards[\"\ - Discipline|Balance of Body\"] = [[{\n \"id\": \"08014a\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Unbroken.\",\n \"permanent\": true,\n\ - \ \"weakness\": false\n}]]\nallCards[\"Burden of Destiny|\"] = [[{\n \"id\"\ - : \"08015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\nallCards[\"\ - Bob Jenkins|The Salesman\"] = [[{\n \"id\": \"08016\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Entrepeneur.\"\n}]]\nallCards[\"\ - Bob Jenkins (promo version)|The Salesman\"] = [[{\n \"id\": \"08016-promo\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Entrepeneur.\"\ - \n}]]\nallCards[\"Bob Jenkins (Parallel)|The Salesman\"] = [[{\n \"id\": \"08016-p\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Entrepeneur.\"\n}]]\nallCards[\"Bob Jenkins (Parallel Front)|The Salesman\"] =\ - \ [[{\n \"id\": \"08016-pf\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Entrepeneur.\"\n}]]\nallCards[\"Bob Jenkins (Parallel\ - \ Back)|The Salesman\"] = [[{\n \"id\": \"08016-pb\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Entrepeneur.\"\n}]]\nallCards[\"\ - Bob Jenkins|\"] = [[{\n \"id\": \"08016-m\",\n \"type\": \"Minicard\"\n}]]\n\ - allCards[\"Bob Jenkins|Promo version\"] = [[{\n \"id\": \"08016-promo-m\",\n\ - \ \"type\": \"Minicard\"\n}]]\nallCards[\"Shrewd Dealings|\"] = [[{\n \"id\"\ - : \"08017\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"\ - Greed|\"] = [[{\n \"id\": \"08018\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\"\ - : true\n}]]\nallCards[\"Geared Up\"] = [[{\n \"id\": \"08019\",\n \"type\":\ - \ \"Asset\",\n \"class\": \"Guardian\",\n \"level\": 0,\n \"traits\": \"Talent.\"\ - ,\n \"permanent\": true,\n \"weakness\": false\n}]]\nallCards[\"Toe to Toe|\"\ - ] = [[{\n \"id\": \"08020\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"level\": 0,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\nallCards[\"\\\"Get behind me!\\\"|\"] = [[{\n \"\ - id\": \"08021\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"level\"\ - : 0,\n \"traits\": \"Spirit. Tactic.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\nallCards[\"Gang Up (1)|\"] = [[{\n \"id\": \"08022\",\n \"type\"\ - : \"Event\",\n \"class\": \"Guardian\",\n \"level\": 1,\n \"traits\": \"Spirit.\ - \ Synergy.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"\ - Sweeping Kick (1)|\"] = [[{\n \"id\": \"08023\",\n \"type\": \"Event\",\n \"\ - class\": \"Guardian\",\n \"level\": 1,\n \"traits\": \"Spirit. Tactic. Trick.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Defensive Stance\ - \ (1)|\"] = [[{\n \"id\": \"08024\",\n \"type\": \"Skill\",\n \"class\": \"\ - Guardian\",\n \"level\": 1,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\nallCards[\"Butterfly Swords (2)|\"] = [[{\n\ - \ \"id\": \"08025\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"\ - level\": 2,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\nallCards[\"Dodge (2)|\"] = [[{\n \"id\": \"08026\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"level\": 2,\n \"traits\"\ - : \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"\ - Combat Training (3)|\"] = [[{\n \"id\": \"08027\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Guardian\",\n \"level\": 3,\n \"traits\": \"Talent. Composure.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"On the Hunt\ - \ (3)|\"] = [[{\n \"id\": \"08028\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"level\": 3,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\nallCards[\"Fang of Tyr'thrha (4)|\"] = [[{\n \"\ - id\": \"08029\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"level\"\ - : 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\nallCards[\"Butterfly Swords (5)|\"] = [[{\n \"id\": \"08030\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Guardian\",\n \"level\": 5,\n \"traits\": \"Item.\ - \ Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"\ - Forced Learning|\"] = [[{\n \"id\": \"08031\",\n \"type\": \"Asset\",\n \"\ - class\": \"Seeker\",\n \"level\": 0,\n \"traits\": \"Talent. Ritual..\",\n \ - \ \"permanent\": true,\n \"weakness\": false\n}]]\nallCards[\"Jeremiah Kirby|Arctic\ - \ Archaeologist\"] = [[{\n \"id\": \"08032\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker\",\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic. Wayfarer.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Jeremiah Kirby|\"\ - ] = [[{\n \"id\": \"08032\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic. Wayfarer.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\nallCards[\"Archive of Conduits|\"] = [[{\n\ - \ \"id\": \"08033\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"\ - level\": 0,\n \"traits\": \"Item. Tome. Occult.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Leyline\",\n \"count\": 4\n }\n}]]\nallCards[\"Written in the Stars|\"\ - ] = [[{\n \"id\": \"08034\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 0,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\nallCards[\"Hiking Boots (1)|\"] = [[{\n \"id\": \"08035\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"level\": 1,\n \"traits\"\ - : \"Item. Clothing. Footwear.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\nallCards[\"Join the Caravan (1)|\"] = [[{\n \"id\": \"08036\",\n \"type\"\ - : \"Event\",\n \"class\": \"Seeker\",\n \"level\": 1,\n \"traits\": \"Insight.\ - \ Synergy.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"\ - Survey the Area (1)|\"] = [[{\n \"id\": \"08037\",\n \"type\": \"Skill\",\n\ - \ \"class\": \"Seeker\",\n \"level\": 1,\n \"traits\": \"Practiced. Expert.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Medical Texts\ - \ (2)|\"] = [[{\n \"id\": \"08038\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"level\": 2,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\nallCards[\"Unearth the Ancients (2)|\"] = [[{\n \ - \ \"id\": \"08039\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"level\"\ - : 2,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\nallCards[\"Scientific Theory (3)\"] = [[{\n \"id\": \"08040\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Seeker\",\n \"level\": 3,\n \"traits\": \"Talent.\ - \ Composure.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"\ - Archive of Conduits (4)|Gateway to Tindalos\"] = [[{\n \"id\": \"08041\",\n \ - \ \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"level\": 4,\n \"traits\"\ - : \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n\ - \ \"token\": \"resource\",\n \"type\": \"Leyline\",\n \"count\": 4\n\ - \ }\n}]]\nallCards[\"Archive of Conduits (4)|Gateway to Acheron\"] = [[{\n \"\ - id\": \"08042\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"level\"\ - : 4,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Leyline\",\n \ - \ \"count\": 4\n }\n}]]\nallCards[\"Archive of Conduits (4)|Gateway to Aldebaran\"\ - ] = [[{\n \"id\": \"08043\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Leyline\",\n \"count\": 4\n }\n}]]\nallCards[\"Archive of Conduits (4)|Gateway\ - \ to Paradise\"] = [[{\n \"id\": \"08044\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker\",\n \"level\": 4,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Leyline\",\n \"count\": 4\n }\n}]]\nallCards[\"Prophesiae Profana (5)|Atlas\ - \ of the Unknowable\"] = [[{\n \"id\": \"08045\",\n \"type\": \"Asset\",\n \ - \ \"class\": \"Seeker\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\nallCards[\"Prophesiae Profana (5)|\"] = [[{\n \"id\": \"08045\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"level\": 5,\n \"traits\"\ - : \"Item. Relic. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\n\ - allCards[\"Underworld Support|\"] = [[{\n \"id\": \"08046\",\n \"type\": \"\ - Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Illicit.\",\n \"level\"\ - : 0,\n \"permanent\": true,\n \"weakness\": false\n}]]\nallCards[\"Scout Ahead|\"\ - ] = [[{\n \"id\": \"08047\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 0,\n \"traits\": \"Insight. Trick.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\nallCards[\"21 or Bust|\"] = [[{\n \"id\": \"08048\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Gambit.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"\ - Counterespionage (1)|\"] = [[{\n \"id\": \"08049\",\n \"type\": \"Event\",\n\ - \ \"class\": \"Rogue\",\n \"level\": 1,\n \"traits\": \"Favor. Service.\",\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Cheat the System\ - \ (1)|\"] = [[{\n \"id\": \"08050\",\n \"type\": \"Event\",\n \"class\": \"\ - Rogue\",\n \"level\": 1,\n \"traits\": \"Trick. Synergy.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\nallCards[\"Untimely Transaction (1)|\"]\ - \ = [[{\n \"id\": \"08051\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"level\": 1,\n \"traits\": \"Favor.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\nallCards[\"Savant (1)|\"] = [[{\n \"id\": \"08052\",\n \"type\"\ - : \"Skill\",\n \"class\": \"Rogue\",\n \"level\": 1,\n \"traits\": \"Innate.\ - \ Developed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"\ - The Red Clock (2)|Broken but Reliable\"] = [[{\n \"id\": \"08053\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Rogue\",\n \"level\": 2,\n \"traits\": \"Item.\ - \ Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n\ - \ \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 0\n \ - \ }\n}]]\nallCards[\"The Red Clock (2)|\"] = [[{\n \"id\": \"08053\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Rogue\",\n \"level\": 2,\n \"traits\": \"Item.\ - \ Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n\ - \ \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 0\n \ - \ }\n}]]\nallCards[\"Money Talks (2)|\"] = [[{\n \"id\": \"08054\",\n \"type\"\ - : \"Event\",\n \"class\": \"Rogue\",\n \"level\": 2,\n \"traits\": \"Favor.\ - \ Gambit.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"\ - Black Market (2)|\"] = [[{\n \"id\": \"08055\",\n \"type\": \"Event\",\n \"\ - class\": \"Rogue\",\n \"level\": 2,\n \"traits\": \"Favor.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\nallCards[\"Moxie (3)|\"] = [[{\n \"id\"\ - : \"08056\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"level\": 3,\n\ - \ \"traits\": \"Talent. Composure.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\nallCards[\"The Black Fan (3)|\"] = [[{\n \"id\": \"08057\",\n \ - \ \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"level\": 3,\n \"traits\"\ - : \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"\ - The Red Clock (5)|Broken but Reliable\"] = [[{\n \"id\": \"08058\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Rogue\",\n \"level\": 5,\n \"traits\": \"Item.\ - \ Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n\ - \ \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 0\n \ - \ }\n}]]\nallCards[\"The Red Clock (5)|\"] = [[{\n \"id\": \"08058\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Rogue\",\n \"level\": 5,\n \"traits\": \"Item.\ - \ Relic.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n\ - \ \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 0\n \ - \ }\n}]]\nallCards[\"Down the Rabbit Hole|\"] = [[{\n \"id\": \"08059\",\n \"\ - type\": \"Asset\",\n \"class\": \"Mystic\",\n \"level\": 0,\n \"traits\": \"\ - Talent.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\nallCards[\"Dragon\ - \ Pole|\"] = [[{\n \"id\": \"08060\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"level\": 0,\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\nallCards[\"Meditative Trance|\"] = [[{\n\ - \ \"id\": \"08060\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"\ - level\": 0,\n \"traits\": \"Insight. Spirit.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\nallCards[\"Close the Circle (1)|\"] = [[{\n \"id\": \"\ - 08062\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"level\": 1,\n\ - \ \"traits\": \"Ritual. Synergy.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 1\n }\n}]]\nallCards[\"Winds of Power (1)|\"] = [[{\n \"id\"\ - : \"08063\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"level\": 1,\n\ - \ \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\nallCards[\"Foresight (1)|\"] = [[{\n \"id\": \"08064\",\n \"type\": \"\ - Event\",\n \"class\": \"Mystic\",\n \"level\": 1,\n \"traits\": \"Augury.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Occult Theory\ - \ (1)|\"] = [[{\n \"id\": \"08065\",\n \"type\": \"Skill\",\n \"class\": \"\ - Mystic\",\n \"level\": 1,\n \"traits\": \"Practiced. Expert.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\nallCards[\"Parallel Fates (2)|\"] = [[{\n\ - \ \"id\": \"08066\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"\ - level\": 2,\n \"traits\": \"Augury.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\nallCards[\"Astronomical Atlas (3)|\"] = [[{\n \"id\": \"08067\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"level\": 3,\n \"traits\"\ - : \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"\ - Healing Words (3)|\"] = [[{\n \"id\": \"08068\",\n \"type\": \"Asset\",\n \"\ - class\": \"Mystic\",\n \"level\": 3,\n \"traits\": \"Spell.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\nallCards[\"Grounded (3)|\"\ - ] = [[{\n \"id\": \"08069\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent. Composure.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\nallCards[\"True Magick (5)|\"] = [[{\n \"id\": \"\ - 08070\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"level\": 5,\n\ - \ \"traits\": \"Item. Relic. Tome.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 1\n }\n}]]\nallCards[\"Short Supply|\"] = [[{\n \"id\": \"\ - 08071\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"level\": 0,\n\ - \ \"traits\": \"Talent.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\n\ - allCards[\"Schoffner's Catalogue|\"] = [[{\n \"id\": \"08072\",\n \"type\":\ - \ \"Asset\",\n \"class\": \"Survivor\",\n \"level\": 0,\n \"traits\": \"Item.\ - \ Tome.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \ - \ \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 5\n }\n\ - }]]\nallCards[\"Bandages|\"] = [[{\n \"id\": \"08073\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Survivor\",\n \"level\": 0,\n \"traits\": \"Item.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"\ - resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\nallCards[\"\ - Jury-Rig|\"] = [[{\n \"id\": \"08074\",\n \"type\": \"Event\",\n \"class\"\ - : \"Survivor\",\n \"level\": 0,\n \"traits\": \"Upgrade.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Durability\",\n \"count\": 1\n }\n}]]\nallCards[\"Bangle\ - \ of Jinxes (1)|\"] = [[{\n \"id\": \"08075\",\n \"type\": \"Asset\",\n \"\ - class\": \"Survivor\",\n \"level\": 1,\n \"traits\": \"Item. Charm. Cursed.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Charge\",\n \"count\": 1\n }\n}]]\nallCards[\"\ - Burn After Reading (1)|\"] = [[{\n \"id\": \"08076\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Survivor\",\n \"level\": 1,\n \"traits\": \"Insight.\",\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Strength in Numbers\ - \ (1)|\"] = [[{\n \"id\": \"08077\",\n \"type\": \"Skill\",\n \"class\": \"\ - Survivor\",\n \"level\": 1,\n \"traits\": \"Innate. Synergy.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\nallCards[\"Dauntless Spirit (1)|\"] = [[{\n\ - \ \"id\": \"08078\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"\ - level\": 1,\n \"traits\": \"Innate. Developed.\",\n \"weakness\": false\n}]]\n\ - allCards[\"Blood Will Have Blood (2)|\"] = [[{\n \"id\": \"08079\",\n \"type\"\ - : \"Event\",\n \"class\": \"Survivor\",\n \"level\": 2,\n \"traits\": \"Pact.\ - \ Cursed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"\ - Fire Extinguisher (3)|\"] = [[{\n \"id\": \"08080\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Survivor\",\n \"level\": 3,\n \"traits\": \"Item. Tool. Melee.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Plucky (3)|\"\ - ] = [[{\n \"id\": \"08081\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent. Composure.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\nallCards[\"Fend Off (3)|\"] = [[{\n \"id\": \"08082\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"level\": 3,\n \"traits\"\ - : \"Gambit. Trick.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"\ - Medical Student|\"] = [[{\n \"id\": \"08083\",\n \"type\": \"Asset\",\n \"\ - class\": \"Guardian|Seeker\",\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\ - \ Science.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"\ - On the Trail (1)|\"] = [[{\n \"id\": \"08084\",\n \"type\": \"Asset\",\n \"\ - class\": \"Guardian|Seeker\",\n \"level\": 1,\n \"traits\": \"Insight. Tactic.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"On the Trail\ - \ (3)|\"] = [[{\n \"id\": \"08085\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian|Seeker\",\n \"level\": 3,\n \"traits\": \"Insight. Tactic.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Michael Leigh (5)|Experienced\ - \ Hunter\"] = [[{\n \"id\": \"08086\",\n \"type\": \"Asset\",\n \"class\":\ - \ \"Guardian|Seeker\",\n \"level\": 5,\n \"traits\": \"Ally. Detective.\",\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Michael Leigh\ - \ (5)|\"] = [[{\n \"id\": \"08086\",\n \"type\": \"Asset\",\n \"class\": \"\ - Guardian|Seeker\",\n \"level\": 5,\n \"traits\": \"Ally. Detective.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Snipe (1)|\"] = [[{\n\ - \ \"id\": \"08087\",\n \"type\": \"Event\",\n \"class\": \"Guardian|Rogue\"\ - ,\n \"level\": 1,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\nallCards[\"Old Shotgun (2)|\"] = [[{\n \"id\": \"08088\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue\",\n \"level\": 2,\n\ - \ \"traits\": \"Item. Weapon. Firearm..\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\"\ - ,\n \"count\": 0\n }\n}]]\nallCards[\"Quickdraw Holster (4)|\"] = [[{\n \"\ - id\": \"08089\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue\",\n \ - \ \"level\": 4,\n \"traits\": \"Item. Tool. Illicit.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\nallCards[\"Brand of Cthugha (1)|\"] = [[{\n \"id\"\ - : \"08090\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\",\n \"\ - level\": 1,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 6\n }\n}]]\nallCards[\"Nkosi Mabati (3)|Enigmatic Warlock\"\ - ] = [[{\n \"id\": \"08091\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\"\ - ,\n \"level\": 3,\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\nallCards[\"Nkosi Mabati (3)|\"] = [[{\n \"id\":\ - \ \"08091\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\",\n \"\ - level\": 3,\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\nallCards[\"Brand of Cthugha (4)|\"] = [[{\n \"id\": \"\ - 08092\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\",\n \"level\"\ - : 4,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"\ - count\": 9\n }\n}]]\nallCards[\"Cyclopean Hammer (5)|\"] = [[{\n \"id\": \"\ - 08093\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic\",\n \"level\"\ - : 5,\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\nallCards[\"Sledgehammer|\"] = [[{\n \"id\": \"08094\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Guardian|Survivor\",\n \"level\": 0,\n\ - \ \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\nallCards[\"Protective Gear (2)|\"] = [[{\n \"id\": \"\ - 08095\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Survivor\",\n \"level\"\ - : 2,\n \"traits\": \"Item. Armor.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\nallCards[\"Sledgehammer (4)|\"] = [[{\n \"id\": \"08096\",\n \"\ - type\": \"Asset\",\n \"class\": \"Guardian|Survivor\",\n \"level\": 4,\n \"\ - traits\": \"Item. Tool. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\nallCards[\"Pocket Telescope|\"] = [[{\n \"id\": \"08097\",\n \"\ - type\": \"Asset\",\n \"class\": \"Seeker/Rogue\",\n \"level\": 0,\n \"traits\"\ - : \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"\ - Eon Chart (1)|\"] = [[{\n \"id\": \"08098\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker/Rogue\",\n \"level\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\nallCards[\"Gen\xE9 Beauregard\ - \ (3)|\"] = [[{\n \"id\": \"08099\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker/Rogue\",\n \"level\": 3,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\nallCards[\"Eon Chart (4)|\"] = [[{\n \"\ - id\": \"08100\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue\",\n \"\ - level\": 4,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\"\ - ,\n \"count\": 3\n }\n}]]\nallCards[\"Divination (1)|\"] = [[{\n \"id\":\ - \ \"08101\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\",\n \"level\"\ - : 1,\n \"traits\": \"Spell. Augury.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 4\n }\n}]]\nallCards[\"Protecting the Anirniq (2)|\"] = [[{\n\ - \ \"id\": \"08102\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\"\ - ,\n \"level\": 2,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\nallCards[\"Divination (4)|\"] = [[{\n \"id\": \"08103\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\",\n \"level\": 3,\n\ - \ \"traits\": \"Spell. Augury.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"\ - count\": 6\n }\n}]]\nallCards[\"Professor William Webb|Finder of Hidden Connections\"\ - ] = [[{\n \"id\": \"08104\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Survivor\"\ - ,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Secret\",\n \"count\": 3\n }\n}]]\nallCards[\"Professor William Webb|\"\ - ] = [[{\n \"id\": \"08104\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Survivor\"\ - ,\n \"level\": 0,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Secret\",\n \"count\": 3\n }\n}]]\nallCards[\"Ice Pick (1)|\"] = [[{\n\ - \ \"id\": \"08105\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Survivor\"\ - ,\n \"level\": 1,\n \"traits\": \"Item. Tool. Melee.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\nallCards[\"Professor William Webb (2)|Finder of Hidden\ - \ Connections\"] = [[{\n \"id\": \"08106\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker|Survivor\",\n \"level\": 2,\n \"traits\": \"Ally. Miskatonic.\",\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\nallCards[\"\ - Professor William Webb (2)|\"] = [[{\n \"id\": \"08106\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Seeker|Survivor\",\n \"level\": 2,\n \"traits\": \"Ally. Miskatonic.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"Ice Pick (3)|\"\ - ] = [[{\n \"id\": \"08107\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Survivor\"\ - ,\n \"level\": 3,\n \"traits\": \"Item. Tool. Melee.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\nallCards[\"Ethereal Slip|\"] = [[{\n \"id\": \"\ - 08108\",\n \"type\": \"Event\",\n \"class\": \"Seeker|Mystic\",\n \"level\"\ - : 0,\n \"traits\": \"Spell. Trick.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\nallCards[\"Blur (1)|\"] = [[{\n \"id\": \"08109\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Rogue|Mystic\",\n \"level\": 1,\n \"traits\": \"\ - Spell.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \ - \ \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n\ - }]]\nallCards[\"Ethereal Slip (2)|\"] = [[{\n \"id\": \"08110\",\n \"type\"\ - : \"Event\",\n \"class\": \"Seeker|Mystic\",\n \"level\": 2,\n \"traits\":\ - \ \"Spell. Trick.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"\ - Blur (4)|\"] = [[{\n \"id\": \"08111\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Rogue|Mystic\",\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\nallCards[\"\\\"Hit Me!\\\ - \"|\"] = [[{\n \"id\": \"08112\",\n \"type\": \"Event\",\n \"class\": \"Rogue/Mystic\"\ - ,\n \"level\": 0,\n \"traits\": \"Fortune. Gambit.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\nallCards[\"Unscrupulous Loan (3)|\"] = [[{\n \"\ - id\": \"08113\",\n \"type\": \"Asset\",\n \"class\": \"Rogue/Survivor\",\n \ - \ \"level\": 3,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\nallCards[\"Precious Memento (4)|From a Former Life\"] = [[{\n \"\ - id\": \"08114\",\n \"type\": \"Asset\",\n \"class\": \"Rogue/Survivor\",\n \ - \ \"level\": 4,\n \"traits\": \"Item. Charm. Blessed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\nallCards[\"Precious Memento (4)|From a Future Life\"\ - ] = [[{\n \"id\": \"08115\",\n \"type\": \"Asset\",\n \"class\": \"Rogue/Survivor\"\ - ,\n \"level\": 4,\n \"traits\": \"Item. Charm. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\nallCards[\"Talisman of Protection|\"] =\ - \ [[{\n \"id\": \"08116\",\n \"type\": \"Asset\",\n \"class\": \"Mystic/Survivor\"\ - ,\n \"level\": 0,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\nallCards[\"Earthly Serenity (1)|\"] = [[{\n \"id\"\ - : \"08117\",\n \"type\": \"Asset\",\n \"class\": \"Mystic/Survivor\",\n \"\ - level\": 1,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 4\n }\n}]]\nallCards[\"Enchanted Bow (2)|\"] = [[{\n \"id\"\ - : \"08118\",\n \"type\": \"Asset\",\n \"class\": \"Mystic|Survivor\",\n \"\ - level\": 2,\n \"traits\": \"Spell. Blessed. Weapon. Ranged.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\nallCards[\"Earthly Serenity\ - \ (4)|\"] = [[{\n \"id\": \"08119\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic/Survivor\",\n \"level\": 4,\n \"traits\": \"Spell.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Charge\",\n \"count\": 6\n }\n}]]\nallCards[\"Prophetic (3)|\"\ - ] = [[{\n \"id\": \"08120\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Mystic|Survivor\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Resource\",\n \"count\": 2\n }\n}]]\nallCards[\"Sleuth (3)|\"] = [[{\n\ - \ \"id\": \"08121\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Seeker|Mystic\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Resource\",\n \"count\": 2\n }\n}]]\nallCards[\"Bruiser (3)|\"] = [[{\n\ - \ \"id\": \"08122\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue|Survivor\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Resource\",\n \"count\": 2\n }\n}]]\nallCards[\"Crafty (3)|\"] = [[{\n\ - \ \"id\": \"08123\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue|Survivor\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Resource\",\n \"count\": 2\n }\n}]]\nallCards[\"Antiquary (3)|\"] = [[{\n\ - \ \"id\": \"08124\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Rogue|Mystic\"\ - ,\n \"level\": 3,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Resource\",\n \"count\": 2\n }\n}]]\nallCards[\"In the Thick of It|\"\ - ] = [[{\n \"id\": \"08125\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"level\": 0,\n \"traits\": \"Curse.\",\n \"permanent\": true,\n \"weakness\"\ - : false\n}]]\nallCards[\"Heavy Furs|\"] = [[{\n \"id\": \"08126\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"level\": 0,\n \"traits\": \"Item.\ - \ Armor.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\nallCards[\"\ - Sled Dog|\"] = [[{\n \"id\": \"08127\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"level\": 0,\n \"traits\": \"Ally. Creature.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\nallCards[\"Rod of Animalism (1)|\"] = [[{\n\ - \ \"id\": \"08128\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - level\": 1,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\nallCards[\"Call for Backup (2)|\"] = [[{\n \"id\": \"08129\",\n\ - \ \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"level\": 2,\n \"traits\"\ - : \"Favor. Synergy.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\n\ - allCards[\"Arm Injury|\"] = [[{\n \"id\": \"08130\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Injury.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\nallCards[\"Leg Injury|\"\ - ] = [[{\n \"id\": \"08131\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Injury.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1\n}]]\nallCards[\"Panic|\"] = [[{\n \"id\": \"08132\"\ - ,\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n\ - }]]\nallCards[\"Stupor|\"] = [[{\n \"id\": \"08133\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\n\r\nallCards[\"Roland\ - \ Banks|The Fed\"] = [[{\n \"id\": \"01001\",\n \"alternate_ids\": [ \"98004\"\ - \ ],\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Agency. Detective.\"\n}]]\r\nallCards[\"01001\"] = [[{\n \"id\": \"01001\"\ - ,\n \"alternate_ids\": [ \"98004\" ],\n \"type\": \"Investigator\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Agency. Detective.\"\n}]]\r\nallCards[\"Roland\ - \ Banks (promo version)|The Fed\"] = [[{\n \"id\": \"01001-promo\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Agency. Detective.\"\ - \n}]]\r\nallCards[\"Roland Banks (Parallel)|The Fed\"] = [[{\n \"id\": \"01001-p\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Agency. Detective.\"\n}]]\r\nallCards[\"Roland Banks (Parallel Front)|The Fed\"\ - ] = [[{\n \"id\": \"01001-pf\",\n \"type\": \"Investigator\",\n \"class\":\ - \ \"Guardian\",\n \"traits\": \"Agency. Detective.\"\n}]]\r\nallCards[\"Roland\ - \ Banks (Parallel Back)|The Fed\"] = [[{\n \"id\": \"01001-pb\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Agency. Detective.\"\ - \n}]]\r\nallCards[\"Roland Banks|\"] = [[{\n \"id\": \"01001-m\",\n \"alternate_ids\"\ - : [ \"98004-m\" ],\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Roland Banks|Promo\ - \ version\"] = [[{\n \"id\": \"01001-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\ - \nallCards[\"Daisy Walker|The Librarian\"] = [[{\n \"id\": \"01002\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n\ - }]]\r\nallCards[\"01002\"] = [[{\n \"id\": \"01002\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"\ - Daisy Walker (promo version)|The Librarian\"] = [[{\n \"id\": \"01002-promo\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\ - \n}]]\r\nallCards[\"Daisy Walker (Parallel)|The Librarian\"] = [[{\n \"id\":\ - \ \"01002-p\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Daisy Walker (Parallel Front)|The\ - \ Librarian\"] = [[{\n \"id\": \"01002-pf\",\n \"type\": \"Investigator\",\n\ - \ \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Daisy\ - \ Walker (Parallel Back)|The Librarian\"] = [[{\n \"id\": \"01002-pb\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\ - \n}]]\r\nallCards[\"Daisy Walker|\"] = [[{\n \"id\": \"01002-m\",\n \"type\"\ - : \"Minicard\"\n}]]\r\nallCards[\"Daisy Walker|Promo version\"] = [[{\n \"id\"\ - : \"01002-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"\\\"Skids\\\"\ - \ O'Toole|The Ex-Con\"] = [[{\n \"id\": \"01003\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"01003\"\ - ] = [[{\n \"id\": \"01003\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"\\\"Skids\\\" O'Toole\ - \ (promo version)|The Ex-Con\"] = [[{\n \"id\": \"01003-promo\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\ - \nallCards[\"\\\"Skids\\\" O'Toole (Parallel)|The Ex-Con\"] = [[{\n \"id\": \"\ - 01003-p\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Criminal.\"\n}]]\r\nallCards[\"\\\"Skids\\\" O'Toole (Parallel Front)|The\ - \ Ex-Con\"] = [[{\n \"id\": \"01003-pf\",\n \"type\": \"Investigator\",\n \"\ - class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"\\\"Skids\\\ - \" O'Toole (Parallel Back)|The Ex-Con\"] = [[{\n \"id\": \"01003-pb\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\ - \n}]]\r\nallCards[\"\\\"Skids\\\" O'Toole|\"] = [[{\n \"id\": \"01003-m\",\n\ - \ \"type\": \"Minicard\"\n}]]\r\nallCards[\"\\\"Skids\\\" O'Toole|Promo version\"\ - ] = [[{\n \"id\": \"01003-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"\ - Agnes Baker|The Waitress\"] = [[{\n \"id\": \"01004\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"01004\"\ - ] = [[{\n \"id\": \"01004\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"Agnes Baker (promo version)|The\ - \ Waitress\"] = [[{\n \"id\": \"01004-promo\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"Agnes\ - \ Baker (Parallel)|The Waitress\"] = [[{\n \"id\": \"01004-p\",\n \"type\":\ - \ \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\ - \nallCards[\"Agnes Baker (Parallel Front)|The Waitress\"] = [[{\n \"id\": \"\ - 01004-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\"\ - : \"Sorcerer.\"\n}]]\r\nallCards[\"Agnes Baker (Parallel Back)|The Waitress\"\ - ] = [[{\n \"id\": \"01004-pb\",\n \"type\": \"Investigator\",\n \"class\":\ - \ \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"Agnes Baker|\"]\ - \ = [[{\n \"id\": \"01004-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"\ - Agnes Baker|Promo version\"] = [[{\n \"id\": \"01004-promo-m\",\n \"type\":\ - \ \"Minicard\"\n}]]\r\nallCards[\"Wendy Adams|The Urchin\"] = [[{\n \"id\": \"\ - 01005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Drifter.\"\n}]]\r\nallCards[\"01005\"] = [[{\n \"id\": \"01005\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n\ - }]]\r\nallCards[\"Wendy Adams (promo version)|The Urchin\"] = [[{\n \"id\": \"\ - 01005-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Drifter.\"\n}]]\r\nallCards[\"Wendy Adams (Parallel)|The Urchin\"\ - ] = [[{\n \"id\": \"01005-p\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Wendy Adams (Parallel\ - \ Front)|The Urchin\"] = [[{\n \"id\": \"01005-pf\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"\ - Wendy Adams (Parallel Back)|The Urchin\"] = [[{\n \"id\": \"01005-pb\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\ - \n}]]\r\nallCards[\"Wendy Adams|\"] = [[{\n \"id\": \"01005-m\",\n \"type\"\ - : \"Minicard\"\n}]]\r\nallCards[\"Wendy Adams|Promo version\"] = [[{\n \"id\"\ - : \"01005-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Roland's .38\ - \ Special|\"] = [[{\n \"id\": \"01006\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"01006\"] = [[{\n \"id\"\ - : \"01006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"\ - count\": 4\n }\n}]]\r\nallCards[\"Cover Up|\"] = [[{\n \"id\": \"01007\",\n\ - \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"uses\": {\n \"token\"\ - : \"clue\",\n \"type\": \"Clue\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - 01007\"] = [[{\n \"id\": \"01007\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"uses\": {\n \"token\": \"clue\",\n \"type\": \"Clue\",\n \ - \ \"count\": 3\n }\n}]]\r\nallCards[\"Daisy's Tote Bag|Signature\"] = [[{\n\ - \ \"id\": \"01008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\n\ - allCards[\"01008\"] = [[{\n \"id\": \"01008\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"The Necronomicon|John Dee Translation\"]\ - \ = [[{\n \"id\": \"01009\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"01009\"] = [[{\n \"id\": \"01009\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"The Necronomicon|\"] = [[{\n\ - \ \"id\": \"01009\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\ - \nallCards[\"On the Lam|Signature\"] = [[{\n \"id\": \"01010\",\n \"type\":\ - \ \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"01010\"] = [[{\n \"id\": \"\ - 01010\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Hospital Debts|Signature\"] = [[{\n \"id\": \"01011\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"01011\"] = [[{\n \"id\": \"01011\",\n\ - \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Heirloom of\ - \ Hyperborea|Artifact from Another Life\"] = [[{\n \"id\": \"01012\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01012\"] = [[{\n\ - \ \"id\": \"01012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Heirloom of Hyperborea|\"] = [[{\n \"id\": \"01012\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dark Memory|Signature\"\ - ] = [[{\n \"id\": \"01013\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"01013\"] = [[{\n \"id\": \"01013\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"Wendy's Amulet|\"] = [[{\n \"id\": \"\ - 01014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 01014\"] = [[{\n \"id\": \"01014\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Abandoned and Alone|\"] = [[{\n \"id\": \"01015\"\ - ,\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"01015\"] =\ - \ [[{\n \"id\": \"01015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\".45 Automatic|\"] = [[{\n \"id\": \"01016\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n\ - \ }\n}]]\r\nallCards[\"01016\"] = [[{\n \"id\": \"01016\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n\ - \ \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n\ - }]]\r\nallCards[\"Physical Training|\"] = [[{\n \"id\": \"01017\",\n \"alternate_ids\"\ - : [ \"60108\" ],\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"01017\"] = [[{\n \"id\": \"01017\",\n \"alternate_ids\": [\ - \ \"60108\" ],\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Beat Cop|\"] = [[{\n \"id\": \"01018\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Police.\",\n \"level\":\ - \ 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01018\"\ - ] = [[{\n \"id\": \"01018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Ally. Police.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"First Aid|\"] = [[{\n \"id\": \"01019\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\ - \ Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"\ - count\": 3\n }\n}]]\r\nallCards[\"01019\"] = [[{\n \"id\": \"01019\",\n \"\ - type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent. Science.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"Machete|\"] = [[{\n \"id\": \"01020\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n\ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 01020\"] = [[{\n \"id\": \"01020\",\n \"type\": \"Asset\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Machete (Taboo)|\"] = [[{\n\ - \ \"id\": \"01020-t\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n\ - \ \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Guard Dog|\"] = [[{\n \"id\": \"01021\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Creature.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 01021\"] = [[{\n \"id\": \"01021\",\n \"type\": \"Asset\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Ally. Creature.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Evidence!|\"] = [[{\n \"id\"\ - : \"01022\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"01022\"] = [[{\n \"id\": \"01022\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dodge|\"] =\ - \ [[{\n \"id\": \"01023\",\n \"alternate_ids\": [ \"60113\" ],\n \"type\":\ - \ \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01023\"\ - ] = [[{\n \"id\": \"01023\",\n \"alternate_ids\": [ \"60113\" ],\n \"type\"\ - : \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dynamite\ - \ Blast|\"] = [[{\n \"id\": \"01024\",\n \"type\": \"Event\",\n \"class\":\ - \ \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"01024\"] = [[{\n \"id\": \"\ - 01024\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Vicious Blow|\"] = [[{\n \"id\": \"01025\",\n \"alternate_ids\"\ - : [ \"60119\" ],\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"01025\"] = [[{\n \"id\": \"01025\",\n \"alternate_ids\": [\ - \ \"60119\" ],\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Extra Ammunition (1)|\"] = [[{\n \"id\": \"01026\",\n \"type\"\ - : \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Supply.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - 01026\"] = [[{\n \"id\": \"01026\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Supply.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Police Badge (2)|\"] = [[{\n\ - \ \"id\": \"01027\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Item.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"01027\"] = [[{\n \"id\": \"01027\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item.\",\n \"level\": 2,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Beat Cop (2)|\"\ - ] = [[{\n \"id\": \"01028\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Ally. Police.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"01028\"] = [[{\n \"id\": \"01028\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Police.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Shotgun (4)|\"] = [[{\n \"id\": \"01029\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n }\n}]]\r\nallCards[\"\ - 01029\"] = [[{\n \"id\": \"01029\",\n \"type\": \"Asset\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n \"\ - permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"\ - resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n }\n}]]\r\nallCards[\"\ - Magnifying Glass|\"] = [[{\n \"id\": \"01030\",\n \"type\": \"Asset\",\n \"\ - class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"01030\"] = [[{\n \"id\": \"\ - 01030\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item.\ - \ Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Old Book of Lore|\"] = [[{\n \"id\": \"01031\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01031\"\ - ] = [[{\n \"id\": \"01031\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Research Librarian|\"] = [[{\n \"id\"\ - : \"01032\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"01032\"] = [[{\n \"id\": \"01032\",\n \"type\": \"\ - Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Dr. Milan Christopher|Professor of Entomology\"] = [[{\n \"id\": \"01033\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 01033\"] = [[{\n \"id\": \"01033\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Dr. Milan Christopher (Taboo)|Professor\ - \ of Entomology\"] = [[{\n \"id\": \"01033-t\",\n \"type\": \"Asset\",\n \"\ - class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dr. Milan Christopher|\"\ - ] = [[{\n \"id\": \"01033\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Dr. Milan Christopher (Taboo)|\"] =\ - \ [[{\n \"id\": \"01033-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Hyperawareness|\"] = [[{\n \"id\":\ - \ \"01034\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"01034\"] = [[{\n \"id\": \"01034\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Medical Texts|\"\ - ] = [[{\n \"id\": \"01035\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"01035\"] = [[{\n \"id\": \"01035\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Mind over Matter|\"] = [[{\n \"id\": \"01036\",\n \"type\": \"Event\",\n \"\ - class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"01036\"] = [[{\n \"id\": \"\ - 01036\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Working a Hunch|\"] = [[{\n \"id\": \"01037\",\n \"type\": \"Event\",\n \"\ - class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"01037\"] = [[{\n \"id\": \"\ - 01037\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Barricade|\"] = [[{\n \"id\": \"01038\",\n \"type\": \"Event\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"01038\"] = [[{\n \"id\": \"\ - 01038\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\ - \ Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Deduction|\"] = [[{\n \"id\": \"01039\",\n \"alternate_ids\"\ - : [ \"60219\" ],\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\"\ - : \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"01039\"] = [[{\n \"id\": \"01039\",\n \"alternate_ids\": [\ - \ \"60219\" ],\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\"\ - : \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Magnifying Glass (1)|\"] = [[{\n \"id\": \"01040\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01040\"\ - ] = [[{\n \"id\": \"01040\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Tool.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Disc of Itzamna (2)|Protective Amulet\"\ - ] = [[{\n \"id\": \"01041\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"01041\"] = [[{\n \"id\": \"01041\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Disc of Itzamna (2)|\"] = [[{\n \"id\": \"01041\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Encyclopedia\ - \ (2)|\"] = [[{\n \"id\": \"01042\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"01042\"] = [[{\n \"id\": \"01042\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Cryptic Research (4)|\"] = [[{\n \"id\": \"01043\",\n \"type\": \"Event\",\n\ - \ \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 4,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01043\"] = [[{\n\ - \ \"id\": \"01043\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Insight.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Switchblade|\"] = [[{\n \"id\": \"01044\",\n \"alternate_ids\"\ - : [ \"60307\" ],\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Item. Weapon. Melee. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"01044\"] = [[{\n \"id\": \"01044\"\ - ,\n \"alternate_ids\": [ \"60307\" ],\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Burglary|\"\ - ] = [[{\n \"id\": \"01045\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Talent. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"01045\"] = [[{\n \"id\": \"01045\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Illicit.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Pickpocketing|\"] = [[{\n \"id\": \"01046\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Talent. Illicit.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"01046\"] = [[{\n \"id\": \"\ - 01046\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\ - \ Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\".41 Derringer|\"] = [[{\n \"id\": \"01047\",\n \"type\": \"\ - Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"01047\"] = [[{\n \"id\": \"01047\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"Leo De Luca|The Louisiana Lion\"] = [[{\n \"id\": \"\ - 01048\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally.\ - \ Criminal.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"01048\"] = [[{\n \"id\": \"01048\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Leo De Luca|\"\ - ] = [[{\n \"id\": \"01048\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Ally. Criminal.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Hard Knocks|\"] = [[{\n \"id\": \"\ - 01049\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 01049\"] = [[{\n \"id\": \"01049\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Elusive|\"] = [[{\n \"id\": \"01050\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 01050\"] = [[{\n \"id\": \"01050\",\n \"type\": \"Event\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Elusive (Taboo)|\"] = [[{\n \"id\"\ - : \"01050-t\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Backstab|\"] = [[{\n \"id\": \"01051\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01051\"] = [[{\n\ - \ \"id\": \"01051\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Sneak Attack|\"] = [[{\n \"id\": \"01052\",\n \"type\": \"\ - Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01052\"] =\ - \ [[{\n \"id\": \"01052\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n\ - \ \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Opportunist|\"] = [[{\n \"id\": \"01053\",\n \"alternate_ids\"\ - : [ \"60319\" ],\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"01053\"] = [[{\n \"id\": \"01053\",\n \"alternate_ids\": [\ - \ \"60319\" ],\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Leo De Luca (1)|The Louisiana Lion\"] = [[{\n \"id\": \"01054\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 01054\"] = [[{\n \"id\": \"01054\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Leo De Luca (1)|\"] = [[{\n\ - \ \"id\": \"01054\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Ally. Criminal.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Cat Burglar (1)|\"] = [[{\n \"id\": \"01055\",\n \ - \ \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 01055\"] = [[{\n \"id\": \"01055\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Sure Gamble (3)|\"] = [[{\n\ - \ \"id\": \"01056\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Fortune. Insight.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"01056\"] = [[{\n \"id\": \"01056\",\n \"type\": \"\ - Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Insight.\",\n \"\ - level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Hot Streak (4)|\"] = [[{\n \"id\": \"01057\",\n \"type\": \"Event\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 4,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"01057\"] = [[{\n \"id\": \"01057\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\"\ - ,\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Forbidden Knowledge|\"] = [[{\n \"id\": \"01058\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"01058\"]\ - \ = [[{\n \"id\": \"01058\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Holy Rosary|\"] = [[{\n\ - \ \"id\": \"01059\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"01059\"] = [[{\n \"id\": \"01059\",\n \"type\": \"\ - Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Shrivelling|\"\ - ] = [[{\n \"id\": \"01060\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 4\n }\n}]]\r\nallCards[\"01060\"] = [[{\n \"id\": \"01060\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n\ - \ }\n}]]\r\nallCards[\"Scrying|\"] = [[{\n \"id\": \"01061\",\n \"type\": \"\ - Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - 01061\"] = [[{\n \"id\": \"01061\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Arcane Studies|\"] = [[{\n\ - \ \"id\": \"01062\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"01062\"] = [[{\n \"id\": \"01062\",\n \"type\": \"\ - Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Arcane Initiate|\"\ - ] = [[{\n \"id\": \"01063\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"doom\",\n \"type\"\ - : \"Doom\",\n \"count\": 1\n }\n}]]\r\nallCards[\"01063\"] = [[{\n \"id\"\ - : \"01063\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\":\ - \ \"Ally. Sorcerer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"doom\",\n \"type\": \"Doom\",\n \ - \ \"count\": 1\n }\n}]]\r\nallCards[\"Drawn to the Flame|\"] = [[{\n \"id\"\ - : \"01064\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\":\ - \ \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"01064\"] = [[{\n \"id\": \"01064\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ward of Protection|\"\ - ] = [[{\n \"id\": \"01065\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell. Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"01065\"] = [[{\n \"id\": \"01065\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Blinding Light|\"] = [[{\n \"id\": \"01066\",\n \"type\": \"Event\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"01066\"] = [[{\n \"id\": \"01066\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Fearless|\"] = [[{\n \"id\": \"01067\",\n \"type\": \"Skill\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"01067\"] = [[{\n \"id\": \"01067\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Mind Wipe (1)|\"] = [[{\n \"id\": \"01068\",\n \"type\": \"Event\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"01068\"] = [[{\n \"id\": \"01068\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Blinding Light (2)|\"] = [[{\n \"id\": \"01069\",\n \"type\": \"Event\",\n \ - \ \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"01069\"] = [[{\n \"id\": \"\ - 01069\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Book of Shadows (3)|\"] = [[{\n \"id\": \"01070\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01070\"] = [[{\n\ - \ \"id\": \"01070\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Grotesque Statue (4)|\"] = [[{\n \"id\": \"01071\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\"\ - ,\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n\ - \ }\n}]]\r\nallCards[\"01071\"] = [[{\n \"id\": \"01071\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"\ - Leather Coat|\"] = [[{\n \"id\": \"01072\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Item. Armor.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"01072\"] = [[{\n \"id\": \"\ - 01072\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Item. Armor.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Scavenging|\"] = [[{\n \"id\": \"01073\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01073\"] = [[{\n\ - \ \"id\": \"01073\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Baseball Bat|\"] = [[{\n \"id\": \"01074\",\n \"\ - type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon.\ - \ Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"01074\"] = [[{\n \"id\": \"01074\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Rabbit's\ - \ Foot|\"] = [[{\n \"id\": \"01075\",\n \"alternate_ids\": [ \"60510\" ],\n\ - \ \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 01075\"] = [[{\n \"id\": \"01075\",\n \"alternate_ids\": [ \"60510\" ],\n \"\ - type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Stray Cat|\"] = [[{\n \"id\": \"01076\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Ally. Creature.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"01076\"] = [[{\n \"id\": \"\ - 01076\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Ally. Creature.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\":\ - \ false\n}]]\r\nallCards[\"Dig Deep|\"] = [[{\n \"id\": \"01077\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01077\"\ - ] = [[{\n \"id\": \"01077\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Cunning Distraction|\"] = [[{\n \"id\":\ - \ \"01078\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"01078\"] = [[{\n \"id\": \"01078\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"Look what\ - \ I found!\\\"|\"] = [[{\n \"id\": \"01079\",\n \"alternate_ids\": [ \"60517\"\ - \ ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 01079\"] = [[{\n \"id\": \"01079\",\n \"alternate_ids\": [ \"60517\" ],\n \"\ - type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n\ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Lucky!|\"] = [[{\n \"id\": \"01080\",\n \"type\": \"Event\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"01080\"] = [[{\n \"id\": \"01080\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Survival Instinct|\"] = [[{\n \"id\": \"01081\",\n \"type\": \"Skill\",\n \"\ - class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"01081\"] = [[{\n \"id\": \"\ - 01081\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Aquinnah (1)|The Forgotten Daughter\"] = [[{\n \"id\": \"01082\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 01082\"] = [[{\n \"id\": \"01082\",\n \"type\": \"Asset\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Aquinnah (1)|\"] = [[{\n \"id\": \"\ - 01082\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Ally.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\ - \nallCards[\"Close Call (2)|\"] = [[{\n \"id\": \"01083\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01083\"] =\ - \ [[{\n \"id\": \"01083\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Lucky! (2)|\"] = [[{\n \"id\": \"01084\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 01084\"] = [[{\n \"id\": \"01084\",\n \"type\": \"Event\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Will to Survive (3)|\"] = [[{\n \"\ - id\": \"01085\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"01085\"] = [[{\n \"id\": \"01085\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Knife|\"] =\ - \ [[{\n \"id\": \"01086\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"01086\"] = [[{\n \"id\": \"\ - 01086\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Flashlight|\"] = [[{\n \"id\": \"01087\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tool.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n\ - \ \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n \ - \ }\n}]]\r\nallCards[\"01087\"] = [[{\n \"id\": \"01087\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - Emergency Cache|\"] = [[{\n \"id\": \"01088\",\n \"type\": \"Event\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Supply.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"01088\"] = [[{\n \"id\": \"\ - 01088\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Supply.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Guts|\"] = [[{\n \"id\": \"01089\",\n \"type\": \"Skill\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01089\"] = [[{\n\ - \ \"id\": \"01089\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Perception|\"] = [[{\n \"id\": \"01090\",\n \"type\"\ - : \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Practiced.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01090\"\ - ] = [[{\n \"id\": \"01090\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \ - \ \"weakness\": false\n}]]\r\nallCards[\"Overpower|\"] = [[{\n \"id\": \"01091\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Practiced.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 01091\"] = [[{\n \"id\": \"01091\",\n \"type\": \"Skill\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Manual Dexterity|\"] = [[{\n \"id\"\ - : \"01092\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"01092\"] = [[{\n \"id\": \"01092\",\n \"type\": \"Skill\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Unexpected Courage|\"\ - ] = [[{\n \"id\": \"01093\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"01093\"] = [[{\n \"id\": \"01093\",\n \"\ - type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Innate.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Bulletproof Vest (3)|\"] = [[{\n \"id\": \"01094\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Item. Armor.\",\n \"level\": 3,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"01094\"] =\ - \ [[{\n \"id\": \"01094\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Armor.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Elder Sign Amulet (3)|\"] = [[{\n \"\ - id\": \"01095\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"01095\"] = [[{\n \"id\": \"01095\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\"\ - : 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Amnesia|\"\ - ] = [[{\n \"id\": \"01096\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"01096\"] = [[{\n \"id\": \"01096\"\ - ,\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n\ - }]]\r\nallCards[\"Paranoia|\"] = [[{\n \"id\": \"01097\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"01097\"\ - ] = [[{\n \"id\": \"01097\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"Haunted|\"] = [[{\n \"id\": \"\ - 01098\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\"\ - : 1\n}]]\r\nallCards[\"01098\"] = [[{\n \"id\": \"01098\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Psychosis|\"\ - ] = [[{\n \"id\": \"01099\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"01099\"] = [[{\n \"id\": \"01099\"\ - ,\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n\ - }]]\r\nallCards[\"Hypochondria|\"] = [[{\n \"id\": \"01100\",\n \"type\": \"\ - Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\"\ - : false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"\ - 01100\"] = [[{\n \"id\": \"01100\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Mob Enforcer|\"] = [[{\n\ - \ \"id\": \"01101\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Humanoid. Criminal.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"01101\"] = [[{\n \"id\": \"01101\"\ - ,\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid.\ - \ Criminal.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\"\ - : 1\n}]]\r\nallCards[\"Silver Twilight Acolyte|\"] = [[{\n \"id\": \"01102\"\ - ,\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid.\ - \ Cultist. Silver Twilight.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"01102\"] = [[{\n \"id\": \"01102\"\ - ,\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid.\ - \ Cultist. Silver Twilight.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Stubborn Detective|\"] = [[{\n\ - \ \"id\": \"01103\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Humanoid. Detective.\",\n \"permanent\": false,\n \"weakness\":\ - \ true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"01103\"] = [[{\n \"id\"\ - : \"01103\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Humanoid. Detective.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Lita Chantler|The Zealot\"] =\ - \ [[{\n \"id\": \"01117\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"01117\"] = [[{\n \"id\": \"01117\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Ally.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Lita Chantler|\"] = [[{\n \"id\": \"\ - 01117\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lady\ - \ Esprit|Dangerous Bokor\"] = [[{\n \"id\": \"81019\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"81019\"] = [[{\n \"id\": \"\ - 81019\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally. Sorcerer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Lady Esprit|\"] = [[{\n \"id\": \"81019\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Ally. Sorcerer.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Bear Trap|\"] = [[{\n \"id\": \"81020\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Trap.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"81020\"]\ - \ = [[{\n \"id\": \"81020\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Trap.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Fishing Net|\"] = [[{\n \"id\": \"81021\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Trap.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"81021\"] = [[{\n \"id\": \"\ - 81021\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Trap.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Curse\ - \ of the Rougarou|\"] = [[{\n \"id\": \"81029\",\n \"type\": \"Treachery\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"81029\"] = [[{\n \"id\": \"81029\",\n\ - \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Monstrous\ - \ Transformation|\"] = [[{\n \"id\": \"81030\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \ - \ \"weakness\": false\n}]]\r\nallCards[\"81030\"] = [[{\n \"id\": \"81030\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Innocent\ - \ Reveler|\"] = [[{\n \"id\": \"82021\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Ally. Bystander. Carnevale.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"82021\"] = [[{\n \"id\": \"\ - 82021\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally. Bystander. Carnevale.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Abbess Allegria Di Biase|Most Blessed\"] = [[{\n \"id\": \"\ - 82022\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally. Believer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 82022\"] = [[{\n \"id\": \"82022\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Ally. Believer.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Abbess Allegria Di Biase|\"] = [[{\n \"\ - id\": \"82022\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Ally. Believer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\n\ - allCards[\"Bauta|\"] = [[{\n \"id\": \"82023\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"82023\"] = [[{\n \"id\": \"82023\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Mask.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Medico Della\ - \ Peste|\"] = [[{\n \"id\": \"82024\",\n \"type\": \"Asset\",\n \"class\":\ - \ \"Neutral\",\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"82024\"] = [[{\n \"id\": \"82024\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Mask.\",\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Pantalone|\"\ - ] = [[{\n \"id\": \"82025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"82025\"] = [[{\n \"id\": \"82025\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Mask.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Gilded Volto|\"] = [[{\n \"\ - id\": \"82026\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 82026\"] = [[{\n \"id\": \"82026\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item. Mask.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Zoey Samaras|The Chef\"] = [[{\n \"id\": \"02001\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Believer. Hunter.\"\n}]]\r\nallCards[\"02001\"] = [[{\n \"id\": \"02001\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer.\ - \ Hunter.\"\n}]]\r\nallCards[\"Zoey Samaras (promo version)|The Chef\"] = [[{\n\ - \ \"id\": \"02001-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Believer. Hunter.\"\n}]]\r\nallCards[\"Zoey Samaras (Parallel)|The\ - \ Chef\"] = [[{\n \"id\": \"02001-p\",\n \"type\": \"Investigator\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Believer. Hunter.\"\n}]]\r\nallCards[\"Zoey Samaras\ - \ (Parallel Front)|The Chef\"] = [[{\n \"id\": \"02001-pf\",\n \"type\": \"\ - Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Hunter.\"\ - \n}]]\r\nallCards[\"Zoey Samaras (Parallel Back)|The Chef\"] = [[{\n \"id\":\ - \ \"02001-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \ - \ \"traits\": \"Believer. Hunter.\"\n}]]\r\nallCards[\"Zoey Samaras|\"] = [[{\n\ - \ \"id\": \"02001-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Zoey Samaras|Promo\ - \ version\"] = [[{\n \"id\": \"02001-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\ - \nallCards[\"Rex Murphy|The Reporter\"] = [[{\n \"id\": \"02002\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Reporter.\"\n}]]\r\ - \nallCards[\"02002\"] = [[{\n \"id\": \"02002\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Reporter.\"\n}]]\r\nallCards[\"Rex\ - \ Murphy (Taboo)|The Reporter\"] = [[{\n \"id\": \"02002-t\",\n \"type\": \"\ - Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Reporter.\"\n}]]\r\n\ - allCards[\"Rex Murphy (promo version)|The Reporter\"] = [[{\n \"id\": \"02002-promo\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Reporter.\"\ - \n}]]\r\nallCards[\"Rex Murphy (Parallel)|The Reporter\"] = [[{\n \"id\": \"\ - 02002-p\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\"\ - : \"Reporter.\"\n}]]\r\nallCards[\"Rex Murphy (Parallel Front)|The Reporter\"\ - ] = [[{\n \"id\": \"02002-pf\",\n \"type\": \"Investigator\",\n \"class\":\ - \ \"Seeker\",\n \"traits\": \"Reporter.\"\n}]]\r\nallCards[\"Rex Murphy (Parallel\ - \ Back)|The Reporter\"] = [[{\n \"id\": \"02002-pb\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Reporter.\"\n}]]\r\nallCards[\"Rex\ - \ Murphy|\"] = [[{\n \"id\": \"02002-m\",\n \"type\": \"Minicard\"\n}]]\r\n\ - allCards[\"Rex Murphy|Promo version\"] = [[{\n \"id\": \"02002-promo-m\",\n \ - \ \"type\": \"Minicard\"\n}]]\r\nallCards[\"Jenny Barnes|The Dilettante\"] = [[{\n\ - \ \"id\": \"02003\",\n \"alternate_ids\": [ \"98001\" ],\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"02003\"\ - ] = [[{\n \"id\": \"02003\",\n \"alternate_ids\": [ \"98001\" ],\n \"type\"\ - : \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Drifter.\"\n}]]\r\ - \nallCards[\"Jenny Barnes (promo version)|The Dilettante\"] = [[{\n \"id\": \"\ - 02003-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Drifter.\"\n}]]\r\nallCards[\"Jenny Barnes (Parallel)|The Dilettante\"] =\ - \ [[{\n \"id\": \"02003-p\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Jenny Barnes (Parallel\ - \ Front)|The Dilettante\"] = [[{\n \"id\": \"02003-pf\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Jenny\ - \ Barnes (Parallel Back)|The Dilettante\"] = [[{\n \"id\": \"02003-pb\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Drifter.\"\ - \n}]]\r\nallCards[\"Jenny Barnes|\"] = [[{\n \"id\": \"02003-m\",\n \"alternate_ids\"\ - : [ \"98001-m\" ],\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Jenny Barnes|Promo\ - \ version\"] = [[{\n \"id\": \"02003-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\ - \nallCards[\"Jim Culver|The Musician\"] = [[{\n \"id\": \"02004\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer.\"\n\ - }]]\r\nallCards[\"02004\"] = [[{\n \"id\": \"02004\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Performer.\"\n}]]\r\nallCards[\"\ - Jim Culver (promo version)|The Musician\"] = [[{\n \"id\": \"02004-promo\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer.\"\ - \n}]]\r\nallCards[\"Jim Culver (Parallel)|The Musician\"] = [[{\n \"id\": \"\ - 02004-p\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\"\ - : \"Performer.\"\n}]]\r\nallCards[\"Jim Culver (Parallel Front)|The Musician\"\ - ] = [[{\n \"id\": \"02004-pf\",\n \"type\": \"Investigator\",\n \"class\":\ - \ \"Mystic\",\n \"traits\": \"Performer.\"\n}]]\r\nallCards[\"Jim Culver (Parallel\ - \ Back)|The Musician\"] = [[{\n \"id\": \"02004-pb\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Performer.\"\n}]]\r\nallCards[\"\ - Jim Culver|\"] = [[{\n \"id\": \"02004-m\",\n \"type\": \"Minicard\"\n}]]\r\n\ - allCards[\"Jim Culver|Promo version\"] = [[{\n \"id\": \"02004-promo-m\",\n \ - \ \"type\": \"Minicard\"\n}]]\r\nallCards[\"\\\"Ashcan\\\" Pete|The Drifter\"\ - ] = [[{\n \"id\": \"02005\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"02005\"] = [[{\n \"\ - id\": \"02005\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n\ - \ \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"\\\"Ashcan\\\" Pete (promo version)|The\ - \ Drifter\"] = [[{\n \"id\": \"02005-promo\",\n \"type\": \"Investigator\",\n\ - \ \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"\\\"\ - Ashcan\\\" Pete (Parallel)|The Drifter\"] = [[{\n \"id\": \"02005-p\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\ - \n}]]\r\nallCards[\"\\\"Ashcan\\\" Pete (Parallel Front)|The Drifter\"] = [[{\n\ - \ \"id\": \"02005-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"\\\"Ashcan\\\" Pete (Parallel\ - \ Back)|The Drifter\"] = [[{\n \"id\": \"02005-pb\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"\\\ - \"Ashcan\\\" Pete|\"] = [[{\n \"id\": \"02005-m\",\n \"type\": \"Minicard\"\n\ - }]]\r\nallCards[\"\\\"Ashcan\\\" Pete|Promo version\"] = [[{\n \"id\": \"02005-promo-m\"\ - ,\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Zoey's Cross|Symbol of Righteousness\"\ - ] = [[{\n \"id\": \"02006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"02006\"] = [[{\n \"id\": \"02006\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Charm.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Zoey's Cross|\"] = [[{\n \"\ - id\": \"02006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Item. Charm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Smite the Wicked|\"] = [[{\n \"id\": \"02007\",\n \"type\": \"Treachery\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"02007\"] = [[{\n \"id\": \"02007\",\n\ - \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Search for\ - \ the Truth|\"] = [[{\n \"id\": \"02008\",\n \"type\": \"Event\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"02008\"] = [[{\n \"id\": \"02008\",\n \"type\": \"\ - Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Rex's Curse|\"] = [[{\n \"\ - id\": \"02009\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\n\ - allCards[\"02009\"] = [[{\n \"id\": \"02009\",\n \"type\": \"Treachery\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"Jenny's Twin .45s|A Perfect Fit\"] =\ - \ [[{\n \"id\": \"02010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"02010\"] = [[{\n \"id\": \"02010\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Jenny's Twin\ - \ .45s|\"] = [[{\n \"id\": \"02010\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Searching for Izzie|\"] = [[{\n \"\ - id\": \"02011\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"\ - 02011\"] = [[{\n \"id\": \"02011\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\"\ - : true\n}]]\r\nallCards[\"Jim's Trumpet|The Dead Listen\"] = [[{\n \"id\": \"\ - 02012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Item. Instrument. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"02012\"] = [[{\n \"id\": \"02012\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Instrument. Relic.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Jim's Trumpet|\"\ - ] = [[{\n \"id\": \"02012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Instrument. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Final Rhapsody|\"] = [[{\n \"id\": \"02013\"\ - ,\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Endtimes.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"02013\"] =\ - \ [[{\n \"id\": \"02013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Endtimes.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"Duke|Loyal Hound\"] = [[{\n \"id\": \"02014\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Creature.\",\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02014\"] =\ - \ [[{\n \"id\": \"02014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Creature.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Duke|\"] = [[{\n \"id\": \"02014\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Creature.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Wracked by Nightmares|\"\ - ] = [[{\n \"id\": \"02015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"02015\"] = [[{\n \"id\": \"02015\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"Blackjack|\"] = [[{\n \"id\": \"02016\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon.\ - \ Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"02016\"] = [[{\n \"id\": \"02016\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Taunt|\"\ - ] = [[{\n \"id\": \"02017\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"02017\"] = [[{\n \"id\": \"02017\",\n \"\ - type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Teamwork|\"] = [[{\n \"id\": \"02018\",\n \"type\": \"Event\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"02018\"] = [[{\n \"id\": \"\ - 02018\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Taunt (2)|\"] = [[{\n \"id\": \"02019\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 2,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02019\"] = [[{\n\ - \ \"id\": \"02019\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Laboratory Assistant|\"] = [[{\n \"id\": \"02020\"\ - ,\n \"alternate_ids\": [ \"60212\" ],\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Ally. Miskatonic. Science.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02020\"] = [[{\n\ - \ \"id\": \"02020\",\n \"alternate_ids\": [ \"60212\" ],\n \"type\": \"Asset\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic. Science.\",\n \ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Strange Solution|Unidentified\"] = [[{\n \"id\": \"02021\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02021\"] =\ - \ [[{\n \"id\": \"02021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n\ - \ \"traits\": \"Item. Science.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Strange Solution|\"] = [[{\n \"id\"\ - : \"02021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Item. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Shortcut|\"] = [[{\n \"id\": \"02022\",\n \"type\"\ - : \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n\ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02022\"] = [[{\n \"id\": \"02022\",\n \"type\": \"Event\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Seeking Answers|\"] = [[{\n\ - \ \"id\": \"02023\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"02023\"] = [[{\n \"id\": \"02023\",\n \"type\": \"\ - Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\":\ - \ 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Liquid\ - \ Courage|\"] = [[{\n \"id\": \"02024\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Supply\",\n \"count\": 4\n }\n}]]\r\nallCards[\"02024\"]\ - \ = [[{\n \"id\": \"02024\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Item. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Supply\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Think on Your Feet|\"\ - ] = [[{\n \"id\": \"02025\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"02025\"] = [[{\n \"id\": \"02025\",\n \"type\": \"\ - Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Double or Nothing|\"\ - ] = [[{\n \"id\": \"02026\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"02026\"] = [[{\n \"id\": \"02026\",\n \"\ - type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Double or Nothing (Taboo)|\"] = [[{\n \"id\": \"02026-t\",\n \"type\": \"Skill\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hired Muscle (1)|\"\ - ] = [[{\n \"id\": \"02027\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Ally. Criminal.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"02027\"] = [[{\n \"id\": \"02027\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Rite of Seeking|\"] = [[{\n \"id\": \"02028\",\n \"type\": \"Asset\",\n \"\ - class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"02028\"]\ - \ = [[{\n \"id\": \"02028\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"Ritual Candles|\"] = [[{\n \"id\"\ - : \"02029\",\n \"alternate_ids\": [ \"60405\" ],\n \"type\": \"Asset\",\n \"\ - class\": \"Mystic\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"02029\"] = [[{\n \"id\": \"\ - 02029\",\n \"alternate_ids\": [ \"60405\" ],\n \"type\": \"Asset\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Clarity of Mind|\"] = [[{\n \"id\"\ - : \"02030\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\":\ - \ \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"\ - count\": 3\n }\n}]]\r\nallCards[\"02030\"] = [[{\n \"id\": \"02030\",\n \"\ - type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n\ - \ \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n \ - \ }\n}]]\r\nallCards[\"Bind Monster (2)|\"] = [[{\n \"id\": \"02031\",\n \"\ - type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"\ - level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02031\"] = [[{\n \"id\": \"02031\",\n \"type\": \"Event\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Fire Axe|\"] = [[{\n \"id\": \"02032\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon.\ - \ Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"02032\"] = [[{\n \"id\": \"02032\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Peter\ - \ Sylvestre|Big Man on Campus\"] = [[{\n \"id\": \"02033\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02033\"\ - ] = [[{\n \"id\": \"02033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Peter Sylvestre|\"] = [[{\n \"id\"\ - : \"02033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Bait and Switch|\"] = [[{\n \"id\": \"02034\",\n \ - \ \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trick.\",\n\ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02034\"] = [[{\n \"id\": \"02034\",\n \"type\": \"Event\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Peter Sylvestre (2)|Big Man on Campus\"\ - ] = [[{\n \"id\": \"02035\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"02035\"] = [[{\n \"id\": \"02035\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Miskatonic.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Peter Sylvestre (2)|\"] = [[{\n \"id\": \"02035\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Survivor\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\"\ - : 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Kukri|\"\ - ] = [[{\n \"id\": \"02036\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"02036\"] = [[{\n \"id\": \"\ - 02036\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Indebted|\"] = [[{\n \"id\": \"02037\",\n \"type\"\ - : \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\"\ - : true,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"\ - 02037\"] = [[{\n \"id\": \"02037\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": true,\n \"weakness\"\ - : true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"Internal Injury|\"] =\ - \ [[{\n \"id\": \"02038\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Injury.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"02038\"] = [[{\n \"id\": \"02038\"\ - ,\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Injury.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n\ - }]]\r\nallCards[\"Chronophobia|\"] = [[{\n \"id\": \"02039\",\n \"type\": \"\ - Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\"\ - : false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"\ - 02039\"] = [[{\n \"id\": \"02039\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"Dr. Henry Armitage|The\ - \ Head Librarian\"] = [[{\n \"id\": \"02040\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"02040\"] = [[{\n \"id\": \"\ - 02040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\n\ - allCards[\"Dr. Henry Armitage|\"] = [[{\n \"id\": \"02040\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Alchemical Concoction|\"\ - ] = [[{\n \"id\": \"02059\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"02059\"] = [[{\n \"id\": \"02059\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Science.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"Jazz\\\" Mulligan|The Head\ - \ Janitor\"] = [[{\n \"id\": \"02060\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"02060\"] = [[{\n \"id\": \"02060\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"Jazz\\\ - \" Mulligan|\"] = [[{\n \"id\": \"02060\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Professor Warren Rice|Professor of Languages\"\ - ] = [[{\n \"id\": \"02061\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"02061\"] = [[{\n \"id\": \"02061\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Professor Warren\ - \ Rice|\"] = [[{\n \"id\": \"02061\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Peter Clover|Holding All the Cards\"] = [[{\n\ - \ \"id\": \"02079\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Human. Criminal.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"02079\"] = [[{\n \"id\": \"02079\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Human. Criminal.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Peter Clover|\"] = [[{\n \"\ - id\": \"02079\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Human. Criminal.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\ - \nallCards[\"Dr. Francis Morgan|Professor of Archaeology\"] = [[{\n \"id\": \"\ - 02080\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\n\ - allCards[\"02080\"] = [[{\n \"id\": \"02080\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"Dr. Francis Morgan|\"] = [[{\n\ - \ \"id\": \"02080\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Emergency Aid|\"] = [[{\n \"id\": \"02105\",\n \"type\": \"\ - Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight. Science.\",\n \ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02105\"] = [[{\n \"id\": \"02105\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Insight. Science.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Brother Xavier (1)|Pure of\ - \ Spirit\"] = [[{\n \"id\": \"02106\",\n \"type\": \"Asset\",\n \"class\":\ - \ \"Guardian\",\n \"traits\": \"Ally. \",\n \"level\": 1,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"02106\"] = [[{\n \"id\": \"\ - 02106\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Ally. \",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\ - \nallCards[\"Brother Xavier (1)|\"] = [[{\n \"id\": \"02106\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. \",\n \"level\":\ - \ 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"I've\ - \ got a plan!\\\"|\"] = [[{\n \"id\": \"02107\",\n \"type\": \"Event\",\n \"\ - class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 0,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02107\"] = [[{\n\ - \ \"id\": \"02107\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Insight. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Pathfinder (1)|\"] = [[{\n \"id\": \"02108\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02108\"] = [[{\n \"id\": \"02108\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Pathfinder (1) (Taboo)|\"] = [[{\n \ - \ \"id\": \"02108-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Talent.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Contraband|\"] = [[{\n \"id\": \"02109\",\n \"type\"\ - : \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Supply. Illicit.\",\n \ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02109\"] = [[{\n \"id\": \"02109\",\n \"type\": \"Event\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Supply. Illicit.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Adaptable (1)|\"] = [[{\n \ - \ \"id\": \"02110\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Talent.\",\n \"level\": 1,\n \"permanent\": true,\n \"weakness\": false\n\ - }]]\r\nallCards[\"02110\"] = [[{\n \"id\": \"02110\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 1,\n \"\ - permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Delve Too Deep|\"\ - ] = [[{\n \"id\": \"02111\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"02111\"] = [[{\n \"id\": \"02111\",\n \"\ - type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Delve Too Deep (Taboo)|\"] = [[{\n \"id\": \"02111-t\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Song of the Dead\ - \ (2)|\"] = [[{\n \"id\": \"02112\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell. Song.\",\n \"level\": 2,\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Charge\",\n \"count\": 5\n }\n}]]\r\nallCards[\"02112\"]\ - \ = [[{\n \"id\": \"02112\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell. Song.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Charge\",\n \"count\": 5\n }\n}]]\r\nallCards[\"Oops!|\"] = [[{\n \"\ - id\": \"02113\",\n \"alternate_ids\": [ \"60518\" ],\n \"type\": \"Event\",\n\ - \ \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02113\"] = [[{\n\ - \ \"id\": \"02113\",\n \"alternate_ids\": [ \"60518\" ],\n \"type\": \"Event\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Fire Extinguisher\ - \ (1)|\"] = [[{\n \"id\": \"02114\",\n \"type\": \"Asset\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Item. Tool. Melee.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"02114\"] = [[{\n \"id\": \"\ - 02114\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Item. Tool. Melee.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Flare (1)|\"] = [[{\n \"id\": \"02115\",\n \"type\"\ - : \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02115\"\ - ] = [[{\n \"id\": \"02115\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Smoking Pipe|\"] = [[{\n \"id\": \"02116\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"02116\"] = [[{\n \"id\": \"02116\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"\ - resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - Painkillers|\"] = [[{\n \"id\": \"02117\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"02117\"] = [[{\n \"id\"\ - : \"02117\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"\ - count\": 3\n }\n}]]\r\nallCards[\"Harold Walsted|Curator of the Museum\"] = [[{\n\ - \ \"id\": \"02138\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"02138\"] = [[{\n \"id\": \"02138\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Harold Walsted|\"] = [[{\n\ - \ \"id\": \"02138\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Adam Lynch|Museum Security\"] = [[{\n \"id\": \"02139\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02139\"]\ - \ = [[{\n \"id\": \"02139\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Miskatonic.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Adam Lynch|\"] = [[{\n \"id\": \"02139\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Miskatonic.\",\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Necronomicon|Olaus\ - \ Wormius Translation\"] = [[{\n \"id\": \"02140\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"02140\"] = [[{\n \"id\": \"02140\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Necronomicon|\"\ - ] = [[{\n \"id\": \"02140\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Bandolier|\"] = [[{\n \"id\": \"02147\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02147\"] = [[{\n\ - \ \"id\": \"02147\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Stand Together (3)|\"] = [[{\n \"id\": \"02148\",\n\ - \ \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02148\"] = [[{\n \"id\": \"02148\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Art Student|\"] = [[{\n \"id\": \"\ - 02149\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally.\ - \ Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"02149\"] = [[{\n \"id\": \"02149\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Deduction\ - \ (2)|\"] = [[{\n \"id\": \"02150\",\n \"type\": \"Skill\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"02150\"] = [[{\n \"id\": \"\ - 02150\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced.\ - \ Expert.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"\\\"I'm outta here!\\\"|\"] = [[{\n \"id\": \"02151\",\n \"\ - type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick. Spirit.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02151\"] = [[{\n \"id\": \"02151\",\n \"type\": \"Event\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Trick. Spirit.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Switchblade (2)|\"] = [[{\n\ - \ \"id\": \"02152\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Item. Weapon. Melee. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"02152\"] = [[{\n \"id\": \"02152\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon.\ - \ Melee. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Switchblade (2) (Taboo)|\"] = [[{\n \"id\": \"02152-t\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon.\ - \ Melee. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Hypnotic Gaze|\"] = [[{\n \"id\": \"02153\",\n \"\ - alternate_ids\": [ \"60414\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"02153\"] = [[{\n \"id\": \"02153\",\n \"alternate_ids\"\ - : [ \"60414\" ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\"\ - : \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Shrivelling (3)|\"] = [[{\n \"id\": \"02154\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\"\ - : 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"\ - 02154\"] = [[{\n \"id\": \"02154\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Newspaper|\"] = [[{\n\ - \ \"id\": \"02155\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"02155\"] = [[{\n \"id\": \"02155\",\n \"type\": \"\ - Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lure (1)|\"\ - ] = [[{\n \"id\": \"02156\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Trick.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"02156\"] = [[{\n \"id\": \"02156\",\n \"type\": \"\ - Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trick.\",\n \"level\":\ - \ 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Relic\ - \ Hunter (3)|\"] = [[{\n \"id\": \"02157\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\":\ - \ true,\n \"weakness\": false\n}]]\r\nallCards[\"02157\"] = [[{\n \"id\": \"\ - 02157\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\ - \nallCards[\"Charisma (3)|\"] = [[{\n \"id\": \"02158\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"\ - permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"02158\"] = [[{\n\ - \ \"id\": \"02158\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Across Space and Time|\"] = [[{\n \"id\": \"02178\"\ - ,\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"02178\"] =\ - \ [[{\n \"id\": \"02178\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"Helpless Passenger|\"] = [[{\n \"id\": \"02179\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Bystander.\",\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02179\"] =\ - \ [[{\n \"id\": \"02179\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Bystander.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Prepared for the Worst|\"] = [[{\n \"id\": \"02184\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02184\"] = [[{\n \"id\": \"02184\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Keen Eye (3)|\"] = [[{\n \"id\": \"\ - 02185\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\ - \nallCards[\"02185\"] = [[{\n \"id\": \"02185\",\n \"type\": \"Asset\",\n \"\ - class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\"\ - : true,\n \"weakness\": false\n}]]\r\nallCards[\"Preposterous Sketches|\"] =\ - \ [[{\n \"id\": \"02186\",\n \"alternate_ids\": [ \"60218\" ],\n \"type\":\ - \ \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02186\"\ - ] = [[{\n \"id\": \"02186\",\n \"alternate_ids\": [ \"60218\" ],\n \"type\"\ - : \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Higher\ - \ Education (3)|\"] = [[{\n \"id\": \"02187\",\n \"type\": \"Asset\",\n \"\ - class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\"\ - : true,\n \"weakness\": false\n}]]\r\nallCards[\"02187\"] = [[{\n \"id\": \"\ - 02187\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\"\ - ,\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Higher Education (3) (Taboo)|\"] = [[{\n \"id\": \"02187-t\",\n \"type\": \"\ - Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n\ - \ \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Lone Wolf|\"\ - ] = [[{\n \"id\": \"02188\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"02188\"] = [[{\n \"id\": \"02188\",\n \"\ - type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Streetwise (3)|\"] = [[{\n \"id\": \"02189\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"02189\"] = [[{\n \"id\": \"02189\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\"\ - ,\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Streetwise (3) (Taboo)|\"] = [[{\n \"id\": \"02189-t\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"\ - permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Defiance|\"] = [[{\n\ - \ \"id\": \"02190\",\n \"alternate_ids\": [ \"60418\" ],\n \"type\": \"Skill\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02190\"] = [[{\n\ - \ \"id\": \"02190\",\n \"alternate_ids\": [ \"60418\" ],\n \"type\": \"Skill\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Blood Pact (3)|\"\ - ] = [[{\n \"id\": \"02191\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell. Pact.\",\n \"level\": 3,\n \"permanent\": true,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"02191\"] = [[{\n \"id\": \"02191\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Pact.\"\ - ,\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Rise to the Occasion|\"] = [[{\n \"id\": \"02192\",\n \"type\": \"Skill\",\n\ - \ \"class\": \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02192\"] = [[{\n\ - \ \"id\": \"02192\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Scrapper (3)|\"] = [[{\n \"id\": \"02193\",\n \"\ - type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \ - \ \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02193\"] = [[{\n \"id\": \"02193\",\n \"type\": \"Asset\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Scrapper (3) (Taboo)|\"] = [[{\n \"\ - id\": \"02193-t\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Emergency Cache (2)|\"] = [[{\n \"id\": \"02194\",\n \"type\"\ - : \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Supply.\",\n \"level\"\ - : 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02194\"\ - ] = [[{\n \"id\": \"02194\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Supply.\",\n \"level\": 2,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Key to the Chamber|\"] = [[{\n \"id\": \"\ - 02215\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Item. Key.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02215\"] = [[{\n \"id\": \"02215\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item. Key.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Zebulon Whateley|Recalling Ancient Things\"] = [[{\n\ - \ \"id\": \"02217\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Ally. Dunwich.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"02217\"] = [[{\n \"id\": \"02217\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dunwich.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Zebulon Whateley|\"] = [[{\n\ - \ \"id\": \"02217\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Ally. Dunwich.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Earl Sawyer|Smarter Than He Lets On\"] = [[{\n \"id\": \"02218\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dunwich.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02218\"]\ - \ = [[{\n \"id\": \"02218\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Dunwich.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Earl Sawyer|\"] = [[{\n \"id\": \"02218\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dunwich.\",\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Powder of Ibn\ - \ Ghazi|Seeing Things Unseen\"] = [[{\n \"id\": \"02219\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"02219\"] = [[{\n \"id\": \"02219\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Powder of\ - \ Ibn Ghazi|\"] = [[{\n \"id\": \"02219\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"\\\"If it bleeds...\\\"|\"] = [[{\n \"id\": \"02225\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"02225\"] = [[{\n \"id\": \"\ - 02225\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Springfield\ - \ M1903 (4)|\"] = [[{\n \"id\": \"02226\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - 02226\"] = [[{\n \"id\": \"02226\",\n \"type\": \"Asset\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n \"\ - permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"\ - resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - Springfield M1903 (4) (Taboo)|\"] = [[{\n \"id\": \"02226-t\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\"\ - ,\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"Inquiring Mind|\"] = [[{\n \"id\": \"02227\",\n \"type\"\ - : \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02227\"\ - ] = [[{\n \"id\": \"02227\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Expose Weakness (1)|\"] = [[{\n \"id\":\ - \ \"02228\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"02228\"] = [[{\n \"id\": \"02228\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Quick Thinking|\"\ - ] = [[{\n \"id\": \"02229\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"02229\"] = [[{\n \"id\": \"02229\",\n \"\ - type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Quick Thinking (Taboo)|\"] = [[{\n \"id\": \"02229-t\",\n \"type\": \"Skill\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lucky Dice (2)|...Or\ - \ Are They?\"] = [[{\n \"id\": \"02230\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"02230\"] = [[{\n \"id\": \"\ - 02230\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item.\ - \ Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Lucky Dice (2)|\"] = [[{\n \"id\": \"02230\",\n \"type\":\ - \ \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\"\ - : 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Opportunist\ - \ (2)|\"] = [[{\n \"id\": \"02231\",\n \"type\": \"Skill\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"02231\"] = [[{\n \"id\": \"\ - 02231\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\ - \ Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Alyssa Graham|Speaker to the Dead\"] = [[{\n \"id\": \"02232\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02232\"] = [[{\n \"id\": \"02232\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Alyssa Graham|\"] = [[{\n \ - \ \"id\": \"02232\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\"\ - : \"Ally. Sorcerer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Rite of Seeking (4)|\"] = [[{\n \"id\": \"02233\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"02233\"] = [[{\n \"id\": \"02233\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"\ - permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"\ - resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - Dark Horse|\"] = [[{\n \"id\": \"02234\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Condition.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"02234\"] = [[{\n \"id\": \"\ - 02234\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Condition.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Survival Instinct (2)|\"] = [[{\n \"id\": \"02235\",\n \"\ - type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02235\"] = [[{\n \"id\": \"02235\",\n \"type\": \"Skill\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Esoteric Formula|\"] = [[{\n\ - \ \"id\": \"02254\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\n\ - allCards[\"02254\"] = [[{\n \"id\": \"02254\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Leadership|\"] = [[{\n \"id\": \"02260\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02260\"] = [[{\n \"id\": \"02260\",\n \"type\": \"Skill\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"I've had worse\uFFFD\\\"\ - \ (4)|\"] = [[{\n \"id\": \"02261\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 4,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"02261\"] = [[{\n \"id\": \"02261\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\"\ - ,\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Strange Solution (4)|Restorative Concoction\"] = [[{\n \"id\": \"02262\",\n \ - \ \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\"\ - ,\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02262\"] = [[{\n \"id\": \"02262\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Strange Solution (4)|\"] =\ - \ [[{\n \"id\": \"02262\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n\ - \ \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Strange Solution (4)|Acidic Ichor\"\ - ] = [[{\n \"id\": \"02263\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"02263\"] = [[{\n \"id\"\ - : \"02263\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"Strange Solution (4)|\"] = [[{\n \ - \ \"id\": \"02263\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\"\ - : \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"Strange Solution (4)|Freezing Variant\"\ - ] = [[{\n \"id\": \"02264\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"02264\"] = [[{\n \"id\": \"02264\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\"\ - ,\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Strange Solution (4)|\"] = [[{\n \"id\": \"02264\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Joey \\\"The\ - \ Rat\\\" Vigil|Lookin' Out for #1\"] = [[{\n \"id\": \"02265\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02265\"] = [[{\n \"id\": \"02265\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Joey \\\"The Rat\\\" Vigil|\"\ - ] = [[{\n \"id\": \"02265\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Ally. Criminal.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Ace in the Hole (3)|\"] = [[{\n \"\ - id\": \"02266\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Trick.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"02266\"] = [[{\n \"id\": \"02266\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Ace in the Hole (3) (Taboo)|\"\ - ] = [[{\n \"id\": \"02266-t\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Trick.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Moonlight Ritual|\"] = [[{\n \"id\": \"02267\",\n\ - \ \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Insight.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02267\"] = [[{\n \"id\": \"02267\",\n \"type\": \"Event\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell. Insight.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Fearless (2)|\"] = [[{\n \"\ - id\": \"02268\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\"\ - : \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"02268\"] = [[{\n \"id\": \"02268\",\n \"type\": \"\ - Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate. Developed.\",\n \"\ - level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Jewel of Aureolus (3)|Gift of the Homunculi\"] = [[{\n \"id\": \"02269\",\n \ - \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02269\"] = [[{\n \"id\": \"02269\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"Jewel of Aureolus (3)|\"] =\ - \ [[{\n \"id\": \"02269\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n\ - \ \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \ - \ \"weakness\": false\n}]]\r\nallCards[\"A Chance Encounter|\"] = [[{\n \"id\"\ - : \"02270\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"02270\"] = [[{\n \"id\": \"02270\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Stroke of Luck\ - \ (2)|\"] = [[{\n \"id\": \"02271\",\n \"type\": \"Skill\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Innate. Fortune.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"02271\"] = [[{\n \"id\": \"\ - 02271\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Innate. Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Fine Clothes|\"] = [[{\n \"id\": \"02272\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Clothing.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02272\"] = [[{\n \"id\": \"02272\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Moment of Respite (3)|\"] =\ - \ [[{\n \"id\": \"02273\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"02273\"] = [[{\n \"id\": \"02273\",\n \"\ - type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spirit.\",\n \"\ - level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Vicious Blow (2)|\"] = [[{\n \"id\": \"02299\",\n \"type\": \"Skill\",\n \"\ - class\": \"Guardian\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 2,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02299\"] =\ - \ [[{\n \"id\": \"02299\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Practiced. Expert.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Monster Slayer (5)|\"] = [[{\n \"id\"\ - : \"02300\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Spirit.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"02300\"] = [[{\n \"id\": \"02300\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 5,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lightning Gun\ - \ (5)|\"] = [[{\n \"id\": \"02301\",\n \"type\": \"Asset\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 5,\n \"\ - permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"\ - resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - 02301\"] = [[{\n \"id\": \"02301\",\n \"type\": \"Asset\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 5,\n \"\ - permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"\ - resource\",\n \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - Dr. William T. Maleson|Working on Something Big\"] = [[{\n \"id\": \"02302\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02302\"] = [[{\n \"id\": \"02302\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Dr. William T. Maleson|\"]\ - \ = [[{\n \"id\": \"02302\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Deciphered Reality (5)|\"] = [[{\n \ - \ \"id\": \"02303\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\"\ - : \"Insight.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"02303\"] = [[{\n \"id\": \"02303\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 5,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Chicago Typewriter\ - \ (4)|\"] = [[{\n \"id\": \"02304\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 4,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"\ - 02304\"] = [[{\n \"id\": \"02304\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 4,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"\ - The Gold Pocket Watch (4)|Stealing Time\"] = [[{\n \"id\": \"02305\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\"\ - : 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02305\"\ - ] = [[{\n \"id\": \"02305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"The Gold Pocket Watch (4)|\"] = [[{\n\ - \ \"id\": \"02305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Shrivelling (5)|\"] = [[{\n \"id\": \"02306\",\n \ - \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n\ - \ \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n\ - \ }\n}]]\r\nallCards[\"02306\"] = [[{\n \"id\": \"02306\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 5,\n \"\ - permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"\ - resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"\ - Ward of Protection (5)|\"] = [[{\n \"id\": \"02307\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 5,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"02307\"] =\ - \ [[{\n \"id\": \"02307\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n\ - \ \"traits\": \"Spell. Spirit.\",\n \"level\": 5,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Aquinnah (3)|The Forgotten Daughter\"\ - ] = [[{\n \"id\": \"02308\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Ally.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"02308\"] = [[{\n \"id\": \"02308\",\n \"type\": \"\ - Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 3,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Aquinnah (3)|\"\ - ] = [[{\n \"id\": \"02308\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Ally.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Try and Try Again (3)|\"] = [[{\n \"id\": \"02309\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 02309\"] = [[{\n \"id\": \"02309\",\n \"type\": \"Asset\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"The Red-Gloved Man (5)|He Was Never\ - \ There\"] = [[{\n \"id\": \"02310\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Ally. Conspirator.\",\n \"level\": 5,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"02310\"] = [[{\n \"id\": \"\ - 02310\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally. Conspirator.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"The Red-Gloved Man (5)|\"] = [[{\n \"id\": \"02310\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Conspirator.\"\ - ,\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Mark Harrigan|The Soldier\"] = [[{\n \"id\": \"03001\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"\ - 03001\"] = [[{\n \"id\": \"03001\",\n \"type\": \"Investigator\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"Mark Harrigan (promo\ - \ version)|The Soldier\"] = [[{\n \"id\": \"03001-promo\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"\ - Mark Harrigan (Parallel)|The Soldier\"] = [[{\n \"id\": \"03001-p\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran.\"\n\ - }]]\r\nallCards[\"Mark Harrigan (Parallel Front)|The Soldier\"] = [[{\n \"id\"\ - : \"03001-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \ - \ \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"Mark Harrigan (Parallel Back)|The\ - \ Soldier\"] = [[{\n \"id\": \"03001-pb\",\n \"type\": \"Investigator\",\n \ - \ \"class\": \"Guardian\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"Mark\ - \ Harrigan|\"] = [[{\n \"id\": \"03001-m\",\n \"type\": \"Minicard\"\n}]]\r\n\ - allCards[\"Mark Harrigan|Promo version\"] = [[{\n \"id\": \"03001-promo-m\",\n\ - \ \"type\": \"Minicard\"\n}]]\r\nallCards[\"Minh Thi Phan|The Secretary\"] =\ - \ [[{\n \"id\": \"03002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"03002\"] = [[{\n \"id\": \"\ - 03002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\"\ - : \"Assistant.\"\n}]]\r\nallCards[\"Minh Thi Phan (promo version)|The Secretary\"\ - ] = [[{\n \"id\": \"03002-promo\",\n \"type\": \"Investigator\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"Minh Thi Phan (Parallel)|The\ - \ Secretary\"] = [[{\n \"id\": \"03002-p\",\n \"type\": \"Investigator\",\n\ - \ \"class\": \"Seeker\",\n \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"Minh\ - \ Thi Phan (Parallel Front)|The Secretary\"] = [[{\n \"id\": \"03002-pf\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant.\"\ - \n}]]\r\nallCards[\"Minh Thi Phan (Parallel Back)|The Secretary\"] = [[{\n \"\ - id\": \"03002-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n\ - \ \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"Minh Thi Phan|\"] = [[{\n \"\ - id\": \"03002-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Minh Thi Phan|Promo\ - \ version\"] = [[{\n \"id\": \"03002-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\ - \nallCards[\"Sefina Rousseau|The Painter\"] = [[{\n \"id\": \"03003\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Artist.\"\n\ - }]]\r\nallCards[\"03003\"] = [[{\n \"id\": \"03003\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Artist.\"\n}]]\r\nallCards[\"Sefina\ - \ Rousseau (promo version)|The Painter\"] = [[{\n \"id\": \"03003-promo\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Artist.\"\ - \n}]]\r\nallCards[\"Sefina Rousseau (Parallel)|The Painter\"] = [[{\n \"id\"\ - : \"03003-p\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Artist.\"\n}]]\r\nallCards[\"Sefina Rousseau (Parallel Front)|The Painter\"\ - ] = [[{\n \"id\": \"03003-pf\",\n \"type\": \"Investigator\",\n \"class\":\ - \ \"Rogue\",\n \"traits\": \"Artist.\"\n}]]\r\nallCards[\"Sefina Rousseau (Parallel\ - \ Back)|The Painter\"] = [[{\n \"id\": \"03003-pb\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Artist.\"\n}]]\r\nallCards[\"Sefina\ - \ Rousseau|\"] = [[{\n \"id\": \"03003-m\",\n \"type\": \"Minicard\"\n}]]\r\n\ - allCards[\"Sefina Rousseau|Promo version\"] = [[{\n \"id\": \"03003-promo-m\"\ - ,\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Akachi Onyele|The Shaman\"] = [[{\n\ - \ \"id\": \"03004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"03004\"] = [[{\n \"id\": \"\ - 03004\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\"\ - : \"Sorcerer.\"\n}]]\r\nallCards[\"Akachi Onyele (promo version)|The Shaman\"\ - ] = [[{\n \"id\": \"03004-promo\",\n \"type\": \"Investigator\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"Akachi Onyele (Parallel)|The\ - \ Shaman\"] = [[{\n \"id\": \"03004-p\",\n \"type\": \"Investigator\",\n \"\ - class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\nallCards[\"Akachi Onyele\ - \ (Parallel Front)|The Shaman\"] = [[{\n \"id\": \"03004-pf\",\n \"type\": \"\ - Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\n}]]\r\n\ - allCards[\"Akachi Onyele (Parallel Back)|The Shaman\"] = [[{\n \"id\": \"03004-pb\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer.\"\ - \n}]]\r\nallCards[\"Akachi Onyele|\"] = [[{\n \"id\": \"03004-m\",\n \"type\"\ - : \"Minicard\"\n}]]\r\nallCards[\"Akachi Onyele|Promo version\"] = [[{\n \"id\"\ - : \"03004-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"William Yorick|The\ - \ Gravedigger\"] = [[{\n \"id\": \"03005\",\n \"type\": \"Investigator\",\n\ - \ \"class\": \"Survivor\",\n \"traits\": \"Warden.\"\n}]]\r\nallCards[\"03005\"\ - ] = [[{\n \"id\": \"03005\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Warden.\"\n}]]\r\nallCards[\"William Yorick (promo\ - \ version)|The Gravedigger\"] = [[{\n \"id\": \"03005-promo\",\n \"type\": \"\ - Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Warden.\"\n}]]\r\n\ - allCards[\"William Yorick (Parallel)|The Gravedigger\"] = [[{\n \"id\": \"03005-p\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Warden.\"\n}]]\r\nallCards[\"William Yorick (Parallel Front)|The Gravedigger\"\ - ] = [[{\n \"id\": \"03005-pf\",\n \"type\": \"Investigator\",\n \"class\":\ - \ \"Survivor\",\n \"traits\": \"Warden.\"\n}]]\r\nallCards[\"William Yorick (Parallel\ - \ Back)|The Gravedigger\"] = [[{\n \"id\": \"03005-pb\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Warden.\"\n}]]\r\nallCards[\"William\ - \ Yorick|\"] = [[{\n \"id\": \"03005-m\",\n \"type\": \"Minicard\"\n}]]\r\n\ - allCards[\"William Yorick|Promo version\"] = [[{\n \"id\": \"03005-promo-m\"\ - ,\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Lola Hayes|The Actress\"] = [[{\n\ - \ \"id\": \"03006\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Performer.\"\n}]]\r\nallCards[\"03006\"] = [[{\n \"id\": \"\ - 03006\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Performer.\"\n}]]\r\nallCards[\"Lola Hayes (promo version)|The Actress\"]\ - \ = [[{\n \"id\": \"03006-promo\",\n \"type\": \"Investigator\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Performer.\"\n}]]\r\nallCards[\"Lola Hayes (Parallel)|The\ - \ Actress\"] = [[{\n \"id\": \"03006-p\",\n \"type\": \"Investigator\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Performer.\"\n}]]\r\nallCards[\"Lola Hayes\ - \ (Parallel Front)|The Actress\"] = [[{\n \"id\": \"03006-pf\",\n \"type\":\ - \ \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Performer.\"\n\ - }]]\r\nallCards[\"Lola Hayes (Parallel Back)|The Actress\"] = [[{\n \"id\": \"\ - 03006-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Performer.\"\n}]]\r\nallCards[\"Lola Hayes|\"] = [[{\n \"id\": \"03006-m\"\ - ,\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Lola Hayes|Promo version\"] = [[{\n\ - \ \"id\": \"03006-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"The\ - \ Home Front|\"] = [[{\n \"id\": \"03007\",\n \"type\": \"Skill\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Practiced. Expert.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"03007\"] = [[{\n \"id\": \"03007\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Practiced.\ - \ Expert.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Shell Shock|\"] = [[{\n \"id\": \"03008\",\n \"type\": \"Treachery\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"\ - weakness\": true\n}]]\r\nallCards[\"03008\"] = [[{\n \"id\": \"03008\",\n \"\ - type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n\ - \ \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Sophie|In Loving\ - \ Memory\"] = [[{\n \"id\": \"03009\",\n \"type\": \"Asset\",\n \"class\":\ - \ \"Neutral\",\n \"traits\": \"Item. Spirit.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"03009\"] = [[{\n \"id\": \"03009\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Spirit.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sophie|\"\ - ] = [[{\n \"id\": \"03009\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Spirit.\",\n \"permanent\": false,\n \"weakness\":\ - \ false\n}]]\r\nallCards[\"Analytical Mind|Between the Lines\"] = [[{\n \"id\"\ - : \"03010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 03010\"] = [[{\n \"id\": \"03010\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Analytical Mind|\"] = [[{\n \"id\": \"03010\",\n \ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The King in\ - \ Yellow|Act 1\"] = [[{\n \"id\": \"03011\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Tome.\",\n \"permanent\": false,\n \"weakness\"\ - : true\n}]]\r\nallCards[\"03011\"] = [[{\n \"id\": \"03011\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"The King in Yellow|\"] = [[{\n\ - \ \"id\": \"03011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Tome.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"\ - The Painted World|\"] = [[{\n \"id\": \"03012\",\n \"type\": \"Event\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"03012\"] = [[{\n \"id\": \"03012\",\n \"\ - type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Stars of Hyades|\"\ - ] = [[{\n \"id\": \"03013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"03013\"] = [[{\n \"id\": \"03013\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"Spirit-Speaker|Envoy of the Alusi\"]\ - \ = [[{\n \"id\": \"03014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"03014\"] = [[{\n \"id\": \"03014\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Ritual.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Spirit-Speaker|\"] = [[{\n \"id\":\ - \ \"03014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Ritual.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Angered Spirits|\"] = [[{\n \"id\": \"03015\",\n \"type\": \"Treachery\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"03015\"] = [[{\n \"id\": \"03015\",\n\ - \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Bury Them\ - \ Deep|\"] = [[{\n \"id\": \"03016\",\n \"type\": \"Event\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"03016\"] = [[{\n \"id\": \"03016\",\n \"type\": \"\ - Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Graveyard Ghouls|\"] = [[{\n\ - \ \"id\": \"03017\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Humanoid. Monster. Ghoul.\",\n \"permanent\": false,\n \"weakness\"\ - : true\n}]]\r\nallCards[\"03017\"] = [[{\n \"id\": \"03017\",\n \"type\": \"\ - Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Monster. Ghoul.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Improvisation|\"\ - ] = [[{\n \"id\": \"03018\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"03018\"] = [[{\n \"id\": \"03018\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Crisis of Identity|\"] = [[{\n \"id\"\ - : \"03019\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"\ - 03019\"] = [[{\n \"id\": \"03019\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\"\ - : true\n}]]\r\nallCards[\".32 Colt|\"] = [[{\n \"id\": \"03020\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 6\n\ - \ }\n}]]\r\nallCards[\"03020\"] = [[{\n \"id\": \"03020\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n\ - \ \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 6\n }\n\ - }]]\r\nallCards[\"True Grit|\"] = [[{\n \"id\": \"03021\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03021\"] = [[{\n\ - \ \"id\": \"03021\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"\\\"Let me handle this!\\\"|\"] = [[{\n \"id\": \"\ - 03022\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"03022\"] = [[{\n \"id\": \"03022\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ever Vigilant\ - \ (1)|\"] = [[{\n \"id\": \"03023\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"03023\"] = [[{\n \"id\": \"03023\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Fieldwork|\"] = [[{\n \"id\": \"03024\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"03024\"] = [[{\n \"id\": \"03024\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Archaic Glyphs|Untranslated\"] = [[{\n \"id\": \"03025\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Item. Occult. Tome.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03025\"\ - ] = [[{\n \"id\": \"03025\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Occult. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Archaic Glyphs|\"] = [[{\n \"id\":\ - \ \"03025\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Item. Occult. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"No Stone Unturned|\"] = [[{\n \"id\": \"03026\",\n\ - \ \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 03026\"] = [[{\n \"id\": \"03026\",\n \"type\": \"Event\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"In the Know (1)|\"] = [[{\n \"id\"\ - : \"03027\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Talent.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"\ - count\": 3\n }\n}]]\r\nallCards[\"03027\"] = [[{\n \"id\": \"03027\",\n \"\ - type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"\ - level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n\ - \ \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n \ - \ }\n}]]\r\nallCards[\"Stealth|\"] = [[{\n \"id\": \"03028\",\n \"type\": \"\ - Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03028\"] =\ - \ [[{\n \"id\": \"03028\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n\ - \ \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Sleight of Hand|\"] = [[{\n \"id\": \"03029\",\n \ - \ \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 03029\"] = [[{\n \"id\": \"03029\",\n \"type\": \"Event\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Sleight of Hand (Taboo)|\"] = [[{\n\ - \ \"id\": \"03029-t\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"\ - traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Daring Maneuver|\"] = [[{\n \"id\": \"03030\",\n \ - \ \"alternate_ids\": [ \"60313\" ],\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"03030\"] = [[{\n \"id\": \"03030\",\n \"\ - alternate_ids\": [ \"60313\" ],\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Lockpicks (1)|\"] = [[{\n \"id\": \"03031\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Tool.\ - \ Illicit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"\ - count\": 3\n }\n}]]\r\nallCards[\"03031\"] = [[{\n \"id\": \"03031\",\n \"\ - type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Tool. Illicit.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"Alchemical Transmutation|\"] = [[{\n \"id\": \"03032\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"03032\"] = [[{\n \"id\": \"03032\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"\ - resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - Uncage the Soul|\"] = [[{\n \"id\": \"03033\",\n \"type\": \"Event\",\n \"\ - class\": \"Mystic\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"03033\"] = [[{\n \"id\": \"\ - 03033\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spirit.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Astral Travel|\"] = [[{\n \"id\": \"03034\",\n \"alternate_ids\": [ \"60413\"\ - \ ],\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 03034\"] = [[{\n \"id\": \"03034\",\n \"alternate_ids\": [ \"60413\" ],\n \"\ - type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Spirit Athame (1)|\"] = [[{\n \"id\": \"03035\",\n \"type\": \"Asset\",\n \"\ - class\": \"Mystic\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03035\"\ - ] = [[{\n \"id\": \"03035\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Lantern|\"] = [[{\n \"id\"\ - : \"03036\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\":\ - \ false\n}]]\r\nallCards[\"03036\"] = [[{\n \"id\": \"03036\",\n \"type\": \"\ - Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Gravedigger's\ - \ Shovel|\"] = [[{\n \"id\": \"03037\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03037\"] =\ - \ [[{\n \"id\": \"03037\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Item. Tool. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Hiding Spot|\"] = [[{\n \"\ - id\": \"03038\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Tactic. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"03038\"] = [[{\n \"id\": \"03038\",\n \"type\": \"\ - Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Trick.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Resourceful|\"] = [[{\n \"id\": \"03039\",\n \"type\": \"Skill\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"03039\"] = [[{\n \"id\": \"\ - 03039\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Overzealous|\"] = [[{\n \"id\": \"03040\",\n \"type\": \"\ - Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\"\ - : false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"\ - 03040\"] = [[{\n \"id\": \"03040\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"Drawing the Sign|\"] =\ - \ [[{\n \"id\": \"03041\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Pact. Madness.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"03041\"] = [[{\n \"id\"\ - : \"03041\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Pact. Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\"\ - : 1\n}]]\r\nallCards[\"The Thing That Follows|\"] = [[{\n \"id\": \"03042\",\n\ - \ \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Curse.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n\ - }]]\r\nallCards[\"03042\"] = [[{\n \"id\": \"03042\",\n \"type\": \"Enemy\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Curse.\",\n \"permanent\"\ - : false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"\ - The Man in the Pallid Mask|\"] = [[{\n \"id\": \"03059\",\n \"type\": \"Enemy\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Elite.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"03059\"] = [[{\n \"id\": \"\ - 03059\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Humanoid. Elite.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"\ - Constance Dumaine|Sociable Hostess\"] = [[{\n \"id\": \"03076a\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"03076a\"] = [[{\n \"id\":\ - \ \"03076a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Constance Dumaine|\"] = [[{\n \"id\": \"03076a\",\n \"type\": \"Asset\",\n \ - \ \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Jordan Perry|Dignified Financier\"]\ - \ = [[{\n \"id\": \"03077\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"03077\"] = [[{\n \"id\": \"03077\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"Jordan Perry|\"] = [[{\n \"\ - id\": \"03077\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Ishimaru Haruko|Costume Designer\"] = [[{\n \"id\": \"03078\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"03078\"] = [[{\n \"id\": \"\ - 03078\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Ishimaru Haruko|\"] = [[{\n \"id\": \"03078\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Sebastien Moreau|Impassioned Producer\"\ - ] = [[{\n \"id\": \"03079\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"03079\"] = [[{\n \"id\": \"03079\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"Sebastien Moreau|\"] = [[{\n\ - \ \"id\": \"03079\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\ - \nallCards[\"Ashleigh Clarke|Talented Entertainer\"] = [[{\n \"id\": \"03080\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03080\"]\ - \ = [[{\n \"id\": \"03080\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Bystander.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Ashleigh Clarke|\"] = [[{\n \"id\": \"03080\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Green Man Medallion|Hour of\ - \ the Huntress\"] = [[{\n \"id\": \"98002\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"98002\"] = [[{\n \"id\": \"98002\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Green Man\ - \ Medallion|\"] = [[{\n \"id\": \"98002\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Sacrificial Beast|\"] = [[{\n \"id\": \"\ - 98003\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Monster. Dark Young.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\n\ - allCards[\"98003\"] = [[{\n \"id\": \"98003\",\n \"type\": \"Enemy\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Monster. Dark Young.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"Heroic Rescue|\"] = [[{\n \"\ - id\": \"03106\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"03106\"] = [[{\n \"id\": \"03106\",\n \"type\": \"\ - Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Combat Training (1)|\"] = [[{\n \"id\": \"03107\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Guardian\",\n \"traits\": \"Talent. Composure.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03107\"\ - ] = [[{\n \"id\": \"03107\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Anatomical Diagrams|\"] = [[{\n \"\ - id\": \"03108\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\"\ - : \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"03108\"] = [[{\n \"id\": \"03108\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Scientific Theory\ - \ (1)|\"] = [[{\n \"id\": \"03109\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"03109\"] = [[{\n \"id\": \"\ - 03109\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\ - \ Composure.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Knuckleduster|\"] = [[{\n \"id\": \"03110\",\n \"type\": \"\ - Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Melee. Illicit.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 03110\"] = [[{\n \"id\": \"03110\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Item. Weapon. Melee. Illicit.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Moxie (1)|\"\ - ] = [[{\n \"id\": \"03111\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"03111\"] = [[{\n \"id\": \"03111\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Composure.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - David Renfield|Esteemed Eschatologist\"] = [[{\n \"id\": \"03112\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Patron.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 03112\"] = [[{\n \"id\": \"03112\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"David Renfield|\"] = [[{\n\ - \ \"id\": \"03112\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Grounded (1)|\"] = [[{\n \"id\": \"03113\",\n \"\ - type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent. Composure.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 03113\"] = [[{\n \"id\": \"03113\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Cherished Keepsake|\"] = [[{\n\ - \ \"id\": \"03114\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"03114\"] = [[{\n \"id\": \"03114\",\n \"type\": \"\ - Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Plucky\ - \ (1)|\"] = [[{\n \"id\": \"03115\",\n \"type\": \"Asset\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Talent. Composure.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"03115\"] = [[{\n \"id\": \"\ - 03115\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Talent. Composure.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Say Your Prayers|\"] = [[{\n \"id\": \"03116\",\n\ - \ \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Desperate.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 03116\"] = [[{\n \"id\": \"03116\",\n \"type\": \"Skill\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Desperate.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Desperate Search|\"] = [[{\n \"id\"\ - : \"03117\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Desperate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"03117\"] = [[{\n \"id\": \"03117\",\n \"type\": \"Skill\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Desperate.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Reckless Assault|\"\ - ] = [[{\n \"id\": \"03118\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Desperate.\",\n \"level\": 0,\n \"permanent\": false,\n \ - \ \"weakness\": false\n}]]\r\nallCards[\"03118\"] = [[{\n \"id\": \"03118\",\n\ - \ \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Desperate.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Run For Your Life|\"] = [[{\n \"id\": \"03119\",\n \"type\": \"Skill\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Desperate.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"03119\"] = [[{\n \"id\": \"\ - 03119\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Desperate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Mr. Peabody|Historical Society Curator\"] = [[{\n \"id\": \"\ - 03141\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally. Historical Society.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"03141\"] = [[{\n \"id\": \"03141\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Historical Society.\",\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mr. Peabody|\"\ - ] = [[{\n \"id\": \"03141\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Historical Society.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Clasp of Black Onyx|A Gift Unlooked For\"\ - ] = [[{\n \"id\": \"03142\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"03142\"] = [[{\n \"id\": \"03142\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"Clasp of Black Onyx|\"] = [[{\n\ - \ \"id\": \"03142\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\ - \nallCards[\"The Tattered Cloak|Regalia Dementia\"] = [[{\n \"id\": \"03143\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Clothing.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03143\"]\ - \ = [[{\n \"id\": \"03143\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Clothing.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"The Tattered Cloak|\"] = [[{\n \"id\": \"03143\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Clothing.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Trench Knife|\"\ - ] = [[{\n \"id\": \"03147\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"03147\"] = [[{\n \"id\": \"\ - 03147\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Ambush (1)|\"] = [[{\n \"id\": \"03148\",\n \"type\"\ - : \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03148\"\ - ] = [[{\n \"id\": \"03148\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Charles Ross, Esq.|Acquisitions and Solicitation\"\ - ] = [[{\n \"id\": \"03149\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"03149\"] = [[{\n \"id\": \"03149\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Patron.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Charles Ross, Esq.|\"] = [[{\n \"id\": \"03149\",\n \"type\": \"Asset\",\n \ - \ \"class\": \"Seeker\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Forewarned\ - \ (1)|\"] = [[{\n \"id\": \"03150\",\n \"type\": \"Event\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"03150\"] = [[{\n \"id\": \"03150\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Dario El-Amin|Unscrupulous Investor\"] = [[{\n \"id\": \"03151\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Patron.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 03151\"] = [[{\n \"id\": \"03151\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"Dario El-Amin|\"] = [[{\n \ - \ \"id\": \"03151\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Sneak Attack (2)|\"] = [[{\n \"id\": \"03152\",\n\ - \ \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n\ - \ \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 03152\"] = [[{\n \"id\": \"03152\",\n \"type\": \"Event\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Storm of Spirits|\"] = [[{\n \"id\"\ - : \"03153\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\":\ - \ \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"03153\"] = [[{\n \"id\": \"03153\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Book of Shadows\ - \ (1)|\"] = [[{\n \"id\": \"03154\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"03154\"] = [[{\n \"id\": \"03154\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Fight or Flight|\"] = [[{\n \"id\": \"03155\",\n \"type\": \"Event\",\n \"\ - class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"03155\"] = [[{\n \"id\": \"\ - 03155\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"A Test of Will (1)|\"] = [[{\n \"id\": \"03156\",\n \"type\"\ - : \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03156\"\ - ] = [[{\n \"id\": \"03156\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Spirit.\",\n \"level\": 1,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Devil's Luck (1)|\"] = [[{\n \"id\": \"\ - 03157\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Fortune.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"03157\"] = [[{\n \"id\": \"03157\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 1,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Calling in\ - \ Favors|\"] = [[{\n \"id\": \"03158\",\n \"type\": \"Event\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Favor.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"03158\"] = [[{\n \"id\": \"03158\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Favor.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Split the Angle|Ire of the Void\"] = [[{\n \"id\": \"98008\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"98008\"] = [[{\n \"id\": \"\ - 98008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Split the Angle|\"] = [[{\n \"id\": \"98008\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Vengeful Hound|\"] = [[{\n \"id\": \"98009\"\ - ,\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster.\ - \ Extradimensional. Tindalos.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"98009\"] = [[{\n \"id\": \"98009\",\n \"type\": \"Enemy\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Extradimensional. Tindalos.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"\\\"I'll see\ - \ you in hell!\\\"|\"] = [[{\n \"id\": \"03189\",\n \"type\": \"Event\",\n \ - \ \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03189\"] = [[{\n\ - \ \"id\": \"03189\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\".45 Automatic (2)|\"] = [[{\n \"id\": \"03190\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon.\ - \ Firearm.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"\ - count\": 4\n }\n}]]\r\nallCards[\"03190\"] = [[{\n \"id\": \"03190\",\n \"\ - type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon.\ - \ Firearm.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"\ - count\": 4\n }\n}]]\r\nallCards[\"Logical Reasoning|\"] = [[{\n \"id\": \"03191\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 03191\"] = [[{\n \"id\": \"03191\",\n \"type\": \"Event\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Archaic Glyphs (3)|Guiding Stones\"\ - ] = [[{\n \"id\": \"03192\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"03192\"] = [[{\n \"id\": \"03192\",\n \"type\": \"\ - Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Archaic Glyphs\ - \ (3)|\"] = [[{\n \"id\": \"03192\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Archaic Glyphs (3)|Prophecy Foretold\"\ - ] = [[{\n \"id\": \"03193\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"03193\"] = [[{\n \"id\": \"03193\",\n \"type\": \"\ - Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Archaic Glyphs\ - \ (3)|\"] = [[{\n \"id\": \"03193\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Cheap Shot|\"] = [[{\n \"id\": \"03194\"\ - ,\n \"alternate_ids\": [ \"60312\" ],\n \"type\": \"Event\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"03194\"] = [[{\n \"id\": \"03194\"\ - ,\n \"alternate_ids\": [ \"60312\" ],\n \"type\": \"Event\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Pickpocketing (2)|\"] = [[{\n \"id\"\ - : \"03195\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"\ - Talent. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"03195\"] = [[{\n \"id\": \"03195\",\n \"type\": \"\ - Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent. Illicit.\",\n \"level\"\ - : 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Quantum\ - \ Flux|\"] = [[{\n \"id\": \"03196\",\n \"type\": \"Event\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"03196\"] = [[{\n \"id\": \"03196\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Recharge (2)|\"] = [[{\n \"id\": \"03197\",\n \"type\": \"Event\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"03197\"] = [[{\n \"id\": \"03197\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Madame Labranche|Mysterious Benefactress\"] = [[{\n \"id\": \"03198\",\n \"\ - type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Patron.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 03198\"] = [[{\n \"id\": \"03198\",\n \"type\": \"Asset\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Madame Labranche|\"] = [[{\n\ - \ \"id\": \"03198\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Ally. Patron.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Snare Trap (2)|\"] = [[{\n \"id\": \"03199\",\n \"\ - type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trap. Improvised.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 03199\"] = [[{\n \"id\": \"03199\",\n \"type\": \"Event\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Trap. Improvised.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Lost Soul|\"] = [[{\n \"id\"\ - : \"03227\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Madness. Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\n\ - allCards[\"03227\"] = [[{\n \"id\": \"03227\",\n \"type\": \"Treachery\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"Inspiring Presence|\"] = [[{\n\ - \ \"id\": \"03228\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"03228\"] = [[{\n \"id\": \"03228\",\n \"type\": \"\ - Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mano a\ - \ Mano (1)|\"] = [[{\n \"id\": \"03229\",\n \"type\": \"Event\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Spirit. Bold.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"03229\"] = [[{\n \"id\": \"\ - 03229\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Spirit. Bold.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"First Aid (3)|\"] = [[{\n \"id\": \"03230\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent. Science.\",\n \"\ - level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n\ - \ \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 4\n \ - \ }\n}]]\r\nallCards[\"03230\"] = [[{\n \"id\": \"03230\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Talent. Science.\",\n \"level\"\ - : 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Supply\",\n \"count\": 4\n }\n}]]\r\nallCards[\"\ - Eureka!|\"] = [[{\n \"id\": \"03231\",\n \"type\": \"Skill\",\n \"class\":\ - \ \"Seeker\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"03231\"] = [[{\n \"id\": \"03231\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Shortcut (2)|\"] = [[{\n \"id\": \"03232\",\n \"type\": \"Event\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"03232\"] = [[{\n \"id\": \"\ - 03232\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\ - \ Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"\\\"Watch this!\\\"|\"] = [[{\n \"id\": \"03233\",\n \"type\"\ - : \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03233\"\ - ] = [[{\n \"id\": \"03233\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\".41 Derringer (2)|\"] = [[{\n \"id\": \"\ - 03234\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item.\ - \ Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"\ - weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"03234\"] = [[{\n \"id\"\ - : \"03234\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"\ - Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Torrent of Power|\"] = [[{\n\ - \ \"id\": \"03235\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"03235\"] = [[{\n \"id\": \"03235\",\n \"type\": \"\ - Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Scrying\ - \ (3)|\"] = [[{\n \"id\": \"03236\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"03236\"] = [[{\n \"id\"\ - : \"03236\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\":\ - \ \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"\ - count\": 3\n }\n}]]\r\nallCards[\"Waylay|\"] = [[{\n \"id\": \"03237\",\n \"\ - type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic.\",\n \ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 03237\"] = [[{\n \"id\": \"03237\",\n \"type\": \"Event\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"A Chance Encounter (2)|\"] = [[{\n \ - \ \"id\": \"03238\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"03238\"] = [[{\n \"id\": \"03238\",\n \"type\": \"\ - Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\"\ - : 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Emergency\ - \ Cache (3)|\"] = [[{\n \"id\": \"03239\",\n \"type\": \"Event\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Supply.\",\n \"level\": 3,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"03239\"] = [[{\n \"id\": \"\ - 03239\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Supply.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"On the Hunt|\"] = [[{\n \"id\": \"03263\",\n \"type\": \"\ - Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03263\"\ - ] = [[{\n \"id\": \"03263\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Stick to the Plan (3)|\"] = [[{\n \"id\"\ - : \"03264\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n\ - }]]\r\nallCards[\"03264\"] = [[{\n \"id\": \"03264\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \ - \ \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Guidance|\"]\ - \ = [[{\n \"id\": \"03265\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"03265\"] = [[{\n \"id\": \"03265\",\n \"\ - type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Arcane Insight (4)|\"] = [[{\n \"id\": \"03266\",\n \"type\": \"Asset\",\n \ - \ \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"03266\"]\ - \ = [[{\n \"id\": \"03266\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"Narrow Escape|\"] = [[{\n \"id\"\ - : \"03267\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"\ - Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"03267\"] = [[{\n \"id\": \"03267\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Suggestion (4)|\"\ - ] = [[{\n \"id\": \"03268\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"03268\"] = [[{\n \"id\": \"03268\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Spell.\",\n\ - \ \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"St. Hubert's Key|Cleansing Fire\"] = [[{\n \"id\": \"\ - 03269\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item.\ - \ Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"03269\"] = [[{\n \"id\": \"03269\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"St. Hubert's\ - \ Key|\"] = [[{\n \"id\": \"03269\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"Ward of Protection (2)|\"]\ - \ = [[{\n \"id\": \"03270\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell. Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"03270\"] = [[{\n \"id\": \"03270\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Arcane Initiate (3)|\"] = [[{\n \"id\": \"03271\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 3,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"doom\",\n \"type\": \"Doom\",\n \"count\": 1\n }\n}]]\r\nallCards[\"\ - 03271\"] = [[{\n \"id\": \"03271\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"doom\",\n \ - \ \"type\": \"Doom\",\n \"count\": 1\n }\n}]]\r\nallCards[\"\\\"Not without\ - \ a fight!\\\"|\"] = [[{\n \"id\": \"03272\",\n \"type\": \"Skill\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"03272\"] = [[{\n \"id\": \"\ - 03272\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"True Survivor (3)|\"] = [[{\n \"id\": \"03273\",\n \"type\"\ - : \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\"\ - : 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03273\"\ - ] = [[{\n \"id\": \"03273\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Mysteries Remain|\"] = [[{\n \"id\": \"\ - 98005\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 98005\"] = [[{\n \"id\": \"98005\",\n \"type\": \"Event\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"The Dirge of Reason|\"] = [[{\n \"id\": \"98006\"\ - ,\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"98006\"] =\ - \ [[{\n \"id\": \"98006\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"\\\"Eat lead!\\\" (2)|\"] = [[{\n \"id\": \"03304\",\n \"\ - type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \ - \ \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 03304\"] = [[{\n \"id\": \"03304\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Armor of Ardennes (5)|\"] = [[{\n \"\ - id\": \"03305\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Item. Armor. Relic.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"03305\"] = [[{\n \"id\": \"03305\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Armor. Relic.\",\n\ - \ \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Eidetic Memory (3)|\"] = [[{\n \"id\": \"03306\",\n \"type\": \"Event\",\n \ - \ \"class\": \"Seeker\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"03306\"] = [[{\n \"id\": \"\ - 03306\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spirit.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - No Stone Unturned (5)|\"] = [[{\n \"id\": \"03307\",\n \"type\": \"Event\",\n\ - \ \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 5,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03307\"] = [[{\n\ - \ \"id\": \"03307\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Insight.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Charon's Obol (1)|The Ferryman's Pay\"] = [[{\n \"\ - id\": \"03308\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Item. Relic.\",\n \"level\": 1,\n \"permanent\": true,\n \"weakness\":\ - \ false\n}]]\r\nallCards[\"03308\"] = [[{\n \"id\": \"03308\",\n \"type\": \"\ - Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\"\ - : 1,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Charon's\ - \ Obol (1)|\"] = [[{\n \"id\": \"03308\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 1,\n \"permanent\"\ - : true,\n \"weakness\": false\n}]]\r\nallCards[\"Lupara (3)|\"] = [[{\n \"id\"\ - : \"03309\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"\ - Item. Weapon. Firearm. Illicit.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Ammo\",\n \"count\": 2\n }\n}]]\r\nallCards[\"03309\"] = [[{\n \"id\"\ - : \"03309\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"\ - Item. Weapon. Firearm. Illicit.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Ammo\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Cheat Death (5)|\"] = [[{\n\ - \ \"id\": \"03310\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Trick. Fated.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"03310\"] = [[{\n \"id\": \"03310\",\n \"type\": \"\ - Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick. Fated.\",\n \"level\"\ - : 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Time Warp\ - \ (2)|\"] = [[{\n \"id\": \"03311\",\n \"type\": \"Event\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell. Paradox.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"03311\"] = [[{\n \"id\": \"\ - 03311\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\ - \ Paradox.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Seal of the Elder Sign (5)|\"] = [[{\n \"id\": \"03312\",\n\ - \ \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Expert.\"\ - ,\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 03312\"] = [[{\n \"id\": \"03312\",\n \"type\": \"Skill\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell. Expert.\",\n \"level\": 5,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Newspaper (2)|\"] = [[{\n \ - \ \"id\": \"03313\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Item.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"03313\"] = [[{\n \"id\": \"03313\",\n \"type\": \"\ - Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item.\",\n \"level\": 2,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Infighting\ - \ (3)|\"] = [[{\n \"id\": \"03314\",\n \"type\": \"Event\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Trick.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"03314\"] = [[{\n \"id\": \"03314\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trick.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Key of Ys (5)|Let the Storm Rage\"] = [[{\n \"id\": \"03315\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\"\ - : 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"03315\"\ - ] = [[{\n \"id\": \"03315\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Relic.\",\n \"level\": 5,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Key of Ys (5) (Taboo)|Let the Storm\ - \ Rage\"] = [[{\n \"id\": \"03315-t\",\n \"type\": \"Asset\",\n \"class\":\ - \ \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 5,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Key of Ys (5)|\"] = [[{\n \ - \ \"id\": \"03315\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Relic.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Key of Ys (5) (Taboo)|\"] = [[{\n \"id\": \"03315-t\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\"\ - ,\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Foolishness|Foolish Cat of Ulthar\"] = [[{\n \"id\": \"98011\",\n \"type\":\ - \ \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Creature. Dreamlands.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"98011\"]\ - \ = [[{\n \"id\": \"98011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \ - \ \"weakness\": false\n}]]\r\nallCards[\"Foolishness|\"] = [[{\n \"id\": \"98011\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Creature.\ - \ Dreamlands.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - To Fight the Black Wind|\"] = [[{\n \"id\": \"98012\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Task. Dreamlands.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"98012\"] = [[{\n \"id\": \"\ - 98012\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Task. Dreamlands.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\ - \nallCards[\"Leo Anderson|The Expedition Leader\"] = [[{\n \"id\": \"04001\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Veteran. Wayfarer.\"\n}]]\r\nallCards[\"04001\"] = [[{\n \"id\": \"04001\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran.\ - \ Wayfarer.\"\n}]]\r\nallCards[\"Leo Anderson (promo version)|The Expedition Leader\"\ - ] = [[{\n \"id\": \"04001-promo\",\n \"type\": \"Investigator\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Veteran. Wayfarer.\"\n}]]\r\nallCards[\"Leo Anderson\ - \ (Parallel)|The Expedition Leader\"] = [[{\n \"id\": \"04001-p\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran. Wayfarer.\"\ - \n}]]\r\nallCards[\"Leo Anderson (Parallel Front)|The Expedition Leader\"] = [[{\n\ - \ \"id\": \"04001-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Veteran. Wayfarer.\"\n}]]\r\nallCards[\"Leo Anderson (Parallel\ - \ Back)|The Expedition Leader\"] = [[{\n \"id\": \"04001-pb\",\n \"type\": \"\ - Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran. Wayfarer.\"\ - \n}]]\r\nallCards[\"Leo Anderson|\"] = [[{\n \"id\": \"04001-m\",\n \"type\"\ - : \"Minicard\"\n}]]\r\nallCards[\"Leo Anderson|Promo version\"] = [[{\n \"id\"\ - : \"04001-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Ursula Downs|The\ - \ Explorer\"] = [[{\n \"id\": \"04002\",\n \"type\": \"Investigator\",\n \"\ - class\": \"Seeker\",\n \"traits\": \"Wayfarer.\"\n}]]\r\nallCards[\"04002\"]\ - \ = [[{\n \"id\": \"04002\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Wayfarer.\"\n}]]\r\nallCards[\"Ursula Downs (promo\ - \ version)|The Explorer\"] = [[{\n \"id\": \"04002-promo\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Wayfarer.\"\n}]]\r\nallCards[\"Ursula\ - \ Downs (Parallel)|The Explorer\"] = [[{\n \"id\": \"04002-p\",\n \"type\":\ - \ \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Wayfarer.\"\n}]]\r\ - \nallCards[\"Ursula Downs (Parallel Front)|The Explorer\"] = [[{\n \"id\": \"\ - 04002-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\"\ - : \"Wayfarer.\"\n}]]\r\nallCards[\"Ursula Downs (Parallel Back)|The Explorer\"\ - ] = [[{\n \"id\": \"04002-pb\",\n \"type\": \"Investigator\",\n \"class\":\ - \ \"Seeker\",\n \"traits\": \"Wayfarer.\"\n}]]\r\nallCards[\"Ursula Downs|\"\ - ] = [[{\n \"id\": \"04002-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"\ - Ursula Downs|Promo version\"] = [[{\n \"id\": \"04002-promo-m\",\n \"type\"\ - : \"Minicard\"\n}]]\r\nallCards[\"Finn Edwards|The Bootlegger\"] = [[{\n \"id\"\ - : \"04003\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Criminal.\"\n}]]\r\nallCards[\"04003\"] = [[{\n \"id\": \"04003\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\ - \n}]]\r\nallCards[\"Finn Edwards (promo version)|The Bootlegger\"] = [[{\n \"\ - id\": \"04003-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"Finn Edwards (Parallel)|The\ - \ Bootlegger\"] = [[{\n \"id\": \"04003-p\",\n \"type\": \"Investigator\",\n\ - \ \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"Finn\ - \ Edwards (Parallel Front)|The Bootlegger\"] = [[{\n \"id\": \"04003-pf\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\ - \n}]]\r\nallCards[\"Finn Edwards (Parallel Back)|The Bootlegger\"] = [[{\n \"\ - id\": \"04003-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n\ - \ \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"Finn Edwards|\"] = [[{\n \"id\"\ - : \"04003-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Finn Edwards|Promo\ - \ version\"] = [[{\n \"id\": \"04003-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\ - \nallCards[\"Father Mateo|The Priest\"] = [[{\n \"id\": \"04004\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Believer. Warden.\"\ - \n}]]\r\nallCards[\"04004\"] = [[{\n \"id\": \"04004\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Believer. Warden.\"\n}]]\r\nallCards[\"\ - Father Mateo (promo version)|The Priest\"] = [[{\n \"id\": \"04004-promo\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Believer.\ - \ Warden.\"\n}]]\r\nallCards[\"Father Mateo (Parallel)|The Priest\"] = [[{\n \ - \ \"id\": \"04004-p\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Believer. Warden.\"\n}]]\r\nallCards[\"Father Mateo (Parallel\ - \ Front)|The Priest\"] = [[{\n \"id\": \"04004-pf\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Believer. Warden.\"\n}]]\r\nallCards[\"\ - Father Mateo (Parallel Back)|The Priest\"] = [[{\n \"id\": \"04004-pb\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Believer.\ - \ Warden.\"\n}]]\r\nallCards[\"Father Mateo|\"] = [[{\n \"id\": \"04004-m\",\n\ - \ \"type\": \"Minicard\"\n}]]\r\nallCards[\"Father Mateo|Promo version\"] = [[{\n\ - \ \"id\": \"04004-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Calvin\ - \ Wright|The Haunted\"] = [[{\n \"id\": \"04005\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Cursed. Drifter.\"\n}]]\r\nallCards[\"\ - 04005\"] = [[{\n \"id\": \"04005\",\n \"type\": \"Investigator\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Cursed. Drifter.\"\n}]]\r\nallCards[\"Calvin\ - \ Wright (promo version)|The Haunted\"] = [[{\n \"id\": \"04005-promo\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Cursed.\ - \ Drifter.\"\n}]]\r\nallCards[\"Calvin Wright (Parallel)|The Haunted\"] = [[{\n\ - \ \"id\": \"04005-p\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Cursed. Drifter.\"\n}]]\r\nallCards[\"Calvin Wright (Parallel\ - \ Front)|The Haunted\"] = [[{\n \"id\": \"04005-pf\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Cursed. Drifter.\"\n}]]\r\nallCards[\"\ - Calvin Wright (Parallel Back)|The Haunted\"] = [[{\n \"id\": \"04005-pb\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Cursed.\ - \ Drifter.\"\n}]]\r\nallCards[\"Calvin Wright|\"] = [[{\n \"id\": \"04005-m\"\ - ,\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Calvin Wright|Promo version\"]\ - \ = [[{\n \"id\": \"04005-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"\ - Mitch Brown|Sole Survivor\"] = [[{\n \"id\": \"04006\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"04006\"] = [[{\n \"id\": \"\ - 04006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Mitch Brown|\"] = [[{\n \"id\": \"04006\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Bought in Blood|\"] = [[{\n \"id\"\ - : \"04007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"\ - 04007\"] = [[{\n \"id\": \"04007\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\"\ - : true\n}]]\r\nallCards[\"Jake Williams|Loyal Companion\"] = [[{\n \"id\": \"\ - 04008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 04008\"] = [[{\n \"id\": \"04008\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Jake Williams|\"] = [[{\n \"id\": \"04008\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Call of the\ - \ Unknown|\"] = [[{\n \"id\": \"04009\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\"\ - : true\n}]]\r\nallCards[\"04009\"] = [[{\n \"id\": \"04009\",\n \"type\": \"\ - Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"Smuggled Goods|\"] = [[{\n \ - \ \"id\": \"04010\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Supply. Illicit.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"04010\"] = [[{\n \"id\": \"04010\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Supply. Illicit.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Finn's Trusty .38|Never Leave\ - \ Home Without It\"] = [[{\n \"id\": \"04011\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04011\"] = [[{\n\ - \ \"id\": \"04011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Finn's Trusty .38|\"] = [[{\n \"id\": \"\ - 04011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Item. Weapon. Firearm. Illicit.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Caught Red-Handed|\"] = [[{\n \"id\": \"04012\",\n \"type\"\ - : \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Blunder.\",\n \"\ - permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"04012\"] = [[{\n\ - \ \"id\": \"04012\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n\ - \ \"traits\": \"Blunder.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"The Codex of Ages|finis omnium nunc est\"] = [[{\n \"id\":\ - \ \"04013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Item. Relic. Tome. Blessed.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"04013\"] = [[{\n \"id\": \"04013\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Tome. Blessed.\",\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Codex of\ - \ Ages|\"] = [[{\n \"id\": \"04013\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item. Relic. Tome. Blessed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Serpents of Yig|\"] = [[{\n \"id\"\ - : \"04014\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Humanoid. Monster. Serpent.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"04014\"] = [[{\n \"id\": \"04014\",\n \"type\": \"Enemy\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Monster. Serpent.\",\n\ - \ \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Until the End\ - \ of Time|\"] = [[{\n \"id\": \"04015\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"04015\"] = [[{\n \"id\": \"04015\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Voice of the Messenger|\"]\ - \ = [[{\n \"id\": \"04016\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse. Pact.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"04016\"] = [[{\n \"id\": \"04016\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Curse. Pact.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"Survival Knife|\"] = [[{\n \ - \ \"id\": \"04017\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"04017\"] = [[{\n \"id\": \"04017\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon.\ - \ Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Venturer|\"] = [[{\n \"id\": \"04018\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - 04018\"] = [[{\n \"id\": \"04018\",\n \"type\": \"Asset\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Trusted|\"\ - ] = [[{\n \"id\": \"04019\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Upgrade.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"04019\"] = [[{\n \"id\": \"04019\",\n \"\ - type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Upgrade.\",\n\ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Reliable (1)|\"] = [[{\n \"id\": \"04020\",\n \"type\": \"Event\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Upgrade.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"04020\"] = [[{\n \"id\": \"\ - 04020\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Upgrade.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Dr. Elli Horowitz|Assistant Curator\"] = [[{\n \"id\": \"04021\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Assistant.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 04021\"] = [[{\n \"id\": \"04021\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Ally. Assistant.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Dr. Elli Horowitz|\"] = [[{\n\ - \ \"id\": \"04021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Ally. Assistant.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Ancient Stone (1)|Unidentified\"] = [[{\n\ - \ \"id\": \"04022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Item. Relic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"04022\"] = [[{\n \"id\": \"04022\",\n \"type\": \"\ - Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ancient\ - \ Stone (1)|\"] = [[{\n \"id\": \"04022\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Tooth of Eztli|Mortal Reminder\"\ - ] = [[{\n \"id\": \"04023\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Relic.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"04023\"] = [[{\n \"id\": \"04023\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Tooth of Eztli|\"] = [[{\n \"id\": \"04023\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Unearth the Ancients|\"] =\ - \ [[{\n \"id\": \"04024\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n\ - \ \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"04024\"] = [[{\n \"id\": \"04024\",\n \"type\": \"\ - Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\":\ - \ 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Treasure\ - \ Hunter (1)|\"] = [[{\n \"id\": \"04025\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"04025\"] = [[{\n \"id\": \"\ - 04025\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally.\ - \ Wayfarer.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Decorated Skull|Doom Begets Doom\"] = [[{\n \"id\": \"04026\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\ - \ Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"04026\"] = [[{\n \"id\": \"04026\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Decorated\ - \ Skull|\"] = [[{\n \"id\": \"04026\",\n \"type\": \"Asset\",\n \"class\":\ - \ \"Rogue\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Eavesdrop|\"] = [[{\n \"id\"\ - : \"04027\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"\ - Insight. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\":\ - \ false\n}]]\r\nallCards[\"04027\"] = [[{\n \"id\": \"04027\",\n \"type\": \"\ - Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Insight. Trick.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"You\ - \ handle this one!\\\"|\"] = [[{\n \"id\": \"04028\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"04028\"] = [[{\n \"id\": \"\ - 04028\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Mists of R'lyeh|\"] = [[{\n \"id\": \"04029\",\n \"type\": \"Asset\",\n \"\ - class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"04029\"]\ - \ = [[{\n \"id\": \"04029\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 4\n }\n}]]\r\nallCards[\"The Chthonian Stone|Stygian Waymark\"\ - ] = [[{\n \"id\": \"04030\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 0,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"04030\"] = [[{\n \"id\": \"\ - 04030\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item.\ - \ Relic. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"The Chthonian Stone|\"] = [[{\n \"id\": \"04030\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\ - \ Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Protective Incantation (1)|\"] = [[{\n \"id\": \"04031\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual. Blessed.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 04031\"] = [[{\n \"id\": \"04031\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Ritual. Blessed.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Dark Prophecy|\"] = [[{\n \ - \ \"id\": \"04032\",\n \"alternate_ids\": [ \"60417\" ],\n \"type\": \"Event\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04032\"] = [[{\n\ - \ \"id\": \"04032\",\n \"alternate_ids\": [ \"60417\" ],\n \"type\": \"Event\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Improvised Weapon|\"\ - ] = [[{\n \"id\": \"04033\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Tactic. Improvised.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"04033\"] = [[{\n \"id\": \"04033\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic.\ - \ Improvised.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Dumb Luck|\"] = [[{\n \"id\": \"04034\",\n \"alternate_ids\"\ - : [ \"60514\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"04034\"] = [[{\n \"id\": \"04034\",\n \"alternate_ids\": [\ - \ \"60514\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Yaotl (1)|Lost Son of Eztli\"] = [[{\n \"id\": \"04035\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Wayfarer.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 04035\"] = [[{\n \"id\": \"04035\",\n \"type\": \"Asset\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Yaotl (1)|\"] = [[{\n \"id\"\ - : \"04035\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Ally. Wayfarer.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Last Chance|\"] = [[{\n \"id\": \"04036\",\n \"type\"\ - : \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Gambit.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04036\"\ - ] = [[{\n \"id\": \"04036\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Backpack|\"] = [[{\n \"id\": \"04037\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n\ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 04037\"] = [[{\n \"id\": \"04037\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Dark Pact|\"] = [[{\n \"id\": \"04038\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n\ - }]]\r\nallCards[\"04038\"] = [[{\n \"id\": \"04038\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"The Price\ - \ of Failure|\"] = [[{\n \"id\": \"04039\",\n \"type\": \"Treachery\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"\ - weakness\": true\n}]]\r\nallCards[\"04039\"] = [[{\n \"id\": \"04039\",\n \"\ - type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n\ - \ \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Doomed|\"] =\ - \ [[{\n \"id\": \"04040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"04040\"] = [[{\n \"id\": \"04040\"\ - ,\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n\ - }]]\r\nallCards[\"Accursed Fate|\"] = [[{\n \"id\": \"04041\",\n \"type\": \"\ - Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"04041\"] = [[{\n \"id\": \"\ - 04041\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"\ - The Bell Tolls|\"] = [[{\n \"id\": \"04042\",\n \"type\": \"Treachery\",\n \ - \ \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"04042\"] = [[{\n \"id\": \"04042\",\n\ - \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Alejandro\ - \ Vela|Renowned Historian\"] = [[{\n \"id\": \"04051\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"04051\"] = [[{\n \"id\": \"\ - 04051\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Alejandro Vela|\"] = [[{\n \"id\": \"04051\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Relic of Ages|\uFFFDA Device, of Some\ - \ Sort\"] = [[{\n \"id\": \"04061\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"04061\"] = [[{\n \"id\": \"04061\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Relic of Ages|\"] = [[{\n \ - \ \"id\": \"04061\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Poisoned|\"] = [[{\n \"id\": \"04102\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Poison.\",\n \"permanent\": true,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"04102\"] = [[{\n \"id\": \"04102\",\n\ - \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Poison.\"\ - ,\n \"permanent\": true,\n \"weakness\": true\n}]]\r\nallCards[\"Eixodolon's\ - \ Note|\"] = [[{\n \"id\": \"70039\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"70039\"] = [[{\n \"id\": \"70039\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Key of Mysteries|\"] = [[{\n\ - \ \"id\": \"70040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Key.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\ - \nallCards[\"70040\"] = [[{\n \"id\": \"70040\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Item. Key.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Mysterious Syringe|\"] = [[{\n \"id\"\ - : \"70041\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Item.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 70041\"] = [[{\n \"id\": \"70041\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Rot Diagram|\"] = [[{\n \"id\": \"70042\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"70042\"] = [[{\n\ - \ \"id\": \"70042\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Rot Diagram|\"] = [[{\n \"id\": \"70043\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"70043\"] = [[{\n \"id\": \"\ - 70043\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Item. Script.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Hunger Diagram|\"] = [[{\n \"id\": \"70044\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"70044\"] = [[{\n \"id\": \"70044\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hunger Diagram|\"\ - ] = [[{\n \"id\": \"70045\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\":\ - \ false\n}]]\r\nallCards[\"70045\"] = [[{\n \"id\": \"70045\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Decay Diagram|\"] = [[{\n \ - \ \"id\": \"70046\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"70046\"] = [[{\n \"id\": \"70046\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Decay Diagram|\"] = [[{\n \ - \ \"id\": \"70047\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Script.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"70047\"] = [[{\n \"id\": \"70047\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Script.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Nautical Prowess|\"] = [[{\n\ - \ \"id\": \"98014\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"98014\"] = [[{\n \"id\": \"98014\",\n \"type\": \"Skill\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Innate. Developed.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Dreams of the Deep|The Deep\ - \ Gate\"] = [[{\n \"id\": \"98015\",\n \"type\": \"Skill\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\"\ - : true\n}]]\r\nallCards[\"98015\"] = [[{\n \"id\": \"98015\",\n \"type\": \"\ - Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"Dreams of the Deep|\"] = [[{\n\ - \ \"id\": \"98015\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\n\ - allCards[\"Scene of the Crime|\"] = [[{\n \"id\": \"04103\",\n \"type\": \"\ - Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight. Bold.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 04103\"] = [[{\n \"id\": \"04103\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Insight. Bold.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Marksmanship (1)|\"] = [[{\n\ - \ \"id\": \"04104\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"04104\"] = [[{\n \"id\": \"04104\",\n \"type\": \"\ - Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Persuasion|\"\ - ] = [[{\n \"id\": \"04105\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Insight. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"04105\"] = [[{\n \"id\": \"04105\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\ - \ Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Shrewd Analysis|\"] = [[{\n \"id\": \"04106\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\"\ - : 0,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"04106\"\ - ] = [[{\n \"id\": \"04106\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": true,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Lucky Cigarette Case|\"] = [[{\n \"id\": \"04107\"\ - ,\n \"alternate_ids\": [ \"60308\" ],\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"04107\"] = [[{\n \"id\": \"04107\"\ - ,\n \"alternate_ids\": [ \"60308\" ],\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Fence (1)|\"] = [[{\n \"id\": \"04108\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Connection.\ - \ Illicit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"04108\"] = [[{\n \"id\": \"04108\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Connection. Illicit.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Arcane\ - \ Research|\"] = [[{\n \"id\": \"04109\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": true,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"04109\"] = [[{\n \"id\": \"04109\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\"\ - ,\n \"level\": 0,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Counterspell (2)|\"] = [[{\n \"id\": \"04110\",\n \"type\": \"Event\",\n \"\ - class\": \"Mystic\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 2,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04110\"] = [[{\n\ - \ \"id\": \"04110\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Spell. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Perseverance|\"] = [[{\n \"id\": \"04111\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 04111\"] = [[{\n \"id\": \"04111\",\n \"type\": \"Event\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Stunning Blow|\"] = [[{\n \"id\": \"\ - 04112\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"04112\"] = [[{\n \"id\": \"04112\",\n \"type\": \"Skill\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ichtaca|The\ - \ Forgotten Guardian\"] = [[{\n \"id\": \"04147\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Ally. Eztli. Wayfarer.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"04147\"] = [[{\n \"id\": \"\ - 04147\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally. Eztli. Wayfarer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\ - \nallCards[\"Ichtaca|\"] = [[{\n \"id\": \"04147\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Ally. Eztli. Wayfarer.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Expedition Journal|\"] = [[{\n\ - \ \"id\": \"04148\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\ - \nallCards[\"04148\"] = [[{\n \"id\": \"04148\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Physical Training (2)|\"] = [[{\n \"\ - id\": \"50001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"50001\"] = [[{\n \"id\": \"50001\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dynamite Blast\ - \ (2)|\"] = [[{\n \"id\": \"50002\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"50002\"] = [[{\n \"id\": \"50002\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Hyperawareness (2)|\"] = [[{\n \"id\": \"50003\",\n \"type\": \"Asset\",\n \ - \ \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"50003\"] = [[{\n \"id\": \"\ - 50003\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Barricade (3)|\"] = [[{\n \"id\": \"50004\",\n \"type\": \"Event\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"50004\"] = [[{\n \"id\": \"\ - 50004\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\ - \ Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Hard Knocks (2)|\"] = [[{\n \"id\": \"50005\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\"\ - : 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"50005\"\ - ] = [[{\n \"id\": \"50005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Hot Streak (2)|\"] = [[{\n \"id\": \"50006\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 50006\"] = [[{\n \"id\": \"50006\",\n \"type\": \"Event\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Arcane Studies (2)|\"] = [[{\n \"id\"\ - : \"50007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\":\ - \ \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"50007\"] = [[{\n \"id\": \"50007\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mind Wipe (3)|\"\ - ] = [[{\n \"id\": \"50008\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"50008\"] = [[{\n \"id\": \"50008\",\n \"type\": \"\ - Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dig Deep (2)|\"\ - ] = [[{\n \"id\": \"50009\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"50009\"] = [[{\n \"id\": \"50009\",\n \"\ - type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \ - \ \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Rabbit's Foot (3)|\"] = [[{\n \"id\": \"50010\",\n \"type\": \"Asset\",\n \"\ - class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\": 3,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"50010\"] = [[{\n\ - \ \"id\": \"50010\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Item. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Second Wind|\"] = [[{\n \"id\": \"04149\",\n \"type\"\ - : \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Bold.\",\n \ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 04149\"] = [[{\n \"id\": \"04149\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Spirit. Bold.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Take the Initiative|\"] = [[{\n\ - \ \"id\": \"04150\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Practiced. Bold.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"04150\"] = [[{\n \"id\": \"04150\",\n \"\ - type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced. Bold.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Well Prepared (2)|\"] = [[{\n \"id\": \"04151\",\n \"type\": \"Asset\",\n \"\ - class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"04151\"] = [[{\n \"id\": \"\ - 04151\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Truth from Fiction|\"] = [[{\n \"id\": \"04152\",\n \"type\"\ - : \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Secret\",\n \"count\": 2\n }\n}]]\r\nallCards[\"\ - 04152\"] = [[{\n \"id\": \"04152\",\n \"type\": \"Event\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Secret\",\n \"count\": 2\n }\n}]]\r\nallCards[\"True Understanding|\"\ - ] = [[{\n \"id\": \"04153\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"04153\"] = [[{\n \"id\": \"04153\",\n \"\ - type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Quick Study (2)|\"] = [[{\n \"id\": \"04154\",\n \"type\": \"Asset\",\n \"\ - class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"04154\"] = [[{\n \"id\": \"\ - 04154\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Hatchet Man|\"] = [[{\n \"id\": \"04155\",\n \"type\": \"Skill\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"04155\"] = [[{\n \"id\": \"\ - 04155\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Practiced.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - High Roller (2)|\"] = [[{\n \"id\": \"04156\",\n \"type\": \"Asset\",\n \"\ - class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"04156\"] = [[{\n \"id\": \"\ - 04156\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Enraptured|\"] = [[{\n \"id\": \"04157\",\n \"type\": \"Skill\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"04157\"] = [[{\n \"id\": \"\ - 04157\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Recall the Future (2)|\"] = [[{\n \"id\": \"04158\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Mystic\",\n \"traits\": \"Augury. Ritual.\",\n \"level\": 2,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04158\"] =\ - \ [[{\n \"id\": \"04158\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n\ - \ \"traits\": \"Augury. Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Try and Try Again (1)|\"] = [[{\n \"\ - id\": \"04159\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Talent.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Try\",\n \"count\"\ - : 3\n }\n}]]\r\nallCards[\"04159\"] = [[{\n \"id\": \"04159\",\n \"type\":\ - \ \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Try\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - Cornered (2)|\"] = [[{\n \"id\": \"04160\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"04160\"] = [[{\n \"id\": \"\ - 04160\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Relic of Ages|Forestalling the Future\"] = [[{\n \"id\": \"\ - 04191\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 04191\"] = [[{\n \"id\": \"04191\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Relic of Ages|\"] = [[{\n \"id\": \"04191\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Intrepid|\"\ - ] = [[{\n \"id\": \"04192\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"04192\"] = [[{\n \"id\": \"04192\",\n \"\ - type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Custom Ammunition (3)|\"] = [[{\n \"id\": \"04193\",\n \"type\": \"Event\",\n\ - \ \"class\": \"Guardian\",\n \"traits\": \"Upgrade. Supply. Blessed.\",\n \"\ - level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 04193\"] = [[{\n \"id\": \"04193\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Upgrade. Supply. Blessed.\",\n \"level\": 3,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Otherworldly\ - \ Compass (2)|\"] = [[{\n \"id\": \"04194\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"04194\"] = [[{\n \"id\": \"\ - 04194\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item.\ - \ Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Expose Weakness (3)|\"] = [[{\n \"id\": \"04195\",\n \"type\"\ - : \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\"\ - : 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04195\"\ - ] = [[{\n \"id\": \"04195\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Insight.\",\n \"level\": 3,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Lola Santiago (3)|No-Nonsense Archaeologist\"\ - ] = [[{\n \"id\": \"04196\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"04196\"] = [[{\n \"id\": \"04196\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Wayfarer.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Lola Santiago (3)|\"] = [[{\n \"id\": \"04196\",\n \"type\": \"Asset\",\n \"\ - class\": \"Rogue\",\n \"traits\": \"Ally. Wayfarer.\",\n \"level\": 3,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Olive McBride|Will\ - \ Try Anything Once\"] = [[{\n \"id\": \"04197\",\n \"type\": \"Asset\",\n \ - \ \"class\": \"Mystic\",\n \"traits\": \"Ally. Witch.\",\n \"level\": 0,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04197\"] = [[{\n\ - \ \"id\": \"04197\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Ally. Witch.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Olive McBride|\"] = [[{\n \"id\": \"04197\",\n \"\ - type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Witch.\",\n\ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Defiance (2)|\"] = [[{\n \"id\": \"04198\",\n \"type\": \"Skill\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"04198\"] = [[{\n \"id\": \"\ - 04198\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate.\ - \ Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Premonition|\"] = [[{\n \"id\": \"04199\",\n \"type\": \"\ - Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04199\"] =\ - \ [[{\n \"id\": \"04199\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n\ - \ \"traits\": \"Augury.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Live and Learn|\"] = [[{\n \"id\": \"04200\",\n \"\ - alternate_ids\": [ \"60516\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"04200\"] = [[{\n \"id\": \"04200\",\n \"\ - alternate_ids\": [ \"60516\" ],\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Take Heart|\"] = [[{\n \"id\": \"04201\"\ - ,\n \"alternate_ids\": [ \"60519\" ],\n \"type\": \"Skill\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"04201\"] = [[{\n \"id\": \"04201\"\ - ,\n \"alternate_ids\": [ \"60519\" ],\n \"type\": \"Skill\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Against All Odds (2)|\"] = [[{\n \"\ - id\": \"04202\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"04202\"] = [[{\n \"id\": \"04202\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 2,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Trench Coat|\"\ - ] = [[{\n \"id\": \"04203\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Clothing.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"04203\"] = [[{\n \"id\": \"04203\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Clothing.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Ornate Bow (3)|\"] = [[{\n \"id\": \"04204\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Item. Relic. Weapon. Ranged.\",\n \"level\":\ - \ 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Ammo\",\n \"count\": 1\n }\n}]]\r\nallCards[\"\ - 04204\"] = [[{\n \"id\": \"04204\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item. Relic. Weapon. Ranged.\",\n \"level\": 3,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Ammo\",\n \"count\": 1\n }\n}]]\r\nallCards[\"\ - M1918 BAR (4)|\"] = [[{\n \"id\": \"04229\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Ammo\",\n \"count\": 8\n }\n}]]\r\nallCards[\"\ - 04229\"] = [[{\n \"id\": \"04229\",\n \"type\": \"Asset\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 4,\n \"\ - permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"\ - resource\",\n \"type\": \"Ammo\",\n \"count\": 8\n }\n}]]\r\nallCards[\"\ - Ancient Stone (4)|Knowledge of the Elders\"] = [[{\n \"id\": \"04230\",\n \"\ - type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n\ - \ \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 04230\"] = [[{\n \"id\": \"04230\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"Ancient Stone (4)|\"] = [[{\n\ - \ \"id\": \"04230\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Ancient Stone (4)|Minds in Harmony\"] = [[{\n \"id\"\ - : \"04231\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"04231\"] = [[{\n \"id\": \"04231\",\n \"type\": \"\ - Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\"\ - : 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ancient\ - \ Stone (4)|\"] = [[{\n \"id\": \"04231\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Slip Away|\"] = [[{\n \"id\"\ - : \"04232\",\n \"alternate_ids\": [ \"60314\" ],\n \"type\": \"Event\",\n \"\ - class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"04232\"] = [[{\n \"id\": \"\ - 04232\",\n \"alternate_ids\": [ \"60314\" ],\n \"type\": \"Event\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Pay Day (1)|\"] = [[{\n \"id\": \"\ - 04233\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Illicit.\ - \ Fated.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"04233\"] = [[{\n \"id\": \"04233\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Illicit. Fated.\",\n \"level\": 1,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sacrifice (1)|\"\ - ] = [[{\n \"id\": \"04234\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Ritual.\",\n \"level\": 1,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"04234\"] = [[{\n \"id\": \"04234\",\n \"\ - type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"\ - level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Crystalline Elder Sign (3)|\"] = [[{\n \"id\": \"04235\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic. Blessed.\",\n \"level\"\ - : 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04235\"\ - ] = [[{\n \"id\": \"04235\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Item. Relic. Blessed.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"On Your Own (3)|\"] = [[{\n\ - \ \"id\": \"04236\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"04236\"] = [[{\n \"id\": \"04236\",\n \"type\": \"\ - Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\"\ - : 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Body of\ - \ a Yithian|Captive in Another Form\"] = [[{\n \"id\": \"04244\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Yithian.\"\ - \n}]]\r\nallCards[\"04244\"] = [[{\n \"id\": \"04244\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Yithian.\"\n}]]\r\nallCards[\"\ - Body of a Yithian (promo version)|Captive in Another Form\"] = [[{\n \"id\":\ - \ \"04244-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n\ - \ \"traits\": \"Monster. Yithian.\"\n}]]\r\nallCards[\"Body of a Yithian (Parallel)|Captive\ - \ in Another Form\"] = [[{\n \"id\": \"04244-p\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Yithian.\"\n}]]\r\nallCards[\"\ - Body of a Yithian (Parallel Front)|Captive in Another Form\"] = [[{\n \"id\"\ - : \"04244-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Monster. Yithian.\"\n}]]\r\nallCards[\"Body of a Yithian (Parallel\ - \ Back)|Captive in Another Form\"] = [[{\n \"id\": \"04244-pb\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Yithian.\"\ - \n}]]\r\nallCards[\"Body of a Yithian|\"] = [[{\n \"id\": \"04244-m\",\n \"\ - type\": \"Minicard\"\n}]]\r\nallCards[\"Body of a Yithian|Promo version\"] = [[{\n\ - \ \"id\": \"04244-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"The\ - \ Custodian|Curious Yithian\"] = [[{\n \"id\": \"04256\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Yithian.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"04256\"] = [[{\n \"id\": \"\ - 04256\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally. Yithian.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - The Custodian|\"] = [[{\n \"id\": \"04256\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Ally. Yithian.\",\n \"permanent\": false,\n \ - \ \"weakness\": false\n}]]\r\nallCards[\"Out of Body Experience|\"] = [[{\n \"\ - id\": \"04264\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Madness. Paradox.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"04264\"] = [[{\n \"id\": \"04264\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Paradox.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"Handcuffs|\"] = [[{\n \"id\"\ - : \"04265\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Item. Police.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"04265\"] = [[{\n \"id\": \"04265\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Police.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Blood\ - \ Eclipse (3)|\"] = [[{\n \"id\": \"04266\",\n \"type\": \"Event\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"04266\"] = [[{\n \"id\": \"\ - 04266\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Spell. Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Feed the Mind (3)|\"] = [[{\n \"id\": \"04267\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\"\ - : 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - 04267\"] = [[{\n \"id\": \"04267\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Colt Vest Pocket|\"] =\ - \ [[{\n \"id\": \"04268\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n\ - \ \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"04268\"] =\ - \ [[{\n \"id\": \"04268\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n\ - \ \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"Coup de Gr\uFFFD\ - ce|\"] = [[{\n \"id\": \"04269\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Tactic. Fated.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"04269\"] = [[{\n \"id\": \"04269\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic. Fated.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - The Skeleton Key (2)|\"] = [[{\n \"id\": \"04270\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\"\ - : 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"04270\"\ - ] = [[{\n \"id\": \"04270\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 2,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"Mists of R'lyeh (4)|\"] = [[{\n\ - \ \"id\": \"04271\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 5\n }\n}]]\r\nallCards[\"04271\"] = [[{\n \"id\": \"04271\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 5\n\ - \ }\n}]]\r\nallCards[\"Winging It|\"] = [[{\n \"id\": \"04272\",\n \"type\"\ - : \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Improvised.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 04272\"] = [[{\n \"id\": \"04272\",\n \"type\": \"Event\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Tactic. Improvised.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Old Hunting Rifle (3)|\"] =\ - \ [[{\n \"id\": \"04273\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"04273\"] =\ - \ [[{\n \"id\": \"04273\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Thermos|\"\ - ] = [[{\n \"id\": \"04274\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"04274\"] = [[{\n \"id\": \"04274\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"Hemispheric Map (3)|\"] = [[{\n \"id\": \"04275\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 04275\"] = [[{\n \"id\": \"04275\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Timeworn Brand (5)|\"] = [[{\n\ - \ \"id\": \"04276\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 5,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"04276\"] = [[{\n \"id\": \"\ - 04276\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Item. Relic. Weapon. Melee.\",\n \"level\": 5,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Relic of Ages|Repossess the Past\"] = [[{\n\ - \ \"id\": \"04303\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"04303\"] = [[{\n \"id\": \"04303\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Relic of Ages|\"] = [[{\n \ - \ \"id\": \"04303\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Kerosene (1)|\"] = [[{\n \"id\": \"04304\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item.\",\n \"level\": 1,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - 04304\"] = [[{\n \"id\": \"04304\",\n \"type\": \"Asset\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Item.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Flamethrower (5)|\"] =\ - \ [[{\n \"id\": \"04305\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 5,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"04305\"] =\ - \ [[{\n \"id\": \"04305\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 5,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Flamethrower\ - \ (5) (Taboo)|\"] = [[{\n \"id\": \"04305-t\",\n \"type\": \"Asset\",\n \"\ - class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\"\ - : 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"\ - Vantage Point|\"] = [[{\n \"id\": \"04306\",\n \"type\": \"Event\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"04306\"] = [[{\n \"id\": \"\ - 04306\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Pnakotic Manuscripts (5)|Mind-Expanding Ideas\"] = [[{\n \"id\": \"04307\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\ - \ Tome.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"04307\"] = [[{\n \"id\": \"04307\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\"\ - : 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Pnakotic\ - \ Manuscripts (5)|\"] = [[{\n \"id\": \"04307\",\n \"type\": \"Asset\",\n \"\ - class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 5,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Borrowed Time\ - \ (3)|\"] = [[{\n \"id\": \"04308\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Ritual.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"04308\"] = [[{\n \"id\": \"04308\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ritual.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - All In (5)|\"] = [[{\n \"id\": \"04309\",\n \"type\": \"Skill\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 5,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"04309\"] = [[{\n \"id\": \"04309\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\"\ - ,\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - All In (5) (Taboo)|\"] = [[{\n \"id\": \"04309-t\",\n \"type\": \"Skill\",\n\ - \ \"class\": \"Rogue\",\n \"traits\": \"Fortune.\",\n \"level\": 5,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Shards of the Void (3)|\"]\ - \ = [[{\n \"id\": \"04310\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"04310\"] = [[{\n \"id\": \"04310\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"Seal of the Seventh Sign (5)|Over the Threshold and Beyond\"\ - ] = [[{\n \"id\": \"04311\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell. Ritual.\",\n \"level\": 5,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"04311\"] = [[{\n \"id\": \"04311\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Ritual.\"\ - ,\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Seal of the Seventh Sign (5)|\"] = [[{\n \"id\": \"04311\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Ritual.\",\n \"level\": 5,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Impromptu Barrier|\"\ - ] = [[{\n \"id\": \"04312\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Tactic. Improvised.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"04312\"] = [[{\n \"id\": \"04312\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic.\ - \ Improvised.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Alter Fate (3)|\"] = [[{\n \"id\": \"04313\",\n \"type\":\ - \ \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spell. Blessed.\",\n\ - \ \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 04313\"] = [[{\n \"id\": \"04313\",\n \"type\": \"Event\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Relic of Ages|Unleash the Timestream\"\ - ] = [[{\n \"id\": \"04343\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"04343\"] = [[{\n \"id\": \"04343\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Relic of Ages|\"] = [[{\n \ - \ \"id\": \"04343\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"John & Jessie Burke|Relentless in Pursuit\"] = [[{\n \"id\"\ - : \"83055\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Ally. Government.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\ - \nallCards[\"83055\"] = [[{\n \"id\": \"83055\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Ally. Government.\",\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"John & Jessie Burke|\"] = [[{\n\ - \ \"id\": \"83055\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Ally. Government.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Ancient Ankh|Aegis of the Harbinger\"] = [[{\n \"id\": \"83056\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"83056\"]\ - \ = [[{\n \"id\": \"83056\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Ancient Ankh|\"] = [[{\n \"id\": \"83056\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Khopesh of the Abyss|Manifested\ - \ Malice\"] = [[{\n \"id\": \"83057\",\n \"type\": \"Asset\",\n \"class\":\ - \ \"Neutral\",\n \"traits\": \"Item. Weapon. Relic. Melee.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"83057\"] = [[{\n \"id\": \"\ - 83057\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Item. Weapon. Relic. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Khopesh of the Abyss|\"] = [[{\n \"id\": \"83057\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Relic.\ - \ Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Summoned Nightgaunt|Gift from Nodens\"] = [[{\n \"id\": \"83058\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Nightgaunt.\ - \ Power.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 83058\"] = [[{\n \"id\": \"83058\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Monster. Nightgaunt. Power.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Summoned Nightgaunt|\"] = [[{\n \"\ - id\": \"83058\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Monster. Nightgaunt. Power.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Bandolier (2)|\"] = [[{\n \"id\": \"51001\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item.\",\n \"level\": 2,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"51001\"] =\ - \ [[{\n \"id\": \"51001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Item.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Blackjack (2)|\"] = [[{\n \"id\": \"51002\",\n \"\ - type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon.\ - \ Melee.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"51002\"] = [[{\n \"id\": \"51002\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\"\ - : 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Preposterous\ - \ Sketches (2)|\"] = [[{\n \"id\": \"51003\",\n \"type\": \"Event\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"51003\"] = [[{\n \"id\": \"\ - 51003\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Strange Solution (4)|Empowering Elixir\"] = [[{\n \"id\": \"51004\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"\ - level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n\ - \ \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n \ - \ }\n}]]\r\nallCards[\"51004\"] = [[{\n \"id\": \"51004\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - Strange Solution (4)|\"] = [[{\n \"id\": \"51004\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\",\n \"level\": 4,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - Contraband (2)|\"] = [[{\n \"id\": \"51005\",\n \"type\": \"Event\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Supply. Illicit.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"51005\"] = [[{\n \"id\": \"\ - 51005\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Supply.\ - \ Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Think on Your Feet (2)|\"] = [[{\n \"id\": \"51006\",\n \"\ - type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\"\ - : 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"51006\"\ - ] = [[{\n \"id\": \"51006\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Rite of Seeking (2)|\"] = [[{\n \"id\": \"51007\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"51007\"] = [[{\n \"id\": \"51007\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"\ - permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"\ - resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - Clarity of Mind (3)|\"] = [[{\n \"id\": \"51008\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"51008\"]\ - \ = [[{\n \"id\": \"51008\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 4\n }\n}]]\r\nallCards[\"Oops! (2)|\"] = [[{\n \"id\": \"\ - 51009\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"51009\"] = [[{\n \"id\": \"51009\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Rise to the\ - \ Occasion (3)|\"] = [[{\n \"id\": \"51010\",\n \"type\": \"Skill\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"51010\"] = [[{\n \"id\": \"\ - 51010\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Innate.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Through the Gates|\"] = [[{\n \"id\": \"51011\",\n \"type\"\ - : \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact. Mystery.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n\ - }]]\r\nallCards[\"51011\"] = [[{\n \"id\": \"51011\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Pact. Mystery.\",\n \"permanent\"\ - : false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"\ - Engineer|\"] = [[{\n \"id\": \"51031\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Ally. Bystander.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"51031\"] = [[{\n \"id\": \"51031\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Bystander.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Naomi O'Bannion|Ruthless\ - \ Tactician\"] = [[{\n \"id\": \"51052\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Ally. Criminal. Syndicate.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"51052\"] = [[{\n \"id\": \"\ - 51052\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally. Criminal. Syndicate.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Naomi O'Bannion|\"] = [[{\n \"id\": \"51052\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Criminal. Syndicate.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Carolyn Fern|The\ - \ Psychologist\"] = [[{\n \"id\": \"05001\",\n \"alternate_ids\": [ \"98010\"\ - \ ],\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Medic.\"\n}]]\r\nallCards[\"05001\"] = [[{\n \"id\": \"05001\",\n \"alternate_ids\"\ - : [ \"98010\" ],\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n\ - \ \"traits\": \"Medic.\"\n}]]\r\nallCards[\"Carolyn Fern (promo version)|The\ - \ Psychologist\"] = [[{\n \"id\": \"05001-promo\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Medic.\"\n}]]\r\nallCards[\"Carolyn\ - \ Fern (Parallel)|The Psychologist\"] = [[{\n \"id\": \"05001-p\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Medic.\"\n}]]\r\ - \nallCards[\"Carolyn Fern (Parallel Front)|The Psychologist\"] = [[{\n \"id\"\ - : \"05001-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \ - \ \"traits\": \"Medic.\"\n}]]\r\nallCards[\"Carolyn Fern (Parallel Back)|The Psychologist\"\ - ] = [[{\n \"id\": \"05001-pb\",\n \"type\": \"Investigator\",\n \"class\":\ - \ \"Guardian\",\n \"traits\": \"Medic.\"\n}]]\r\nallCards[\"Carolyn Fern|\"]\ - \ = [[{\n \"id\": \"05001-m\",\n \"alternate_ids\": [ \"98010-m\" ],\n \"type\"\ - : \"Minicard\"\n}]]\r\nallCards[\"Carolyn Fern|Promo version\"] = [[{\n \"id\"\ - : \"05001-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Joe Diamond|The\ - \ Private Investigator\"] = [[{\n \"id\": \"05002\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Detective.\"\n}]]\r\nallCards[\"\ - 05002\"] = [[{\n \"id\": \"05002\",\n \"type\": \"Investigator\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Detective.\"\n}]]\r\nallCards[\"Joe Diamond (promo\ - \ version)|The Private Investigator\"] = [[{\n \"id\": \"05002-promo\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Detective.\"\ - \n}]]\r\nallCards[\"Joe Diamond (Parallel)|The Private Investigator\"] = [[{\n\ - \ \"id\": \"05002-p\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Detective.\"\n}]]\r\nallCards[\"Joe Diamond (Parallel Front)|The\ - \ Private Investigator\"] = [[{\n \"id\": \"05002-pf\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Detective.\"\n}]]\r\nallCards[\"\ - Joe Diamond (Parallel Back)|The Private Investigator\"] = [[{\n \"id\": \"05002-pb\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Detective.\"\ - \n}]]\r\nallCards[\"Joe Diamond|\"] = [[{\n \"id\": \"05002-m\",\n \"type\"\ - : \"Minicard\"\n}]]\r\nallCards[\"Joe Diamond|Promo version\"] = [[{\n \"id\"\ - : \"05002-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Preston Fairmont|The\ - \ Millionaire\"] = [[{\n \"id\": \"05003\",\n \"type\": \"Investigator\",\n\ - \ \"class\": \"Rogue\",\n \"traits\": \"Silver Twilight. Socialite.\"\n}]]\r\ - \nallCards[\"05003\"] = [[{\n \"id\": \"05003\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Silver Twilight. Socialite.\"\n}]]\r\ - \nallCards[\"Preston Fairmont (promo version)|The Millionaire\"] = [[{\n \"id\"\ - : \"05003-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \ - \ \"traits\": \"Silver Twilight. Socialite.\"\n}]]\r\nallCards[\"Preston Fairmont\ - \ (Parallel)|The Millionaire\"] = [[{\n \"id\": \"05003-p\",\n \"type\": \"\ - Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Silver Twilight. Socialite.\"\ - \n}]]\r\nallCards[\"Preston Fairmont (Parallel Front)|The Millionaire\"] = [[{\n\ - \ \"id\": \"05003-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Silver Twilight. Socialite.\"\n}]]\r\nallCards[\"Preston Fairmont\ - \ (Parallel Back)|The Millionaire\"] = [[{\n \"id\": \"05003-pb\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Silver Twilight.\ - \ Socialite.\"\n}]]\r\nallCards[\"Preston Fairmont|\"] = [[{\n \"id\": \"05003-m\"\ - ,\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Preston Fairmont|Promo version\"\ - ] = [[{\n \"id\": \"05003-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"\ - Diana Stanley|The Redeemed Cultist\"] = [[{\n \"id\": \"05004\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Cultist. Silver\ - \ Twilight.\"\n}]]\r\nallCards[\"05004\"] = [[{\n \"id\": \"05004\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Cultist. Silver\ - \ Twilight.\"\n}]]\r\nallCards[\"Diana Stanley (promo version)|The Redeemed Cultist\"\ - ] = [[{\n \"id\": \"05004-promo\",\n \"type\": \"Investigator\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Cultist. Silver Twilight.\"\n}]]\r\nallCards[\"\ - Diana Stanley (Parallel)|The Redeemed Cultist\"] = [[{\n \"id\": \"05004-p\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Cultist.\ - \ Silver Twilight.\"\n}]]\r\nallCards[\"Diana Stanley (Parallel Front)|The Redeemed\ - \ Cultist\"] = [[{\n \"id\": \"05004-pf\",\n \"type\": \"Investigator\",\n \ - \ \"class\": \"Mystic\",\n \"traits\": \"Cultist. Silver Twilight.\"\n}]]\r\n\ - allCards[\"Diana Stanley (Parallel Back)|The Redeemed Cultist\"] = [[{\n \"id\"\ - : \"05004-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Cultist. Silver Twilight.\"\n}]]\r\nallCards[\"Diana Stanley|\"] =\ - \ [[{\n \"id\": \"05004-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Diana\ - \ Stanley|Promo version\"] = [[{\n \"id\": \"05004-promo-m\",\n \"type\": \"\ - Minicard\"\n}]]\r\nallCards[\"Rita Young|The Athlete\"] = [[{\n \"id\": \"05005\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Miskatonic.\"\n}]]\r\nallCards[\"05005\"] = [[{\n \"id\": \"05005\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Miskatonic.\"\ - \n}]]\r\nallCards[\"Rita Young (promo version)|The Athlete\"] = [[{\n \"id\"\ - : \"05005-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n\ - \ \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Rita Young (Parallel)|The Athlete\"\ - ] = [[{\n \"id\": \"05005-p\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Rita Young (Parallel\ - \ Front)|The Athlete\"] = [[{\n \"id\": \"05005-pf\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"\ - Rita Young (Parallel Back)|The Athlete\"] = [[{\n \"id\": \"05005-pb\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Miskatonic.\"\ - \n}]]\r\nallCards[\"Rita Young|\"] = [[{\n \"id\": \"05005-m\",\n \"type\":\ - \ \"Minicard\"\n}]]\r\nallCards[\"Rita Young|Promo version\"] = [[{\n \"id\"\ - : \"05005-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Marie Lambeau|The\ - \ Entertainer\"] = [[{\n \"id\": \"05006\",\n \"alternate_ids\": [ \"99001\"\ - \ ],\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"\ - Performer. Sorcerer.\"\n}]]\r\nallCards[\"05006\"] = [[{\n \"id\": \"05006\"\ - ,\n \"alternate_ids\": [ \"99001\" ],\n \"type\": \"Investigator\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Performer. Sorcerer.\"\n}]]\r\nallCards[\"Marie\ - \ Lambeau (promo version)|The Entertainer\"] = [[{\n \"id\": \"05006-promo\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer.\ - \ Sorcerer.\"\n}]]\r\nallCards[\"Marie Lambeau (Parallel)|The Entertainer\"] =\ - \ [[{\n \"id\": \"05006-p\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Performer. Sorcerer.\"\n}]]\r\nallCards[\"Marie Lambeau\ - \ (Parallel Front)|The Entertainer\"] = [[{\n \"id\": \"05006-pf\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Performer. Sorcerer.\"\ - \n}]]\r\nallCards[\"Marie Lambeau (Parallel Back)|The Entertainer\"] = [[{\n \ - \ \"id\": \"05006-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Performer. Sorcerer.\"\n}]]\r\nallCards[\"Marie Lambeau|\"\ - ] = [[{\n \"id\": \"05006-m\",\n \"alternate_ids\": [ \"99001-m\" ],\n \"type\"\ - : \"Minicard\"\n}]]\r\nallCards[\"Marie Lambeau|Promo version\"] = [[{\n \"id\"\ - : \"05006-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Hypnotic Therapy|\"\ - ] = [[{\n \"id\": \"05007\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"05007\"] = [[{\n \"id\": \"05007\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Rational Thought|\"] = [[{\n \"id\"\ - : \"05008\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"\ - 05008\"] = [[{\n \"id\": \"05008\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\"\ - : true\n}]]\r\nallCards[\"Detective's Colt 1911s|\"] = [[{\n \"id\": \"05009\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon.\ - \ Firearm.\",\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n\ - \ \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n\ - }]]\r\nallCards[\"05009\"] = [[{\n \"id\": \"05009\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"\ - permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"\ - resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"\ - Unsolved Case|\"] = [[{\n \"id\": \"05010\",\n \"type\": \"Event\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Insight. Mystery.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"05010\"] = [[{\n \"id\": \"05010\",\n\ - \ \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Insight. Mystery.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Family Inheritance|A\ - \ Windfall? Or a Burden?\"] = [[{\n \"id\": \"05011\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Boon.\",\n \"permanent\": true,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"05011\"] = [[{\n \"id\": \"05011\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Boon.\"\ - ,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Family Inheritance|\"\ - ] = [[{\n \"id\": \"05011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Boon.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\ - \nallCards[\"Lodge \\\"Debts\\\"|\"] = [[{\n \"id\": \"05012\",\n \"type\":\ - \ \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"05012\"] = [[{\n \"id\": \"\ - 05012\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Twilight\ - \ Blade|Sanctum's Reward\"] = [[{\n \"id\": \"05013\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Weapon.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"05013\"] = [[{\n \"id\": \"\ - 05013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Item. Relic. Weapon.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\ - \nallCards[\"Twilight Blade|\"] = [[{\n \"id\": \"05013\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Weapon.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Dark Insight|\"] = [[{\n \"\ - id\": \"05014\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 05014\"] = [[{\n \"id\": \"05014\",\n \"type\": \"Event\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Terrible Secret|\"] = [[{\n \"id\": \"05015\",\n \ - \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"05015\"] =\ - \ [[{\n \"id\": \"05015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"\\\"I'm done runnin'!\\\"|\"] = [[{\n \"id\": \"05016\",\n\ - \ \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spirit.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05016\"]\ - \ = [[{\n \"id\": \"05016\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Spirit.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Hoods|\"] = [[{\n \"id\": \"05017\",\n \"type\": \"Enemy\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Cultist.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"05017\"] = [[{\n \"id\": \"\ - 05017\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Humanoid. Cultist.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\n\ - allCards[\"Mystifying Song|\"] = [[{\n \"id\": \"05018\",\n \"alternate_ids\"\ - : [ \"99002\" ],\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Spell. Song.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 05018\"] = [[{\n \"id\": \"05018\",\n \"alternate_ids\": [ \"99002\" ],\n \"\ - type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell. Song.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Baron Samedi|Lord\ - \ of the Cemetery\"] = [[{\n \"id\": \"05019\",\n \"alternate_ids\": [ \"99003\"\ - \ ],\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Avatar.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"05019\"] =\ - \ [[{\n \"id\": \"05019\",\n \"alternate_ids\": [ \"99003\" ],\n \"type\":\ - \ \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Avatar.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"Baron Samedi|\"] = [[{\n \"\ - id\": \"05019\",\n \"alternate_ids\": [ \"99003\" ],\n \"type\": \"Asset\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Avatar.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"Interrogate|\"] = [[{\n \"id\": \"05020\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\ - \ Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"05020\"] = [[{\n \"id\": \"05020\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Tactic. Insight.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Delay\ - \ the Inevitable|\"] = [[{\n \"id\": \"05021\",\n \"type\": \"Event\",\n \"\ - class\": \"Guardian\",\n \"traits\": \"Insight. Spirit. Tactic.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05021\"\ - ] = [[{\n \"id\": \"05021\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Insight. Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Steadfast|\"] = [[{\n \"id\"\ - : \"05022\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"05022\"] = [[{\n \"id\": \"05022\",\n \"type\": \"Skill\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ace of Swords\ - \ (1)|Let Your Arrow Fly True\"] = [[{\n \"id\": \"05023\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05023\"] = [[{\n\ - \ \"id\": \"05023\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Ace of Swords (1)|\"] = [[{\n \"id\": \"05023\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Tarot.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Fingerprint Kit|\"] = [[{\n \"id\": \"05024\",\n \"type\": \"Asset\",\n \"\ - class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"05024\"]\ - \ = [[{\n \"id\": \"05024\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Connect the Dots|\"] =\ - \ [[{\n \"id\": \"05025\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n\ - \ \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"05025\"] = [[{\n \"id\": \"05025\",\n \"type\": \"\ - Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\":\ - \ 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Curiosity|\"\ - ] = [[{\n \"id\": \"05026\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"05026\"] = [[{\n \"id\": \"05026\",\n \"\ - type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Death \uFFFD XIII (1)|Free from the Past\"] = [[{\n \"id\": \"05027\",\n \"\ - type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Tarot.\",\n \"\ - level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 05027\"] = [[{\n \"id\": \"05027\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Death \uFFFD XIII (1)|\"] = [[{\n \"\ - id\": \"05027\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\"\ - : \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Well Connected|\"] = [[{\n \"id\": \"05028\",\n \"type\":\ - \ \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Condition.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05028\"\ - ] = [[{\n \"id\": \"05028\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Condition.\",\n \"level\": 0,\n \"permanent\": false,\n \ - \ \"weakness\": false\n}]]\r\nallCards[\"Money Talks|\"] = [[{\n \"id\": \"05029\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Gambit.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 05029\"] = [[{\n \"id\": \"05029\",\n \"type\": \"Event\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Favor. Gambit.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Cunning|\"] = [[{\n \"id\"\ - : \"05030\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"\ - Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"05030\"] = [[{\n \"id\": \"05030\",\n \"type\": \"Skill\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Moon \uFFFD\ - \ XVIII (1)|Message from Your Inner Self\"] = [[{\n \"id\": \"05031\",\n \"\ - type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Tarot.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05031\"\ - ] = [[{\n \"id\": \"05031\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"The Moon \uFFFD XVIII (1)|\"] = [[{\n \"id\": \"05031\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Tarot.\",\n\ - \ \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Deny Existence|\"] = [[{\n \"id\": \"05032\",\n \"type\": \"Event\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Spell. Paradox.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"05032\"] = [[{\n \"id\": \"\ - 05032\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\ - \ Paradox.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Eldritch Inspiration|\"] = [[{\n \"id\": \"05033\",\n \"type\"\ - : \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 05033\"] = [[{\n \"id\": \"05033\",\n \"type\": \"Event\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Prophesy|\"] = [[{\n \"id\"\ - : \"05034\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\":\ - \ \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"05034\"] = [[{\n \"id\": \"05034\",\n \"type\": \"Skill\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Practiced.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Four of Cups\ - \ (1)|Chalice of the Heart\"] = [[{\n \"id\": \"05035\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05035\"] = [[{\n\ - \ \"id\": \"05035\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Four of Cups (1)|\"] = [[{\n \"id\": \"05035\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Tarot.\",\n\ - \ \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Track Shoes|\"] = [[{\n \"id\": \"05036\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Item. Clothing. Footwear.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05036\"] =\ - \ [[{\n \"id\": \"05036\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Item. Clothing. Footwear.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Act of Desperation|\"] = [[{\n\ - \ \"id\": \"05037\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Tactic. Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"05037\"] = [[{\n \"id\": \"05037\",\n \"\ - type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic. Gambit.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Able Bodied|\"] = [[{\n \"id\": \"05038\",\n \"type\": \"Skill\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"05038\"] = [[{\n \"id\": \"\ - 05038\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Innate.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Five of Pentacles (1)|From the Brink\"] = [[{\n \"id\": \"\ - 05039\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\ - \nallCards[\"05039\"] = [[{\n \"id\": \"05039\",\n \"type\": \"Asset\",\n \"\ - class\": \"Survivor\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Five of Pentacles (1)|\"] =\ - \ [[{\n \"id\": \"05039\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Ace of Rods (1)|The Fateful Step\"] = [[{\n \"id\"\ - : \"05040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"05040\"] = [[{\n \"id\": \"05040\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ace of Rods (1)|\"\ - ] = [[{\n \"id\": \"05040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Tarot.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"The 13th Vision|\"] = [[{\n \"id\": \"05041\",\n \ - \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n\ - }]]\r\nallCards[\"05041\"] = [[{\n \"id\": \"05041\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Omen.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"The Tower\ - \ \uFFFD XVI|Circumstances Beyond Your Control\"] = [[{\n \"id\": \"05042\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen. Tarot.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n\ - }]]\r\nallCards[\"05042\"] = [[{\n \"id\": \"05042\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Omen. Tarot.\",\n \"permanent\"\ - : false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"\ - The Tower \uFFFD XVI|\"] = [[{\n \"id\": \"05042\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Omen. Tarot.\",\n \"permanent\":\ - \ false,\n \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"\ - Gavriella Mizrah|Private Security\"] = [[{\n \"id\": \"05046\",\n \"type\":\ - \ \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Veteran.\"\n}]]\r\ - \nallCards[\"05046\"] = [[{\n \"id\": \"05046\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"Gavriella\ - \ Mizrah (promo version)|Private Security\"] = [[{\n \"id\": \"05046-promo\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Veteran.\"\n}]]\r\nallCards[\"Gavriella Mizrah (Parallel)|Private Security\"]\ - \ = [[{\n \"id\": \"05046-p\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"Gavriella Mizrah (Parallel\ - \ Front)|Private Security\"] = [[{\n \"id\": \"05046-pf\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Veteran.\"\n}]]\r\nallCards[\"Gavriella\ - \ Mizrah (Parallel Back)|Private Security\"] = [[{\n \"id\": \"05046-pb\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Veteran.\"\ - \n}]]\r\nallCards[\"Gavriella Mizrah|\"] = [[{\n \"id\": \"05046-m\",\n \"type\"\ - : \"Minicard\"\n}]]\r\nallCards[\"Gavriella Mizrah|Promo version\"] = [[{\n \"\ - id\": \"05046-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Jerome Davids|Josef's\ - \ Secretary\"] = [[{\n \"id\": \"05047\",\n \"type\": \"Investigator\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Assistant. Silver Twilight.\"\n}]]\r\n\ - allCards[\"05047\"] = [[{\n \"id\": \"05047\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Assistant. Silver Twilight.\"\n\ - }]]\r\nallCards[\"Jerome Davids (promo version)|Josef's Secretary\"] = [[{\n \ - \ \"id\": \"05047-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Assistant. Silver Twilight.\"\n}]]\r\nallCards[\"Jerome Davids\ - \ (Parallel)|Josef's Secretary\"] = [[{\n \"id\": \"05047-p\",\n \"type\": \"\ - Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Assistant. Silver\ - \ Twilight.\"\n}]]\r\nallCards[\"Jerome Davids (Parallel Front)|Josef's Secretary\"\ - ] = [[{\n \"id\": \"05047-pf\",\n \"type\": \"Investigator\",\n \"class\":\ - \ \"Neutral\",\n \"traits\": \"Assistant. Silver Twilight.\"\n}]]\r\nallCards[\"\ - Jerome Davids (Parallel Back)|Josef's Secretary\"] = [[{\n \"id\": \"05047-pb\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Assistant. Silver Twilight.\"\n}]]\r\nallCards[\"Jerome Davids|\"] = [[{\n \"\ - id\": \"05047-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Jerome Davids|Promo\ - \ version\"] = [[{\n \"id\": \"05047-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\ - \nallCards[\"Valentino Rivas|Wealthy Philanthropist\"] = [[{\n \"id\": \"05048\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Silver Twilight. Socialite.\"\n}]]\r\nallCards[\"05048\"] = [[{\n \"id\": \"\ - 05048\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Silver Twilight. Socialite.\"\n}]]\r\nallCards[\"Valentino Rivas (promo version)|Wealthy\ - \ Philanthropist\"] = [[{\n \"id\": \"05048-promo\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Silver Twilight. Socialite.\"\n\ - }]]\r\nallCards[\"Valentino Rivas (Parallel)|Wealthy Philanthropist\"] = [[{\n\ - \ \"id\": \"05048-p\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Silver Twilight. Socialite.\"\n}]]\r\nallCards[\"Valentino\ - \ Rivas (Parallel Front)|Wealthy Philanthropist\"] = [[{\n \"id\": \"05048-pf\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Silver Twilight. Socialite.\"\n}]]\r\nallCards[\"Valentino Rivas (Parallel Back)|Wealthy\ - \ Philanthropist\"] = [[{\n \"id\": \"05048-pb\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Silver Twilight. Socialite.\"\n\ - }]]\r\nallCards[\"Valentino Rivas|\"] = [[{\n \"id\": \"05048-m\",\n \"type\"\ - : \"Minicard\"\n}]]\r\nallCards[\"Valentino Rivas|Promo version\"] = [[{\n \"\ - id\": \"05048-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Penny White|Josef's\ - \ Housekeeper\"] = [[{\n \"id\": \"05049\",\n \"type\": \"Investigator\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"05049\"\ - ] = [[{\n \"id\": \"05049\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"Penny White (promo\ - \ version)|Josef's Housekeeper\"] = [[{\n \"id\": \"05049-promo\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"Assistant.\"\n\ - }]]\r\nallCards[\"Penny White (Parallel)|Josef's Housekeeper\"] = [[{\n \"id\"\ - : \"05049-p\",\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Assistant.\"\n}]]\r\nallCards[\"Penny White (Parallel Front)|Josef's\ - \ Housekeeper\"] = [[{\n \"id\": \"05049-pf\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Assistant.\"\n}]]\r\nallCards[\"\ - Penny White (Parallel Back)|Josef's Housekeeper\"] = [[{\n \"id\": \"05049-pb\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Assistant.\"\n}]]\r\nallCards[\"Penny White|\"] = [[{\n \"id\": \"05049-m\",\n\ - \ \"type\": \"Minicard\"\n}]]\r\nallCards[\"Penny White|Promo version\"] = [[{\n\ - \ \"id\": \"05049-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Something\ - \ Worth Fighting For|\"] = [[{\n \"id\": \"05109\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05109\"] = [[{\n\ - \ \"id\": \"05109\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Crack the Case|\"] = [[{\n \"id\": \"05110\",\n \"\ - type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 05110\"] = [[{\n \"id\": \"05110\",\n \"type\": \"Event\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Intel Report|\"] = [[{\n \"id\": \"\ - 05111\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor.\ - \ Service.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"05111\"] = [[{\n \"id\": \"05111\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Service.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sign Magick|\"\ - ] = [[{\n \"id\": \"05112\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Ritual. Talent.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"05112\"] = [[{\n \"id\": \"05112\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual. Talent.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Banish (1)|\"] = [[{\n \"id\": \"05113\",\n \"type\": \"Event\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"05113\"] = [[{\n \"id\": \"05113\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Meat Cleaver|\"] = [[{\n \"id\": \"05114\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05114\"] = [[{\n\ - \ \"id\": \"05114\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Item. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\".45 Thompson|\"] = [[{\n \"id\": \"\ - 05115\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue\",\n \"traits\"\ - : \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"05115\"] = [[{\n \"id\"\ - : \"05115\",\n \"type\": \"Asset\",\n \"class\": \"Guardian|Rogue\",\n \"traits\"\ - : \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"Scroll of Secrets|\"] =\ - \ [[{\n \"id\": \"05116\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\"\ - ,\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"05116\"] = [[{\n \"id\"\ - : \"05116\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\",\n \"traits\"\ - : \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\":\ - \ false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"Scroll of Secrets (Taboo)|\"] = [[{\n\ - \ \"id\": \"05116-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker|Mystic\"\ - ,\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Tennessee Sour Mash|\"\ - ] = [[{\n \"id\": \"05117\",\n \"type\": \"Asset\",\n \"class\": \"Rogue|Survivor\"\ - ,\n \"traits\": \"Item. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Supply\",\n \"count\": 2\n }\n}]]\r\nallCards[\"05117\"] = [[{\n \"id\"\ - : \"05117\",\n \"type\": \"Asset\",\n \"class\": \"Rogue|Survivor\",\n \"traits\"\ - : \"Item. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\"\ - ,\n \"count\": 2\n }\n}]]\r\nallCards[\"Enchanted Blade|\"] = [[{\n \"id\"\ - : \"05118\",\n \"type\": \"Asset\",\n \"class\": \"Mystic|Guardian\",\n \"\ - traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"05118\"]\ - \ = [[{\n \"id\": \"05118\",\n \"type\": \"Asset\",\n \"class\": \"Mystic|Guardian\"\ - ,\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Grisly Totem|\"\ - ] = [[{\n \"id\": \"05119\",\n \"type\": \"Asset\",\n \"class\": \"Survivor|Seeker\"\ - ,\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"05119\"] = [[{\n \"id\": \"05119\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Survivor|Seeker\",\n \"traits\": \"\ - Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"The Black Book|Signed in Blood\"] = [[{\n \"id\": \"05150\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\ - \ Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 05150\"] = [[{\n \"id\": \"05150\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item. Tome. Relic.\",\n \"permanent\": false,\n \ - \ \"weakness\": false\n}]]\r\nallCards[\"The Black Book|\"] = [[{\n \"id\": \"\ - 05150\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Item. Tome. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\n\ - allCards[\"Alice Luxley|Fearless Flatfoot\"] = [[{\n \"id\": \"05151\",\n \"\ - type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Detective.\ - \ Police.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"05151\"] = [[{\n \"id\": \"05151\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Detective. Police.\",\n \ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Alice Luxley|\"] = [[{\n \"id\": \"05151\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Ally. Detective. Police.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Well-Maintained\ - \ (1)|\"] = [[{\n \"id\": \"05152\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Upgrade.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"05152\"] = [[{\n \"id\": \"05152\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Upgrade.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Mr. \\\"Rook\\\"|Dealer in Secrets\"] = [[{\n \"id\": \"05153\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05153\"\ - ] = [[{\n \"id\": \"05153\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Mr. \\\"Rook\\\" (Taboo)|Dealer in Secrets\"] = [[{\n\ - \ \"id\": \"05153-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Mr. \\\"Rook\\\"|\"] = [[{\n \"id\": \"05153\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally.\",\n\ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Mr. \\\"Rook\\\" (Taboo)|\"] = [[{\n \"id\": \"05153-t\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Hawk-Eye Folding Camera|\"\ - ] = [[{\n \"id\": \"05154\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"05154\"] = [[{\n \"id\": \"05154\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Henry Wan|Aspiring Actor\"] = [[{\n \"id\": \"05155\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05155\"] =\ - \ [[{\n \"id\": \"05155\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n\ - \ \"traits\": \"Ally. Criminal.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Henry Wan|\"] = [[{\n \"id\": \"05155\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Swift Reflexes|\"] = [[{\n \"id\": \"05156\",\n \"type\": \"Event\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"05156\"] = [[{\n \"id\": \"05156\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Wither|\"] = [[{\n \"id\": \"05157\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"05157\"] = [[{\n \"id\": \"05157\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Sixth Sense|\"] = [[{\n \"id\": \"05158\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"05158\"] = [[{\n \"id\": \"05158\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Drawing Thin|\"] = [[{\n \"id\": \"05159\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"05159\"] = [[{\n \"id\": \"\ - 05159\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Drawing Thin (Taboo)|\"] = [[{\n \"id\": \"05159-t\",\n \"\ - type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Belly of the Beast|\"] = [[{\n \"id\": \"05160\",\n \"type\": \"Event\",\n \ - \ \"class\": \"Survivor\",\n \"traits\": \"Gambit. Trick.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05160\"] =\ - \ [[{\n \"id\": \"05160\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Gambit. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Spectral Web|\"] = [[{\n \"id\": \"\ - 05177\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Spell.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 05177\"] = [[{\n \"id\": \"05177\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\".45 Thompson (3)|Guardian\"] = [[{\n \"id\": \"05186\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon.\ - \ Firearm. Illicit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"05186\"] = [[{\n \"id\": \"05186\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - .45 Thompson (3)|Rogue\"] = [[{\n \"id\": \"05187\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n\ - \ \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 05187\"] = [[{\n \"id\": \"05187\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 3,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Scroll of Secrets\ - \ (3)|Seeker\"] = [[{\n \"id\": \"05188\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"05188\"]\ - \ = [[{\n \"id\": \"05188\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Scroll of Secrets (3)\ - \ (Taboo)|Seeker\"] = [[{\n \"id\": \"05188-t\",\n \"type\": \"Asset\",\n \"\ - class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Scroll of\ - \ Secrets (3)|Mystic\"] = [[{\n \"id\": \"05189\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"\ - 05189\"] = [[{\n \"id\": \"05189\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Scroll of Secrets (3)\ - \ (Taboo)|Mystic\"] = [[{\n \"id\": \"05189-t\",\n \"type\": \"Asset\",\n \"\ - class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Tennessee\ - \ Sour Mash (3)|Rogue\"] = [[{\n \"id\": \"05190\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Rogue\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 3,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Supply\",\n \"count\": 2\n }\n}]]\r\nallCards[\"\ - 05190\"] = [[{\n \"id\": \"05190\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Supply\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Tennessee\ - \ Sour Mash (3)|Survivor\"] = [[{\n \"id\": \"05191\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Item. Illicit.\",\n \"level\"\ - : 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - 05191\"] = [[{\n \"id\": \"05191\",\n \"type\": \"Asset\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Supply\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Enchanted\ - \ Blade (3)|Guardian\"] = [[{\n \"id\": \"05192\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n\ - \ \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"05192\"] = [[{\n \"id\": \"05192\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n\ - \ \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"Enchanted Blade (3)|Mystic\"] = [[{\n \"id\": \"05193\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\ - \ Weapon. Melee.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 4\n }\n}]]\r\nallCards[\"05193\"] = [[{\n \"id\": \"05193\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\ - \ Weapon. Melee.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 4\n }\n}]]\r\nallCards[\"Grisly Totem (3)|Seeker\"] = [[{\n\ - \ \"id\": \"05194\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Item. Charm. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"05194\"] = [[{\n \"id\": \"05194\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Charm.\ - \ Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Grisly Totem (3)|Survivor\"] = [[{\n \"id\": \"05195\",\n \ - \ \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\ - \ Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"05195\"] = [[{\n \"id\": \"05195\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm. Blessed.\",\n \"\ - level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - The Council's Coffer (2)|What\uFFFDs in the Box?\"] = [[{\n \"id\": \"05196\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 05196\"] = [[{\n \"id\": \"05196\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"The Council's Coffer (2)|\"\ - ] = [[{\n \"id\": \"05196\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"August Lindquist|Elegant and Elusive\"\ - ] = [[{\n \"id\": \"05227\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Cultist. Silver Twilight.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"05227\"] = [[{\n \"id\": \"05227\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Cultist. Silver\ - \ Twilight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - August Lindquist|\"] = [[{\n \"id\": \"05227\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Cultist. Silver Twilight.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Puzzle Box|Mysterious Device\"\ - ] = [[{\n \"id\": \"05228\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"05228\"] = [[{\n \"id\": \"05228\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Puzzle Box|\"] = [[{\n \"\ - id\": \"05228\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Warning Shot|\"] = [[{\n \"id\": \"05229\",\n \"type\": \"Event\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Tactic. Trick.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"05229\"] = [[{\n \"id\": \"\ - 05229\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Tactic. Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Telescopic Sight (3)|\"] = [[{\n \"id\": \"05230\",\n \"type\"\ - : \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Upgrade.\",\n\ - \ \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 05230\"] = [[{\n \"id\": \"05230\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Item. Upgrade.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Telescopic Sight (3) (Taboo)|\"\ - ] = [[{\n \"id\": \"05230-t\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Item. Upgrade.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Knowledge is Power|\"] = [[{\n \"id\"\ - : \"05231\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"05231\"] = [[{\n \"id\": \"05231\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Knowledge is Power\ - \ (Taboo)|\"] = [[{\n \"id\": \"05231-t\",\n \"type\": \"Event\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"Esoteric Atlas (1)|\"] = [[{\n\ - \ \"id\": \"05232\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Item. Tome.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\"\ - ,\n \"count\": 4\n }\n}]]\r\nallCards[\"05232\"] = [[{\n \"id\": \"05232\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n\ - \ }\n}]]\r\nallCards[\"Investments|\"] = [[{\n \"id\": \"05233\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Connection.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05233\"\ - ] = [[{\n \"id\": \"05233\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Connection.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Decoy|\"] = [[{\n \"id\": \"05234\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Service.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 05234\"] = [[{\n \"id\": \"05234\",\n \"type\": \"Event\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Favor. Service.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"De Vermis Mysteriis (2)|Signs\ - \ of the Black Stars\"] = [[{\n \"id\": \"05235\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05235\"] = [[{\n\ - \ \"id\": \"05235\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"De Vermis Mysteriis (2)|\"] = [[{\n \"id\": \"05235\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Guiding Spirit (1)|\"] = [[{\n \"id\": \"05236\",\n \"type\": \"Asset\",\n \ - \ \"class\": \"Survivor\",\n \"traits\": \"Ally. Geist.\",\n \"level\": 1,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05236\"] =\ - \ [[{\n \"id\": \"05236\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Ally. Geist.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Fortune or Fate (2)|\"] = [[{\n \"\ - id\": \"05237\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Fortune. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"05237\"] = [[{\n \"id\": \"05237\",\n \"type\": \"\ - Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \ - \ \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Gavriella Mizrah|Not Going Down That Easily\"] = [[{\n \"id\": \"05258\",\n \ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Veteran.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05258\"]\ - \ = [[{\n \"id\": \"05258\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Veteran.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Gavriella Mizrah|\"] = [[{\n \"id\": \"05258\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Veteran.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Jerome Davids|In\ - \ Way Over His Head\"] = [[{\n \"id\": \"05259\",\n \"type\": \"Asset\",\n \ - \ \"class\": \"Neutral\",\n \"traits\": \"Ally. Assistant.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"05259\"] = [[{\n \"id\": \"\ - 05259\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Jerome Davids|\"] = [[{\n \"id\": \"05259\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Penny White|The Nightmare is Over\"\ - ] = [[{\n \"id\": \"05260\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"05260\"] = [[{\n \"id\": \"05260\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Assistant.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Penny White|\"]\ - \ = [[{\n \"id\": \"05260\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Valentino Rivas|Took You Long Enough\"] = [[{\n \"\ - id\": \"05261\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Ally. Socialite.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\ - \nallCards[\"05261\"] = [[{\n \"id\": \"05261\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Ally. Socialite.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Valentino Rivas|\"] = [[{\n \"id\"\ - : \"05261\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Ally. Socialite.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\ - \nallCards[\"Mk 1 Grenades (4)|\"] = [[{\n \"id\": \"05273\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Ranged.\"\ - ,\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"05273\"] = [[{\n \"id\": \"05273\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Ranged.\",\n \"\ - level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n\ - \ \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 3\n \ - \ }\n}]]\r\nallCards[\"Agency Backup (5)|\"] = [[{\n \"id\": \"05274\",\n \"\ - type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Agency.\"\ - ,\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 05274\"] = [[{\n \"id\": \"05274\",\n \"type\": \"Asset\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Ally. Agency.\",\n \"level\": 5,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Ghastly Revelation|\"] = [[{\n\ - \ \"id\": \"05275\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"05275\"] = [[{\n \"id\": \"05275\",\n \"type\": \"\ - Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Studious (3)|\"\ - ] = [[{\n \"id\": \"05276\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"05276\"] = [[{\n \"id\": \"05276\",\n \"type\": \"\ - Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n\ - \ \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Small Favor|\"\ - ] = [[{\n \"id\": \"05277\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Favor. Service.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"05277\"] = [[{\n \"id\": \"05277\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Favor. Service.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Another Day, Another Dollar (3)|\"] = [[{\n \"id\": \"05278\",\n \"type\": \"\ - Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n\ - \ \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"05278\"] = [[{\n\ - \ \"id\": \"05278\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Dayana Esperence (3)|Deals with \\\"Devils\\\"\"] = [[{\n \"\ - id\": \"05279\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\"\ - : \"Ally. Witch.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"05279\"] = [[{\n \"id\": \"05279\",\n \"type\": \"\ - Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Witch.\",\n \"level\"\ - : 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dayana\ - \ Esperence (3)|\"] = [[{\n \"id\": \"05279\",\n \"type\": \"Asset\",\n \"\ - class\": \"Mystic\",\n \"traits\": \"Ally. Witch.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Deny Existence (5)|\"] = [[{\n\ - \ \"id\": \"05280\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Spell. Paradox.\",\n \"level\": 5,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"05280\"] = [[{\n \"id\": \"05280\",\n \"\ - type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Paradox.\"\ - ,\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Trial by Fire|\"] = [[{\n \"id\": \"05281\",\n \"type\": \"Event\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"05281\"] = [[{\n \"id\": \"\ - 05281\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Bait and Switch (3)|\"] = [[{\n \"id\": \"05282\",\n \"type\"\ - : \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Tactic.\",\n \"level\"\ - : 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05282\"\ - ] = [[{\n \"id\": \"05282\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Anna Kaslow (4)|Mysterious Soothsayer\"]\ - \ = [[{\n \"id\": \"05283\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Clairvoyant.\",\n \"level\": 4,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"05283\"] = [[{\n \"id\": \"05283\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Clairvoyant.\"\ - ,\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Anna Kaslow (4)|\"] = [[{\n \"id\": \"05283\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Ally. Clairvoyant.\",\n \"level\": 4,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Hallowed Mirror|\"\ - ] = [[{\n \"id\": \"05313\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Item. Relic. Occult. Blessed.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"05314\"\ - ,\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"05313\"] = [[{\n \"id\"\ - : \"05313\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Item. Relic. Occult. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"05314\",\n \ - \ \"count\": 3\n }\n ]\n}]]\r\nallCards[\"Soothing Melody|\"] = [[{\n \ - \ \"id\": \"05314\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Spell.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \ - \ \"id\": \"05313\",\n \"count\": 3\n },\n {\n \"id\": \"54002\"\ - ,\n \"count\": 3\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"\ - 05314\"] = [[{\n \"id\": \"05314\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"bonded_to\"\ - : [\n {\n \"id\": \"05313\",\n \"count\": 3\n },\n {\n \ - \ \"id\": \"54002\",\n \"count\": 3\n }\n ],\n \"weakness\": false\n\ - }]]\r\nallCards[\"\\\"I've had worse\uFFFD\\\" (2)|\"] = [[{\n \"id\": \"05315\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 05315\"] = [[{\n \"id\": \"05315\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Occult Lexicon|\"] = [[{\n \"id\":\ - \ \"05316\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Item. Tome. Occult.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"bonded\": [\n {\n \"id\": \"05317\",\n \"count\": 3\n\ - \ }\n ]\n}]]\r\nallCards[\"05316\"] = [[{\n \"id\": \"05316\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Occult.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\"\ - : [\n {\n \"id\": \"05317\",\n \"count\": 3\n }\n ]\n}]]\r\n\ - allCards[\"Blood-Rite|\"] = [[{\n \"id\": \"05317\",\n \"type\": \"Event\",\n\ - \ \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n\ - \ \"bonded_to\": [\n {\n \"id\": \"05316\",\n \"count\": 3\n \ - \ },\n {\n \"id\": \"54004\",\n \"count\": 3\n }\n ],\n \"weakness\"\ - : false\n}]]\r\nallCards[\"05317\"] = [[{\n \"id\": \"05317\",\n \"type\": \"\ - Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"permanent\"\ - : false,\n \"bonded_to\": [\n {\n \"id\": \"05316\",\n \"count\"\ - : 3\n },\n {\n \"id\": \"54004\",\n \"count\": 3\n }\n ],\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Glimpse the Unthinkable (5)|\"] = [[{\n\ - \ \"id\": \"05318\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Insight.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"05318\"] = [[{\n \"id\": \"05318\",\n \"type\": \"\ - Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\":\ - \ 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"You\ - \ owe me one!\\\"|\"] = [[{\n \"id\": \"05319\",\n \"type\": \"Event\",\n \"\ - class\": \"Rogue\",\n \"traits\": \"Favor. Gambit.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"05319\"] = [[{\n\ - \ \"id\": \"05319\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Favor. Gambit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Double, Double (4)|\"] = [[{\n \"id\": \"05320\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ritual.\",\n\ - \ \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 05320\"] = [[{\n \"id\": \"05320\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Ritual.\",\n \"level\": 4,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Wither (4)|\"] = [[{\n \"id\": \"05321\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 05321\"] = [[{\n \"id\": \"05321\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Sixth Sense (4)|\"] = [[{\n \"id\"\ - : \"05322\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\":\ - \ \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"05322\"] = [[{\n \"id\": \"05322\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lure (2)|\"] = [[{\n\ - \ \"id\": \"05323\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"05323\"] = [[{\n \"id\": \"05323\",\n \"type\": \"\ - Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Trick.\",\n \"level\":\ - \ 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Eucatastrophe\ - \ (3)|\"] = [[{\n \"id\": \"05324\",\n \"type\": \"Event\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"05324\"] = [[{\n \"id\": \"\ - 05324\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Fortune. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Eucatastrophe (3) (Taboo)|\"] = [[{\n \"id\": \"05324-t\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\ - \ Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\".32 Colt (2)|\"] = [[{\n \"id\": \"52001\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 6\n\ - \ }\n}]]\r\nallCards[\"52001\"] = [[{\n \"id\": \"52001\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"\ - level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n\ - \ \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 6\n }\n\ - }]]\r\nallCards[\"\\\"Eat lead!\\\"|\"] = [[{\n \"id\": \"52002\",\n \"type\"\ - : \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"52002\"\ - ] = [[{\n \"id\": \"52002\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Logical Reasoning (4)|\"] = [[{\n \"id\"\ - : \"52003\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Insight.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"52003\"] = [[{\n \"id\": \"52003\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 4,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Archaic Glyphs (3)|Markings\ - \ of Isis\"] = [[{\n \"id\": \"52004\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"52004\"] = [[{\n \"id\": \"52004\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Archaic Glyphs (3)|\"] = [[{\n \"id\": \"52004\",\n \"type\": \"Asset\",\n \ - \ \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Stealth (3)|\"] = [[{\n \"\ - id\": \"52005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"52005\"] = [[{\n \"id\": \"52005\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Suggestion (1)|\"\ - ] = [[{\n \"id\": \"52006\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Spell.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"52006\"] = [[{\n \"id\": \"52006\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Spell.\",\n\ - \ \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"Alchemical Transmutation (2)|\"] = [[{\n \"id\": \"52007\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n\ - \ }\n}]]\r\nallCards[\"52007\"] = [[{\n \"id\": \"52007\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"\ - permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"\ - resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"\ - Storm of Spirits (3)|\"] = [[{\n \"id\": \"52008\",\n \"type\": \"Event\",\n\ - \ \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"52008\"] = [[{\n \"id\": \"\ - 52008\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Lantern (2)|\"] = [[{\n \"id\": \"52009\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Item. Tool.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"52009\"] = [[{\n \"id\": \"\ - 52009\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Item. Tool.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Gravedigger's Shovel (2)|\"] = [[{\n \"id\": \"52010\",\n \ - \ \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool.\ - \ Weapon. Melee.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"52010\"] = [[{\n \"id\": \"52010\",\n \"type\": \"\ - Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool. Weapon. Melee.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Unspeakable Oath (Bloodthirst)|\"] = [[{\n \"id\": \"52011\",\n \"type\": \"\ - Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \ - \ \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n\ - }]]\r\nallCards[\"52011\"] = [[{\n \"id\": \"52011\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \"permanent\"\ - : false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"\ - Unspeakable Oath (Curiosity)|\"] = [[{\n \"id\": \"52012\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \"permanent\"\ - : false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"\ - 52012\"] = [[{\n \"id\": \"52012\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \"permanent\": false,\n \ - \ \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Unspeakable\ - \ Oath (Cowardice)|\"] = [[{\n \"id\": \"52013\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \"permanent\"\ - : false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"\ - 52013\"] = [[{\n \"id\": \"52013\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Madness. Pact.\",\n \"permanent\": false,\n \ - \ \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Dianne Devine|Hiding\ - \ an Oath Unspoken\"] = [[{\n \"id\": \"52025\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Cultist.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"52025\"] = [[{\n \"id\": \"52025\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Cultist.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dianne Devine|\"\ - ] = [[{\n \"id\": \"52025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Cultist.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Party Guest|\"] = [[{\n \"id\": \"52026\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"permanent\": false,\n \"weakness\":\ - \ false\n}]]\r\nallCards[\"52026\"] = [[{\n \"id\": \"52026\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"permanent\": false,\n \"weakness\":\ - \ false\n}]]\r\nallCards[\"Tommy Muldoon|The Rookie Cop\"] = [[{\n \"id\": \"\ - 06001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Police. Warden.\"\n}]]\r\nallCards[\"06001\"] = [[{\n \"id\": \"06001\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Police.\ - \ Warden.\"\n}]]\r\nallCards[\"Tommy Muldoon (promo version)|The Rookie Cop\"\ - ] = [[{\n \"id\": \"06001-promo\",\n \"type\": \"Investigator\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Police. Warden.\"\n}]]\r\nallCards[\"Tommy Muldoon\ - \ (Parallel)|The Rookie Cop\"] = [[{\n \"id\": \"06001-p\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Police. Warden.\"\n}]]\r\nallCards[\"\ - Tommy Muldoon (Parallel Front)|The Rookie Cop\"] = [[{\n \"id\": \"06001-pf\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Police. Warden.\"\n}]]\r\nallCards[\"Tommy Muldoon (Parallel Back)|The Rookie\ - \ Cop\"] = [[{\n \"id\": \"06001-pb\",\n \"type\": \"Investigator\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Police. Warden.\"\n}]]\r\nallCards[\"Tommy Muldoon|\"\ - ] = [[{\n \"id\": \"06001-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"\ - Tommy Muldoon|Promo version\"] = [[{\n \"id\": \"06001-promo-m\",\n \"type\"\ - : \"Minicard\"\n}]]\r\nallCards[\"Mandy Thompson|The Researcher\"] = [[{\n \"\ - id\": \"06002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Assistant. Scholar.\"\n}]]\r\nallCards[\"06002\"] = [[{\n \"id\"\ - : \"06002\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\"\ - : \"Assistant. Scholar.\"\n}]]\r\nallCards[\"Mandy Thompson (promo version)|The\ - \ Researcher\"] = [[{\n \"id\": \"06002-promo\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Assistant. Scholar.\"\n}]]\r\nallCards[\"\ - Mandy Thompson (Parallel)|The Researcher\"] = [[{\n \"id\": \"06002-p\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant.\ - \ Scholar.\"\n}]]\r\nallCards[\"Mandy Thompson (Parallel Front)|The Researcher\"\ - ] = [[{\n \"id\": \"06002-pf\",\n \"type\": \"Investigator\",\n \"class\":\ - \ \"Seeker\",\n \"traits\": \"Assistant. Scholar.\"\n}]]\r\nallCards[\"Mandy\ - \ Thompson (Parallel Back)|The Researcher\"] = [[{\n \"id\": \"06002-pb\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Assistant.\ - \ Scholar.\"\n}]]\r\nallCards[\"Mandy Thompson|\"] = [[{\n \"id\": \"06002-m\"\ - ,\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Mandy Thompson|Promo version\"\ - ] = [[{\n \"id\": \"06002-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"\ - Tony Morgan|The Bounty Hunter\"] = [[{\n \"id\": \"06003\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Criminal. Hunter.\"\n}]]\r\nallCards[\"\ - 06003\"] = [[{\n \"id\": \"06003\",\n \"type\": \"Investigator\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Criminal. Hunter.\"\n}]]\r\nallCards[\"Tony Morgan\ - \ (promo version)|The Bounty Hunter\"] = [[{\n \"id\": \"06003-promo\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\ - \ Hunter.\"\n}]]\r\nallCards[\"Tony Morgan (Parallel)|The Bounty Hunter\"] = [[{\n\ - \ \"id\": \"06003-p\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Criminal. Hunter.\"\n}]]\r\nallCards[\"Tony Morgan (Parallel\ - \ Front)|The Bounty Hunter\"] = [[{\n \"id\": \"06003-pf\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Criminal. Hunter.\"\n}]]\r\nallCards[\"\ - Tony Morgan (Parallel Back)|The Bounty Hunter\"] = [[{\n \"id\": \"06003-pb\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\ - \ Hunter.\"\n}]]\r\nallCards[\"Tony Morgan|\"] = [[{\n \"id\": \"06003-m\",\n\ - \ \"type\": \"Minicard\"\n}]]\r\nallCards[\"Tony Morgan|Promo version\"] = [[{\n\ - \ \"id\": \"06003-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Luke\ - \ Robinson|The Dreamer\"] = [[{\n \"id\": \"06004\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Dreamer. Drifter. Wayfarer.\"\n}]]\r\ - \nallCards[\"06004\"] = [[{\n \"id\": \"06004\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Dreamer. Drifter. Wayfarer.\"\n}]]\r\ - \nallCards[\"Luke Robinson (promo version)|The Dreamer\"] = [[{\n \"id\": \"\ - 06004-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Dreamer. Drifter. Wayfarer.\"\n}]]\r\nallCards[\"Luke Robinson (Parallel)|The\ - \ Dreamer\"] = [[{\n \"id\": \"06004-p\",\n \"type\": \"Investigator\",\n \"\ - class\": \"Mystic\",\n \"traits\": \"Dreamer. Drifter. Wayfarer.\"\n}]]\r\nallCards[\"\ - Luke Robinson (Parallel Front)|The Dreamer\"] = [[{\n \"id\": \"06004-pf\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Dreamer.\ - \ Drifter. Wayfarer.\"\n}]]\r\nallCards[\"Luke Robinson (Parallel Back)|The Dreamer\"\ - ] = [[{\n \"id\": \"06004-pb\",\n \"type\": \"Investigator\",\n \"class\":\ - \ \"Mystic\",\n \"traits\": \"Dreamer. Drifter. Wayfarer.\"\n}]]\r\nallCards[\"\ - Luke Robinson|\"] = [[{\n \"id\": \"06004-m\",\n \"type\": \"Minicard\"\n}]]\r\ - \nallCards[\"Luke Robinson|Promo version\"] = [[{\n \"id\": \"06004-promo-m\"\ - ,\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Patrice Hathaway|The Violinist\"\ - ] = [[{\n \"id\": \"06005\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Performer. Cursed.\"\n}]]\r\nallCards[\"06005\"]\ - \ = [[{\n \"id\": \"06005\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Performer. Cursed.\"\n}]]\r\nallCards[\"Patrice Hathaway\ - \ (promo version)|The Violinist\"] = [[{\n \"id\": \"06005-promo\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Performer. Cursed.\"\ - \n}]]\r\nallCards[\"Patrice Hathaway (Parallel)|The Violinist\"] = [[{\n \"id\"\ - : \"06005-p\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Performer. Cursed.\"\n}]]\r\nallCards[\"Patrice Hathaway (Parallel\ - \ Front)|The Violinist\"] = [[{\n \"id\": \"06005-pf\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Performer. Cursed.\"\n}]]\r\nallCards[\"\ - Patrice Hathaway (Parallel Back)|The Violinist\"] = [[{\n \"id\": \"06005-pb\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Performer. Cursed.\"\n}]]\r\nallCards[\"Patrice Hathaway|\"] = [[{\n \"id\":\ - \ \"06005-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Patrice Hathaway|Promo\ - \ version\"] = [[{\n \"id\": \"06005-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\ - \nallCards[\"Becky|Custom Marlin Model 1894\"] = [[{\n \"id\": \"06006\",\n \ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon.\ - \ Firearm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 06006\"] = [[{\n \"id\": \"06006\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Becky|\"] = [[{\n \"id\": \"06006\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon.\ - \ Firearm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Rookie Mistake|\"] = [[{\n \"id\": \"06007\",\n \"type\": \"Treachery\",\n \ - \ \"class\": \"Neutral\",\n \"traits\": \"Blunder. Flaw.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"06007\"] = [[{\n \"id\": \"\ - 06007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Blunder. Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\n\ - allCards[\"Occult Evidence|\"] = [[{\n \"id\": \"06008\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Insight. Research.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"06008\"] = [[{\n \"id\": \"\ - 06008\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Insight. Research.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\n\ - allCards[\"Shocking Discovery|\"] = [[{\n \"id\": \"06009\",\n \"type\": \"\ - Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Blunder. Mystery.\",\n\ - \ \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"06009\"] = [[{\n\ - \ \"id\": \"06009\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n\ - \ \"traits\": \"Blunder. Mystery.\",\n \"permanent\": false,\n \"weakness\"\ - : true\n}]]\r\nallCards[\"Bounty Contracts|\"] = [[{\n \"id\": \"06010\",\n \ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Job.\",\n \ - \ \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"06010\"] = [[{\n\ - \ \"id\": \"06010\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Job.\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Tony's .38 Long Colt|\"] = [[{\n \"id\": \"06011\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Ammo\",\n \"count\": 3\n }\n}]]\r\nallCards[\"06011\"] =\ - \ [[{\n \"id\": \"06011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"Tony's Quarry|\"] = [[{\n \"id\"\ - : \"06012\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Humanoid. Monster. Deep One.\",\n \"permanent\": false,\n \"weakness\":\ - \ true\n}]]\r\nallCards[\"06012\"] = [[{\n \"id\": \"06012\",\n \"type\": \"\ - Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid. Monster. Deep One.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Gate Box|Worlds\ - \ within Worlds\"] = [[{\n \"id\": \"06013\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06015a\",\n \"\ - count\": 1\n }\n ]\n}]]\r\nallCards[\"06013\"] = [[{\n \"id\": \"06013\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\"\ - ,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \ - \ \"id\": \"06015a\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"\ - Gate Box|\"] = [[{\n \"id\": \"06013\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06015a\",\n \"\ - count\": 1\n }\n ]\n}]]\r\nallCards[\"Detached from Reality|\"] = [[{\n \"\ - id\": \"06014\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - bonded\": [\n {\n \"id\": \"06015b\",\n \"count\": 1\n }\n ]\n\ - }]]\r\nallCards[\"06014\"] = [[{\n \"id\": \"06014\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"bonded\": [\n {\n \"id\": \"06015b\",\n \ - \ \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Dream-Gate|\"] = [[{\n \"id\"\ - : \"06015a\",\n \"type\": \"Location\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Dreamlands.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \ - \ \"id\": \"06013\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n\ - }]]\r\nallCards[\"06015a\"] = [[{\n \"id\": \"06015a\",\n \"type\": \"Location\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Dreamlands.\",\n \"permanent\"\ - : false,\n \"bonded_to\": [\n {\n \"id\": \"06013\",\n \"count\"\ - : 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"Dream-Gate|\"] = [[{\n\ - \ \"id\": \"06015a\",\n \"type\": \"Location\",\n \"class\": \"Neutral\",\n\ - \ \"traits\": \"Dreamlands.\",\n \"permanent\": false,\n \"bonded_to\": [\n\ - \ {\n \"id\": \"06013\",\n \"count\": 1\n }\n ],\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Patrice's Violin|My Muse\"] = [[{\n \"id\": \"06016\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Instrument.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06016\"]\ - \ = [[{\n \"id\": \"06016\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Instrument.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Patrice's Violin|\"] = [[{\n \"id\": \"06016\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Instrument.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Watcher from\ - \ Another Dimension|\"] = [[{\n \"id\": \"06017\",\n \"type\": \"Enemy\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Monster. Extradimensional.\",\n \"\ - permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"06017\"] = [[{\n\ - \ \"id\": \"06017\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Monster. Extradimensional.\",\n \"permanent\": false,\n \"weakness\"\ - : true\n}]]\r\nallCards[\"The Hungering Blade (1)|Calamitous Blade of Celepha\uFFFD\ - s\"] = [[{\n \"id\": \"06018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Item. Weapon. Melee. Relic. Cursed.\",\n \"level\": 1,\n \ - \ \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \ - \ \"id\": \"06019\",\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"06018\"\ - ] = [[{\n \"id\": \"06018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Item. Weapon. Melee. Relic. Cursed.\",\n \"level\": 1,\n \ - \ \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \ - \ \"id\": \"06019\",\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"The Hungering\ - \ Blade (1)|\"] = [[{\n \"id\": \"06018\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Item. Weapon. Melee. Relic. Cursed.\",\n \"\ - level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n\ - \ {\n \"id\": \"06019\",\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"\ - Bloodlust|\"] = [[{\n \"id\": \"06019\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"bonded_to\"\ - : [\n {\n \"id\": \"06018\",\n \"count\": 3\n }\n ],\n \"weakness\"\ - : true\n}]]\r\nallCards[\"06019\"] = [[{\n \"id\": \"06019\",\n \"type\": \"\ - Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\"\ - : false,\n \"bonded_to\": [\n {\n \"id\": \"06018\",\n \"count\"\ - : 3\n }\n ],\n \"weakness\": true\n}]]\r\nallCards[\"Solemn Vow|\"] = [[{\n\ - \ \"id\": \"06020\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"06020\"] = [[{\n \"id\": \"06020\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Segment\ - \ of Onyx (1)|\"] = [[{\n \"id\": \"06021\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Item. Relic. Occult.\",\n \"level\": 1,\n \"\ - permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"\ - id\": \"06022\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"06021\"] =\ - \ [[{\n \"id\": \"06021\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n\ - \ \"traits\": \"Item. Relic. Occult.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06022\",\n \ - \ \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Segment of Onyx (1) (Taboo)|\"\ - ] = [[{\n \"id\": \"06021-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Relic. Occult.\",\n \"level\": 1,\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06022\"\ - ,\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Pendant of the Queen|Of Nothing\ - \ at All\"] = [[{\n \"id\": \"06022\",\n \"type\": \"Asset\",\n \"class\":\ - \ \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"\ - bonded_to\": [\n {\n \"id\": \"06021\",\n \"count\": 1\n }\n \ - \ ],\n \"weakness\": false\n}]]\r\nallCards[\"06022\"] = [[{\n \"id\": \"06022\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\"\ - ,\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06021\"\ - ,\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"\ - Pendant of the Queen (Taboo)|Of Nothing at All\"] = [[{\n \"id\": \"06022-t\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\"\ - ,\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06021\"\ - ,\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"\ - Pendant of the Queen|\"] = [[{\n \"id\": \"06022\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n\ - \ \"bonded_to\": [\n {\n \"id\": \"06021\",\n \"count\": 1\n \ - \ }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"Pendant of the Queen (Taboo)|\"\ - ] = [[{\n \"id\": \"06022-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"bonded_to\":\ - \ [\n {\n \"id\": \"06021\",\n \"count\": 1\n }\n ],\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Astounding Revelation|\"] = [[{\n \"id\": \"06023\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Research.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 06023\"] = [[{\n \"id\": \"06023\",\n \"type\": \"Event\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Research.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Crystallizer of Dreams|\"] = [[{\n \ - \ \"id\": \"06024\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Item. Relic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"bonded\": [\n {\n \"id\": \"06025\",\n \"count\": 1\n\ - \ }\n ]\n}]]\r\nallCards[\"06024\"] = [[{\n \"id\": \"06024\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n\ - \ \"id\": \"06025\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"\ - Guardian of the Crystallizer|\"] = [[{\n \"id\": \"06025\",\n \"type\": \"Enemy\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Monster.\",\n \"permanent\": false,\n\ - \ \"bonded_to\": [\n {\n \"id\": \"06024\",\n \"count\": 1\n \ - \ }\n ],\n \"weakness\": true\n}]]\r\nallCards[\"06025\"] = [[{\n \"id\": \"\ - 06025\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Monster.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\"\ - : \"06024\",\n \"count\": 1\n }\n ],\n \"weakness\": true\n}]]\r\nallCards[\"\ - Easy Mark (1)|\"] = [[{\n \"id\": \"06026\",\n \"type\": \"Event\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"06026\"] = [[{\n \"id\": \"06026\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n\ - \ \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Stargazing (1)|\"] = [[{\n \"id\": \"06027\",\n \"type\": \"Event\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Insight. Augury.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06028\"\ - ,\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"06027\"] = [[{\n \"id\"\ - : \"06027\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\":\ - \ \"Insight. Augury.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"bonded\": [\n {\n \"id\": \"06028\",\n \"count\": 1\n\ - \ }\n ]\n}]]\r\nallCards[\"The Stars Are Right|\"] = [[{\n \"id\": \"06028\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\"\ - ,\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06027\"\ - ,\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"\ - 06028\"] = [[{\n \"id\": \"06028\",\n \"type\": \"Event\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Augury.\",\n \"permanent\": false,\n \"bonded_to\"\ - : [\n {\n \"id\": \"06027\",\n \"count\": 1\n }\n ],\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Open Gate|\"] = [[{\n \"id\": \"06029\",\n \"type\"\ - : \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06029\"\ - ] = [[{\n \"id\": \"06029\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Miss Doyle (1)|Cat General of Ulthar\"] = [[{\n \"\ - id\": \"06030\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Ally. Creature. Dreamlands.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06031\",\n \ - \ \"count\": 1\n },\n {\n \"id\": \"06032\",\n \"count\": 1\n\ - \ },\n {\n \"id\": \"06033\",\n \"count\": 1\n }\n ]\n}]]\r\ - \nallCards[\"06030\"] = [[{\n \"id\": \"06030\",\n \"type\": \"Asset\",\n \"\ - class\": \"Survivor\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n\ - \ \"id\": \"06031\",\n \"count\": 1\n },\n {\n \"id\": \"\ - 06032\",\n \"count\": 1\n },\n {\n \"id\": \"06033\",\n \"\ - count\": 1\n }\n ]\n}]]\r\nallCards[\"Miss Doyle (1)|\"] = [[{\n \"id\":\ - \ \"06030\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Ally. Creature. Dreamlands.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06031\",\n \ - \ \"count\": 1\n },\n {\n \"id\": \"06032\",\n \"count\": 1\n\ - \ },\n {\n \"id\": \"06033\",\n \"count\": 1\n }\n ]\n}]]\r\ - \nallCards[\"Hope|\"] = [[{\n \"id\": \"06031\",\n \"type\": \"Asset\",\n \"\ - class\": \"Survivor\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\"\ - : false,\n \"bonded_to\": [\n {\n \"id\": \"06030\",\n \"count\"\ - : 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"06031\"] = [[{\n \"\ - id\": \"06031\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"bonded_to\":\ - \ [\n {\n \"id\": \"06030\",\n \"count\": 1\n }\n ],\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Zeal|\"] = [[{\n \"id\": \"06032\",\n \"type\": \"\ - Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature. Dreamlands.\"\ - ,\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06030\"\ - ,\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"\ - 06032\"] = [[{\n \"id\": \"06032\",\n \"type\": \"Asset\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\":\ - \ false,\n \"bonded_to\": [\n {\n \"id\": \"06030\",\n \"count\"\ - : 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"Augur|\"] = [[{\n \ - \ \"id\": \"06033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Ally. Creature. Dreamlands.\",\n \"permanent\": false,\n \"bonded_to\"\ - : [\n {\n \"id\": \"06030\",\n \"count\": 1\n }\n ],\n \"weakness\"\ - : false\n}]]\r\nallCards[\"06033\"] = [[{\n \"id\": \"06033\",\n \"type\": \"\ - Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature. Dreamlands.\"\ - ,\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06030\"\ - ,\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"\ - Fortuitous Discovery|\"] = [[{\n \"id\": \"06034\",\n \"type\": \"Event\",\n\ - \ \"class\": \"Survivor\",\n \"traits\": \"Fortune. Insight.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06034\"\ - ] = [[{\n \"id\": \"06034\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Fortune. Insight.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Self-Centered|\"] = [[{\n \"id\": \"\ - 06035\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\"\ - : 1\n}]]\r\nallCards[\"06035\"] = [[{\n \"id\": \"06035\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Kleptomania|\"\ - ] = [[{\n \"id\": \"06036\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness. Talent.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"06036\"] = [[{\n \"id\"\ - : \"06036\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Madness. Talent.\",\n \"permanent\": false,\n \"weakness\": true,\n \"\ - basicWeaknessCount\": 1\n}]]\r\nallCards[\"Narcolepsy|\"] = [[{\n \"id\": \"\ - 06037\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\"\ - : 1\n}]]\r\nallCards[\"06037\"] = [[{\n \"id\": \"06037\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Your Worst\ - \ Nightmare|\"] = [[{\n \"id\": \"06038\",\n \"type\": \"Enemy\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Monster.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"06038\"] = [[{\n \"id\"\ - : \"06038\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Monster.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\"\ - : 1\n}]]\r\nallCards[\"Randolph Carter|Expert Dreamer\"] = [[{\n \"id\": \"06059\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06059\"]\ - \ = [[{\n \"id\": \"06059\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Randolph Carter|\"] = [[{\n \"id\": \"06059\",\n \ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Randolph\ - \ Carter|Chained to the Waking World\"] = [[{\n \"id\": \"06079\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06079\"] = [[{\n\ - \ \"id\": \"06079\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Randolph Carter|\"] = [[{\n \"id\": \"06079\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Dr. Shivani\ - \ Maheswaran|Emergency Physician\"] = [[{\n \"id\": \"06080\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Medic.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"06080\"] = [[{\n \"id\": \"\ - 06080\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally. Medic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Dr. Shivani Maheswaran|\"] = [[{\n \"id\": \"06080\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Medic.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Bloodstained Dagger|The Murder\ - \ Weapon\"] = [[{\n \"id\": \"84006\",\n \"type\": \"Asset\",\n \"class\":\ - \ \"Neutral\",\n \"traits\": \"Item. Weapon. Melee. Cursed.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"84006\"] = [[{\n \"id\": \"\ - 84006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Item. Weapon. Melee. Cursed.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Bloodstained Dagger|\"] = [[{\n \"id\": \"84006\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon. Melee.\ - \ Cursed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - What Have You Done?|\"] = [[{\n \"id\": \"84007\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"84007\"] = [[{\n \"id\": \"84007\",\n\ - \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Sergeant Monroe|Two\ - \ Days Until Retirement\"] = [[{\n \"id\": \"84008\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Police.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"84008\"] = [[{\n \"id\": \"\ - 84008\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally. Police.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Sergeant Monroe|\"] = [[{\n \"id\": \"84008\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Ally. Police.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Alien Device|Machinations from Beyond\"\ - ] = [[{\n \"id\": \"84028\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Lead. Extraterrestrial.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"84028\"] = [[{\n \"id\": \"84028\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Extraterrestrial.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Alien Device|\"\ - ] = [[{\n \"id\": \"84028\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Lead. Extraterrestrial.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Manager's Key|Stained by Blood\"] = [[{\n \"id\":\ - \ \"84031\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Lead. Key.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 84031\"] = [[{\n \"id\": \"84031\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Lead. Key.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Manager's Key|\"] = [[{\n \"id\": \"84031\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Key.\",\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Tome of Rituals|Blasphemous\ - \ Volume\"] = [[{\n \"id\": \"84034\",\n \"type\": \"Asset\",\n \"class\":\ - \ \"Neutral\",\n \"traits\": \"Lead. Tome.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"84034\"] = [[{\n \"id\": \"84034\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Tome.\",\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Tome of Rituals|\"\ - ] = [[{\n \"id\": \"84034\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Lead. Tome.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Sinister Solution|Vile Concoction\"] = [[{\n \"id\": \"84037\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Science.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"84037\"]\ - \ = [[{\n \"id\": \"84037\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Lead. Science.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Sinister Solution|\"] = [[{\n \"id\": \"84037\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Science.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Time-Worn\ - \ Locket|Mournful Vision of the Past\"] = [[{\n \"id\": \"84040\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Charm.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"84040\"] = [[{\n\ - \ \"id\": \"84040\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Lead. Charm.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Time-Worn Locket|\"] = [[{\n \"id\": \"84040\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Lead. Charm.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"First Watch|\"]\ - \ = [[{\n \"id\": \"06110\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"06110\"] = [[{\n \"id\": \"06110\",\n \"\ - type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\",\n \ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Daring|\"] = [[{\n \"id\": \"06111\",\n \"type\": \"Skill\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"06111\"] = [[{\n \"id\": \"06111\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Innate.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Dream Diary|Untranslated\"] = [[{\n \"id\": \"06112\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n\ - \ \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"\ - 06112\"] = [[{\n \"id\": \"06112\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\"\ - ,\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Dream Diary|\"] = [[{\n \ - \ \"id\": \"06112\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\"\ - : \"Item. Tome. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n\ - \ }\n ]\n}]]\r\nallCards[\"Essence of the Dream|\"] = [[{\n \"id\": \"06113\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced.\ - \ Expert.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\"\ - : \"06112\",\n \"count\": 1\n },\n {\n \"id\": \"06236\",\n \ - \ \"count\": 1\n },\n {\n \"id\": \"06237\",\n \"count\": 1\n\ - \ },\n {\n \"id\": \"06238\",\n \"count\": 1\n }\n ],\n \"\ - weakness\": false\n}]]\r\nallCards[\"06113\"] = [[{\n \"id\": \"06113\",\n \"\ - type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced. Expert.\"\ - ,\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06112\"\ - ,\n \"count\": 1\n },\n {\n \"id\": \"06236\",\n \"count\"\ - : 1\n },\n {\n \"id\": \"06237\",\n \"count\": 1\n },\n \ - \ {\n \"id\": \"06238\",\n \"count\": 1\n }\n ],\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Followed|\"] = [[{\n \"id\": \"06114\",\n \"type\"\ - : \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06114\"\ - ] = [[{\n \"id\": \"06114\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Momentum (1)|\"] = [[{\n \"id\": \"06115\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Practiced.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 06115\"] = [[{\n \"id\": \"06115\",\n \"type\": \"Skill\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Practiced.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Scroll of Prophecies|\"] = [[{\n \"\ - id\": \"06116\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\"\ - : \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\":\ - \ false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\"\ - ,\n \"count\": 4\n }\n}]]\r\nallCards[\"06116\"] = [[{\n \"id\": \"06116\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n\ - \ }\n}]]\r\nallCards[\"Read the Signs|\"] = [[{\n \"id\": \"06117\",\n \"type\"\ - : \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06117\"\ - ] = [[{\n \"id\": \"06117\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Jessica Hyde (1)|Wrong Place, Wrong Time\"] = [[{\n\ - \ \"id\": \"06118\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Ally. Wayfarer. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"06118\"] = [[{\n \"id\": \"06118\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Wayfarer.\ - \ Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Jessica Hyde (1)|\"] = [[{\n \"id\": \"06118\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Wayfarer. Cursed.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Virgil Gray|Writer of Strange Tales\"] = [[{\n \"id\": \"06144\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06144\"] = [[{\n\ - \ \"id\": \"06144\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Virgil Gray|\"] = [[{\n \"id\": \"06144\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Tetsuo Mori|Too Noble for His\ - \ Own Good\"] = [[{\n \"id\": \"06155\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Ally. Police.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"06155\"] = [[{\n \"id\": \"\ - 06155\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Ally. Police.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Tetsuo Mori|\"] = [[{\n \"id\": \"06155\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Police.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"Fool\ - \ me once...\\\" (1)|\"] = [[{\n \"id\": \"06156\",\n \"type\": \"Event\",\n\ - \ \"class\": \"Guardian\",\n \"traits\": \"Insight. Tactic.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06156\"\ - ] = [[{\n \"id\": \"06156\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Insight. Tactic.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Self-Sacrifice|\"] = [[{\n \"id\":\ - \ \"06157\",\n \"type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"06157\"] = [[{\n \"id\": \"06157\",\n \"type\": \"Skill\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Otherworld Codex\ - \ (2)|\"] = [[{\n \"id\": \"06158\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"06158\"] = [[{\n \"id\"\ - : \"06158\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\":\ - \ false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"Dream-Enhancing Serum|\"] = [[{\n\ - \ \"id\": \"06159\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Item. Science.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"06159\"] = [[{\n \"id\": \"06159\",\n \"\ - type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Science.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - \\\"Let God sort them out...\\\"|\"] = [[{\n \"id\": \"06160\",\n \"type\":\ - \ \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic. Fated.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 06160\"] = [[{\n \"id\": \"06160\",\n \"type\": \"Event\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Tactic. Fated.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Swift Reload (2)|\"] = [[{\n\ - \ \"id\": \"06161\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Tactic. Trick.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"06161\"] = [[{\n \"id\": \"06161\",\n \"type\": \"\ - Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic. Trick.\",\n \"level\"\ - : 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Gregory\ - \ Gry|Muckraker\"] = [[{\n \"id\": \"06162\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Ally. Criminal. Dreamer.\",\n \"level\": 0,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06162\"] = [[{\n\ - \ \"id\": \"06162\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Ally. Criminal. Dreamer.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Gregory Gry|\"] = [[{\n \"id\": \"06162\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\ - \ Dreamer.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Healing Words|\"] = [[{\n \"id\": \"06163\",\n \"type\": \"\ - Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - 06163\"] = [[{\n \"id\": \"06163\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Ethereal Form|\"] = [[{\n\ - \ \"id\": \"06164\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"06164\"] = [[{\n \"id\": \"06164\",\n \"type\": \"\ - Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Scrounge for\ - \ Supplies|\"] = [[{\n \"id\": \"06165\",\n \"type\": \"Event\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"06165\"] = [[{\n \"id\": \"\ - 06165\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Brute Force (1)|\"] = [[{\n \"id\": \"06166\",\n \"type\"\ - : \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 06166\"] = [[{\n \"id\": \"06166\",\n \"type\": \"Skill\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Versatile (2)|\"] = [[{\n \ - \ \"id\": \"06167\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"06167\"] = [[{\n \"id\": \"06167\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"level\":\ - \ 2,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"The Silver\ - \ Key|Key to the Gate of Dreams\"] = [[{\n \"id\": \"06189\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Charm. Relic.\",\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06189\"] =\ - \ [[{\n \"id\": \"06189\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Charm. Relic.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"The Silver Key|\"] = [[{\n \"id\": \"06189\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Charm. Relic.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\".35 Winchester|\"\ - ] = [[{\n \"id\": \"06195\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"06195\"] =\ - \ [[{\n \"id\": \"06195\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\".35 Winchester\ - \ (Taboo)|\"] = [[{\n \"id\": \"06195-t\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"\ - Safeguard (2)|\"] = [[{\n \"id\": \"06196\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"06196\"] = [[{\n \"id\": \"\ - 06196\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Talent.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Practice Makes Perfect|\"] = [[{\n \"id\": \"06197\",\n \"\ - type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Gambit. Tactic.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 06197\"] = [[{\n \"id\": \"06197\",\n \"type\": \"Event\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Gambit. Tactic.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Extensive Research (1)|\"]\ - \ = [[{\n \"id\": \"06198\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"06198\"] = [[{\n \"id\": \"06198\",\n \"\ - type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"\ - level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Three Aces (1)|\"] = [[{\n \"id\": \"06199\",\n \"type\": \"Skill\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Fortune. Practiced.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"06199\"] = [[{\n \"id\": \"\ - 06199\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\ - \ Practiced.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Three Aces (1) (Taboo)|\"] = [[{\n \"id\": \"06199-t\",\n \ - \ \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Practiced.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Burglary (2)|\"] = [[{\n \"id\": \"06200\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Talent. Illicit.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"06200\"] = [[{\n \"id\": \"\ - 06200\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\ - \ Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Spectral Razor|\"] = [[{\n \"id\": \"06201\",\n \"type\":\ - \ \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06201\"\ - ] = [[{\n \"id\": \"06201\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Word of Command (2)|\"] = [[{\n \"id\": \"06202\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 06202\"] = [[{\n \"id\": \"06202\",\n \"type\": \"Event\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Moonstone|\"] = [[{\n \"id\": \"06203\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Relic.\ - \ Dreamlands.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"06203\"] = [[{\n \"id\": \"06203\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Item. Relic. Dreamlands.\",\n \ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Sharp Vision (1)|\"] = [[{\n \"id\": \"06204\",\n \"type\": \"Skill\",\n \"\ - class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 1,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06204\"] =\ - \ [[{\n \"id\": \"06204\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Innate. Developed.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Lucid Dreaming (2)|\"] = [[{\n \"id\"\ - : \"06205\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"06205\"] = [[{\n \"id\": \"06205\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Virgil Gray|Truly\ - \ Inspired\"] = [[{\n \"id\": \"06224\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \ - \ \"weakness\": false\n}]]\r\nallCards[\"06224\"] = [[{\n \"id\": \"06224\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Virgil Gray|\"\ - ] = [[{\n \"id\": \"06224\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"The Captain|Dreamlands Navigator\"] = [[{\n \"id\"\ - : \"06225\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\n\ - allCards[\"06225\"] = [[{\n \"id\": \"06225\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Ally. Dreamer.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"The Captain|\"] = [[{\n \"id\": \"\ - 06225\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally. Dreamer.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - False Awakening|\"] = [[{\n \"id\": \"06233\",\n \"type\": \"Treachery\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"06233\"] = [[{\n \"id\": \"06233\",\n\ - \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Heroic Rescue\ - \ (2)|\"] = [[{\n \"id\": \"06234\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"06234\"] = [[{\n \"id\": \"\ - 06234\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Spirit. Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\":\ - \ false\n}]]\r\nallCards[\"Leadership (2)|\"] = [[{\n \"id\": \"06235\",\n \"\ - type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced.\",\n\ - \ \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 06235\"] = [[{\n \"id\": \"06235\",\n \"type\": \"Skill\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Practiced.\",\n \"level\": 2,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"Dream Diary (3)|Dreams of an\ - \ Explorer\"] = [[{\n \"id\": \"06236\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\"\ - ,\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"06236\"] = [[{\n \"id\"\ - : \"06236\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Item. Tome. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n\ - \ }\n ]\n}]]\r\nallCards[\"Dream Diary (3)|\"] = [[{\n \"id\": \"06236\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\ - \ Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n\ - \ ]\n}]]\r\nallCards[\"Dream Diary (3)|Dreams of a Madman\"] = [[{\n \"id\"\ - : \"06237\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Item. Tome. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"bonded\": [\n {\n \"id\": \"06113\",\n \"count\": 1\n\ - \ }\n ]\n}]]\r\nallCards[\"06237\"] = [[{\n \"id\": \"06237\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n\ - \ \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\"\ - : [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}]]\r\n\ - allCards[\"Dream Diary (3)|\"] = [[{\n \"id\": \"06237\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\"\ - : 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n\ - \ \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"\ - Dream Diary (3)|Dreams of a Child\"] = [[{\n \"id\": \"06238\",\n \"type\":\ - \ \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n\ - \ \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"bonded\"\ - : [\n {\n \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}]]\r\n\ - allCards[\"06238\"] = [[{\n \"id\": \"06238\",\n \"type\": \"Asset\",\n \"\ - class\": \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 3,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"bonded\": [\n {\n \ - \ \"id\": \"06113\",\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Dream\ - \ Diary (3)|\"] = [[{\n \"id\": \"06238\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Item. Tome. Charm.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06113\"\ - ,\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"Haste (2)|\"] = [[{\n \"\ - id\": \"06239\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"06239\"] = [[{\n \"id\": \"06239\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Daredevil (2)|\"\ - ] = [[{\n \"id\": \"06240\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Fortune. Practiced.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"06240\"] = [[{\n \"id\": \"06240\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune. Practiced.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Empower Self (2)|Stamina\"] = [[{\n \"id\": \"06241\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06241\"] = [[{\n\ - \ \"id\": \"06241\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Empower Self (2)|\"] = [[{\n \"id\": \"06241\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n\ - \ \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Empower Self (2)|Alacrity\"] = [[{\n \"id\": \"06242\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06242\"] = [[{\n\ - \ \"id\": \"06242\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Empower Self (2)|\"] = [[{\n \"id\": \"06242\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n\ - \ \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Empower Self (2)|Acuity\"] = [[{\n \"id\": \"06243\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n \"level\": 2,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06243\"] = [[{\n\ - \ \"id\": \"06243\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Empower Self (2)|\"] = [[{\n \"id\": \"06243\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\",\n\ - \ \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Twila Katherine Price (3)|Lost in a Dream\"] = [[{\n \"id\": \"06244\",\n \"\ - type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Artist. Dreamer.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 06244\"] = [[{\n \"id\": \"06244\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Ally. Artist. Dreamer.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Twila Katherine Price (3)|\"\ - ] = [[{\n \"id\": \"06244\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Ally. Artist. Dreamer.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"A Glimmer of Hope|\"] = [[{\n\ - \ \"id\": \"06245\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Blessed. Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \ - \ \"weakness\": false\n}]]\r\nallCards[\"06245\"] = [[{\n \"id\": \"06245\",\n\ - \ \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Blessed.\ - \ Fortune.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Expeditious Retreat (1)|\"] = [[{\n \"id\": \"06246\",\n \"\ - type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Developed.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 06246\"] = [[{\n \"id\": \"06246\",\n \"type\": \"Skill\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Richard Upton Pickman|Venerable\ - \ Ghoul\"] = [[{\n \"id\": \"06266\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Ally. Ghoul. Artist.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"06266\"] = [[{\n \"id\": \"06266\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Ghoul.\ - \ Artist.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Richard Upton Pickman|\"] = [[{\n \"id\": \"06266\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Ally. Ghoul. Artist.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"False Awakening|\"] = [[{\n\ - \ \"id\": \"06275\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n\ - \ \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\ - \nallCards[\"06275\"] = [[{\n \"id\": \"06275\",\n \"type\": \"Treachery\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"Empty Vessel (4)|Abandoned by the Gods\"\ - ] = [[{\n \"id\": \"06276\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Item. Relic. Blessed.\",\n \"level\": 4,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06277\"\ - ,\n \"count\": 1\n }\n ]\n}]]\r\nallCards[\"06276\"] = [[{\n \"id\"\ - : \"06276\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Item. Relic. Blessed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"bonded\": [\n {\n \"id\": \"06277\",\n \"count\": 1\n\ - \ }\n ]\n}]]\r\nallCards[\"Empty Vessel (4)|\"] = [[{\n \"id\": \"06276\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic.\ - \ Blessed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"bonded\": [\n {\n \"id\": \"06277\",\n \"count\": 1\n }\n\ - \ ]\n}]]\r\nallCards[\"Wish Eater|Jewel of the Gods\"] = [[{\n \"id\": \"06277\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Relic.\ - \ Blessed.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\"\ - : \"06276\",\n \"count\": 1\n }\n ],\n \"weakness\": false\n}]]\r\n\ - allCards[\"06277\"] = [[{\n \"id\": \"06277\",\n \"type\": \"Asset\",\n \"\ - class\": \"Guardian\",\n \"traits\": \"Item. Relic. Blessed.\",\n \"permanent\"\ - : false,\n \"bonded_to\": [\n {\n \"id\": \"06276\",\n \"count\"\ - : 1\n }\n ],\n \"weakness\": false\n}]]\r\nallCards[\"Wish Eater|\"] = [[{\n\ - \ \"id\": \"06277\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Item. Relic. Blessed.\",\n \"permanent\": false,\n \"bonded_to\"\ - : [\n {\n \"id\": \"06276\",\n \"count\": 1\n }\n ],\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Surprising Find (1)|\"] = [[{\n \"id\": \"06278\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Fortune.\ - \ Research.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"06278\"] = [[{\n \"id\": \"06278\",\n \"type\": \"Skill\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Fortune. Research.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Old Book\ - \ of Lore (3)|\"] = [[{\n \"id\": \"06279\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Secret\",\n \"count\": 2\n }\n}]]\r\nallCards[\"06279\"]\ - \ = [[{\n \"id\": \"06279\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Secret\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Garrote Wire (2)|\"] =\ - \ [[{\n \"id\": \"06280\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n\ - \ \"traits\": \"Item. Weapon.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"06280\"] = [[{\n \"id\": \"06280\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Delilah O'Rourke (3)|Syndicate Assassin\"] = [[{\n \"id\": \"06281\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal. Syndicate.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 06281\"] = [[{\n \"id\": \"06281\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Ally. Criminal. Syndicate.\",\n \"level\": 3,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Delilah O'Rourke\ - \ (3)|\"] = [[{\n \"id\": \"06281\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Ally. Criminal. Syndicate.\",\n \"level\": 3,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Summoned Hound (1)|\"\ - ] = [[{\n \"id\": \"06282\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Ally. Summon.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06283\",\n \ - \ \"count\": 1\n }\n ]\n}]]\r\nallCards[\"06282\"] = [[{\n \"id\": \"\ - 06282\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally.\ - \ Summon.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"bonded\": [\n {\n \"id\": \"06283\",\n \"count\": 1\n }\n\ - \ ]\n}]]\r\nallCards[\"Unbound Beast|\"] = [[{\n \"id\": \"06283\",\n \"type\"\ - : \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Monster. Extradimensional.\ - \ Tindalos.\",\n \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\"\ - : \"06282\",\n \"count\": 1\n }\n ],\n \"weakness\": true\n}]]\r\nallCards[\"\ - 06283\"] = [[{\n \"id\": \"06283\",\n \"type\": \"Enemy\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"permanent\"\ - : false,\n \"bonded_to\": [\n {\n \"id\": \"06282\",\n \"count\"\ - : 1\n }\n ],\n \"weakness\": true\n}]]\r\nallCards[\"Nothing Left to Lose\ - \ (3)|\"] = [[{\n \"id\": \"06284\",\n \"type\": \"Event\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"06284\"] = [[{\n \"id\": \"06284\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - The Black Cat (5)|A Liar, or a Prophet, or Both\"] = [[{\n \"id\": \"06285\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Avatar.\ - \ Dreamlands.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"06285\"] = [[{\n \"id\": \"06285\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Avatar. Dreamlands.\",\n \ - \ \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - The Black Cat (5)|\"] = [[{\n \"id\": \"06285\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Ally. Avatar. Dreamlands.\",\n \"level\"\ - : 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Daisy's\ - \ Tote Bag|Advanced\"] = [[{\n \"id\": \"90002\",\n \"type\": \"Asset\",\n \ - \ \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"90002\"] = [[{\n \"id\": \"90002\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Necronomicon|John\ - \ Dee Translation (Advanced)\"] = [[{\n \"id\": \"90003\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"90003\"] = [[{\n \"id\": \"\ - 90003\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Item. Tome.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"\ - The Necronomicon|\"] = [[{\n \"id\": \"90003\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Item. Tome.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"Spiritual Resolve (5)|\"] = [[{\n \"\ - id\": \"06323\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Ritual.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"06323\"] = [[{\n \"id\": \"06323\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Ritual.\",\n \"level\": 5,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Abigail Foreman\ - \ (4)|Library Intern\"] = [[{\n \"id\": \"06324\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\":\ - \ 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06324\"\ - ] = [[{\n \"id\": \"06324\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 4,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Abigail Foreman (4)|\"] = [[{\n \"\ - id\": \"06324\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\"\ - : \"Ally. Miskatonic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"The Eye of Truth (5)|\"] = [[{\n \"id\": \"06325\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell. Practiced.\"\ - ,\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 06325\"] = [[{\n \"id\": \"06325\",\n \"type\": \"Skill\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Spell. Practiced.\",\n \"level\": 5,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Joey \\\"The Rat\\\" Vigil\ - \ (3)|Lookin' Out for #1\"] = [[{\n \"id\": \"06326\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 3,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"06326\"] =\ - \ [[{\n \"id\": \"06326\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n\ - \ \"traits\": \"Ally. Criminal.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Joey \\\"The Rat\\\" Vigil (3)|\"] =\ - \ [[{\n \"id\": \"06326\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n\ - \ \"traits\": \"Ally. Criminal.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Sawed-Off Shotgun (5)|\"] = [[{\n \"\ - id\": \"06327\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 5,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Ammo\",\n \"count\": 2\n }\n}]]\r\nallCards[\"06327\"] = [[{\n \"id\"\ - : \"06327\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"\ - Item. Weapon. Firearm. Illicit.\",\n \"level\": 5,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Ammo\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Mind's Eye (2)|\"] = [[{\n\ - \ \"id\": \"06328\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Ritual.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"06328\"] = [[{\n \"id\": \"06328\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"Shining Trapezohedron (4)|\"] = [[{\n \"id\": \"06329\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\"\ - ,\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 06329\"] = [[{\n \"id\": \"06329\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"Nightmare Bauble (3)|\"] =\ - \ [[{\n \"id\": \"06330\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Item. Charm. Cursed.\",\n \"level\": 3,\n \"permanent\":\ - \ false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"06331\"\ - ,\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"06330\"] = [[{\n \"id\"\ - : \"06330\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Item. Charm. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"bonded\": [\n {\n \"id\": \"06331\",\n \"count\": 3\n\ - \ }\n ]\n}]]\r\nallCards[\"Dream Parasite|\"] = [[{\n \"id\": \"06331\",\n\ - \ \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n\ - \ \"permanent\": false,\n \"bonded_to\": [\n {\n \"id\": \"06330\",\n\ - \ \"count\": 3\n }\n ],\n \"weakness\": true\n}]]\r\nallCards[\"06331\"\ - ] = [[{\n \"id\": \"06331\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"bonded_to\": [\n \ - \ {\n \"id\": \"06330\",\n \"count\": 3\n }\n ],\n \"weakness\"\ - : true\n}]]\r\nallCards[\"Scavenging (2)|\"] = [[{\n \"id\": \"06332\",\n \"\ - type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \ - \ \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 06332\"] = [[{\n \"id\": \"06332\",\n \"type\": \"Asset\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Molly Maxwell|The Exotic Morgana\"]\ - \ = [[{\n \"id\": \"98017\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"98017\"] = [[{\n \"id\": \"98017\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Assistant.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Molly Maxwell|\"\ - ] = [[{\n \"id\": \"98017\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Assistant.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Yaztaroth|\"] = [[{\n \"id\": \"98018\",\n \"type\"\ - : \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse. Pact.\",\n\ - \ \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"98018\"] = [[{\n\ - \ \"id\": \"98018\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n\ - \ \"traits\": \"Curse. Pact.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"University Chemist|\"] = [[{\n \"id\": \"85025\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Bystander. Miskatonic.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"85025\"]\ - \ = [[{\n \"id\": \"85025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Bystander. Miskatonic.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Meteorite Sample|\"] = [[{\n \"id\": \"85026\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\",\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"85026\"] =\ - \ [[{\n \"id\": \"85026\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"The Military's Plan|\"] = [[{\n \"id\": \"85028\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"85028\"] = [[{\n \"id\": \"85028\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"permanent\": false,\n \"weakness\":\ - \ false\n}]]\r\nallCards[\"Universal Solvent|\"] = [[{\n \"id\": \"85029\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Science.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"85029\"]\ - \ = [[{\n \"id\": \"85029\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Science.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Pet Oozeling|\"] = [[{\n \"id\": \"85030\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Monster.\ - \ Ooze.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 85030\"] = [[{\n \"id\": \"85030\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Ally. Monster. Ooze.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Mi-Go Weapon|\"] = [[{\n \"id\": \"\ - 85031\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Weapon. Science.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 85031\"] = [[{\n \"id\": \"85031\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Weapon. Science.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Lt. Wilson Stewart|Logistical Genius\"] =\ - \ [[{\n \"id\": \"85032\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"85032\"] = [[{\n \"id\": \"85032\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency. Veteran.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Lt. Wilson\ - \ Stewart|\"] = [[{\n \"id\": \"85032\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Cloak of the Outer Realm|Interwoven\ - \ Distortion\"] = [[{\n \"id\": \"86051\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Item. Relic. Clothing.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"86051\"] = [[{\n \"id\": \"86051\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\ - \ Clothing.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Cloak of the Outer Realm|\"] = [[{\n \"id\": \"86051\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Clothing.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Pocket Portal|Doorway\ - \ to Another World\"] = [[{\n \"id\": \"86052\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"86052\"] = [[{\n \"id\": \"86052\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Pocket Portal|\"\ - ] = [[{\n \"id\": \"86052\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Dreaded End|Gift of the Void\"] = [[{\n \"id\": \"86053\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"86053\"] =\ - \ [[{\n \"id\": \"86053\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Spell.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Dreaded End|\"] = [[{\n \"id\": \"86053\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Blade of Ark'at|Shellblade\ - \ Tribute\"] = [[{\n \"id\": \"86054\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"86054\"] = [[{\n \"id\": \"\ - 86054\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Item. Relic. Weapon. Melee.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Blade of Ark'at|\"] = [[{\n \"id\": \"86054\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Weapon.\ - \ Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Enchanted Skull|Mask of the Burning Pit\"] = [[{\n \"id\": \"86055\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"86055\"] = [[{\n\ - \ \"id\": \"86055\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Enchanted Skull|\"] = [[{\n \"id\": \"86055\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Blood Eclipse (1)|\"\ - ] = [[{\n \"id\": \"53001\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Spell. Spirit.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"53001\"] = [[{\n \"id\": \"53001\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell.\ - \ Spirit.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Survival Knife (2)|\"] = [[{\n \"id\": \"53002\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon. Melee.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 53002\"] = [[{\n \"id\": \"53002\",\n \"type\": \"Asset\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Truth from Fiction (2)|\"]\ - \ = [[{\n \"id\": \"53003\",\n \"type\": \"Event\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"53003\"] = [[{\n \"id\": \"53003\",\n \"\ - type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"\ - level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Ancient Stone (4)|Transient Thoughts\"] = [[{\n \"id\": \"53004\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"\ - level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 53004\"] = [[{\n \"id\": \"53004\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"Ancient Stone (4)|\"] = [[{\n\ - \ \"id\": \"53004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Item. Relic.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Decorated Skull (3)|Doom Begets Doom\"] = [[{\n \"\ - id\": \"53005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Item. Relic. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"53005\"] = [[{\n \"id\": \"53005\",\n \"type\": \"\ - Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Cursed.\",\n \ - \ \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Decorated Skull (3)|\"] = [[{\n \"id\": \"53005\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Rogue\",\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\"\ - : 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Colt Vest\ - \ Pocket (2)|\"] = [[{\n \"id\": \"53006\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\"\ - : 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"\ - 53006\"] = [[{\n \"id\": \"53006\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"\ - Mists of R'lyeh (2)|\"] = [[{\n \"id\": \"53007\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Charge\",\n \"count\": 5\n }\n}]]\r\nallCards[\"53007\"]\ - \ = [[{\n \"id\": \"53007\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 5\n }\n}]]\r\nallCards[\"The Chthonian Stone (3)|Stygian Waymark\"\ - ] = [[{\n \"id\": \"53008\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Item. Relic. Cursed.\",\n \"level\": 3,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"53008\"] = [[{\n \"id\": \"\ - 53008\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item.\ - \ Relic. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"The Chthonian Stone (3)|\"] = [[{\n \"id\": \"53008\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\ - \ Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Alter Fate (1)|\"] = [[{\n \"id\": \"53009\",\n \"type\":\ - \ \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spell. Blessed.\",\n\ - \ \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 53009\"] = [[{\n \"id\": \"53009\",\n \"type\": \"Event\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"On Your Own (3)|Permanent\"\ - ] = [[{\n \"id\": \"53010\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"53010\"] = [[{\n \"id\": \"53010\",\n \"type\": \"\ - Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\"\ - : 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Backpack\ - \ (2)|\"] = [[{\n \"id\": \"53011\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"53011\"] = [[{\n \"id\": \"53011\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Dendromorphosis|\\\"Natural\\\" Transformation\"] = [[{\n \"id\": \"53012\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse. Flora.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n\ - }]]\r\nallCards[\"53012\"] = [[{\n \"id\": \"53012\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Curse. Flora.\",\n \"permanent\"\ - : false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"\ - Dendromorphosis|\"] = [[{\n \"id\": \"53012\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Curse. Flora.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Offer You\ - \ Cannot Refuse|\"] = [[{\n \"id\": \"53013\",\n \"type\": \"Treachery\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"53013\"\ - ] = [[{\n \"id\": \"53013\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Fine Print|\"] = [[{\n \"id\"\ - : \"53014\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"\ - 53014\"] = [[{\n \"id\": \"53014\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\"\ - : true\n}]]\r\nallCards[\"Sell Your Soul|\"] = [[{\n \"id\": \"53015\",\n \"\ - type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact.\",\n\ - \ \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"53015\"] = [[{\n\ - \ \"id\": \"53015\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n\ - \ \"traits\": \"Pact.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\ - \nallCards[\"Veda Whitsley|Skilled Botanist\"] = [[{\n \"id\": \"53037\",\n \ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"53037\"]\ - \ = [[{\n \"id\": \"53037\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Wayfarer.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Veda Whitsley|\"] = [[{\n \"id\": \"53037\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Wayfarer.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"On the Lam|Advanced\"\ - ] = [[{\n \"id\": \"90009\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"90009\"] = [[{\n \"id\": \"90009\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Tactic.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Hospital Debts|Advanced\"] = [[{\n \ - \ \"id\": \"90010\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n\ - \ \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\ - \nallCards[\"90010\"] = [[{\n \"id\": \"90010\",\n \"type\": \"Treachery\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"Nathaniel Cho|The Boxer\"] = [[{\n \"\ - id\": \"60101\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n\ - \ \"traits\": \"Criminal. Warden.\"\n}]]\r\nallCards[\"60101\"] = [[{\n \"id\"\ - : \"60101\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Criminal. Warden.\"\n}]]\r\nallCards[\"Nathaniel Cho (promo version)|The\ - \ Boxer\"] = [[{\n \"id\": \"60101-promo\",\n \"type\": \"Investigator\",\n\ - \ \"class\": \"Guardian\",\n \"traits\": \"Criminal. Warden.\"\n}]]\r\nallCards[\"\ - Nathaniel Cho (Parallel)|The Boxer\"] = [[{\n \"id\": \"60101-p\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Criminal. Warden.\"\ - \n}]]\r\nallCards[\"Nathaniel Cho (Parallel Front)|The Boxer\"] = [[{\n \"id\"\ - : \"60101-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \ - \ \"traits\": \"Criminal. Warden.\"\n}]]\r\nallCards[\"Nathaniel Cho (Parallel\ - \ Back)|The Boxer\"] = [[{\n \"id\": \"60101-pb\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Criminal. Warden.\"\n}]]\r\nallCards[\"\ - Nathaniel Cho|\"] = [[{\n \"id\": \"60101-m\",\n \"type\": \"Minicard\"\n}]]\r\ - \nallCards[\"Nathaniel Cho|Promo version\"] = [[{\n \"id\": \"60101-promo-m\"\ - ,\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Randall Cho|Concerned Brother\"\ - ] = [[{\n \"id\": \"60102\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Ally. Medic.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"60102\"] = [[{\n \"id\": \"60102\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Medic.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Randall Cho|\"] = [[{\n \"\ - id\": \"60102\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Ally. Medic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Tommy Malloy|\"] = [[{\n \"id\": \"60103\",\n \"type\": \"Enemy\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Humanoid. Criminal. Syndicate.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"60103\"] = [[{\n \"id\": \"\ - 60103\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Humanoid. Criminal. Syndicate.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"Self-Destructive|\"] = [[{\n \"id\": \"60104\",\n \"type\"\ - : \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\"\ - : false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"\ - 60104\"] = [[{\n \"id\": \"60104\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Boxing Gloves|\"] = [[{\n\ - \ \"id\": \"60105\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Item. Weapon.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"60105\"] = [[{\n \"id\": \"60105\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Flesh\ - \ Ward|\"] = [[{\n \"id\": \"60106\",\n \"type\": \"Asset\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Ritual.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"60106\"] = [[{\n \"id\"\ - : \"60106\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Ritual.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"\ - count\": 4\n }\n}]]\r\nallCards[\"Grete Wagner|The Purifier\"] = [[{\n \"id\"\ - : \"60107\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Ally. Hunter.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"60107\"] = [[{\n \"id\": \"60107\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Hunter.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Grete\ - \ Wagner|\"] = [[{\n \"id\": \"60107\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Ally. Hunter.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Relentless|\"] = [[{\n \"\ - id\": \"60109\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"60109\"] = [[{\n \"id\": \"60109\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Safeguard|\"\ - ] = [[{\n \"id\": \"60110\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"60110\"] = [[{\n \"id\": \"60110\",\n \"\ - type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\",\n \ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Clean Them Out|\"] = [[{\n \"id\": \"60111\",\n \"type\": \"Event\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"60111\"] = [[{\n \"id\": \"\ - 60111\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\":\ - \ false\n}]]\r\nallCards[\"Counterpunch|\"] = [[{\n \"id\": \"60112\",\n \"\ - type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 60112\"] = [[{\n \"id\": \"60112\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"Get over here!\\\"|\"]\ - \ = [[{\n \"id\": \"60114\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"60114\"] = [[{\n \"id\": \"60114\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\ - \ Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Glory|\"] = [[{\n \"id\": \"60115\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60115\"] = [[{\n\ - \ \"id\": \"60115\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Monster Slayer|\"] = [[{\n \"id\": \"60116\",\n \"\ - type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\",\n \ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 60116\"] = [[{\n \"id\": \"60116\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"One-Two Punch|\"] = [[{\n \"id\": \"\ - 60117\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Spirit. Tactic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\":\ - \ false\n}]]\r\nallCards[\"60117\"] = [[{\n \"id\": \"60117\",\n \"type\": \"\ - Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Stand Together|\"] = [[{\n \"id\": \"60118\",\n \"type\": \"Event\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"60118\"] = [[{\n \"id\": \"\ - 60118\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Evidence! (1)|\"] = [[{\n \"id\": \"60120\",\n \"type\": \"\ - Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60120\"\ - ] = [[{\n \"id\": \"60120\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Galvanize (1)|\"] = [[{\n \"id\": \"60121\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 60121\"] = [[{\n \"id\": \"60121\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Spirit.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Counterpunch (2)|\"] = [[{\n \"id\"\ - : \"60122\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Spirit. Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"60122\"] = [[{\n \"id\": \"60122\",\n \"type\": \"\ - Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"\ - level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - \\\"Get over here!\\\" (2)|\"] = [[{\n \"id\": \"60123\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\"\ - : 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60123\"\ - ] = [[{\n \"id\": \"60123\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Lesson Learned (2)|\"] = [[{\n \"id\"\ - : \"60124\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Insight. Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"60124\"] = [[{\n \"id\": \"60124\",\n \"type\": \"\ - Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Insight. Spirit.\",\n \"\ - level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Mano a Mano (2)|\"] = [[{\n \"id\": \"60125\",\n \"type\": \"Event\",\n \"\ - class\": \"Guardian\",\n \"traits\": \"Spirit. Bold.\",\n \"level\": 2,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60125\"] = [[{\n\ - \ \"id\": \"60125\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Spirit. Bold.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Overpower (2)|\"] = [[{\n \"id\": \"60126\",\n \"\ - type\": \"Skill\",\n \"class\": \"Guardian\",\n \"traits\": \"Practiced. Expert.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 60126\"] = [[{\n \"id\": \"60126\",\n \"type\": \"Skill\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Boxing Gloves (3)|\"] = [[{\n\ - \ \"id\": \"60127\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Item. Weapon.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"60127\"] = [[{\n \"id\": \"60127\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon.\",\n \"level\"\ - : 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Grete\ - \ Wagner (3)|The Purifier\"] = [[{\n \"id\": \"60128\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Hunter.\",\n \"level\":\ - \ 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60128\"\ - ] = [[{\n \"id\": \"60128\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Ally. Hunter.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Grete Wagner (3)|\"] = [[{\n \"id\"\ - : \"60128\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Ally. Hunter.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Dynamite Blast (3)|\"] = [[{\n \"id\": \"60129\",\n\ - \ \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 60129\"] = [[{\n \"id\": \"60129\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Taunt (3)|\"] = [[{\n \"id\": \"60130\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 60130\"] = [[{\n \"id\": \"60130\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Physical Training (4)|\"] = [[{\n \"\ - id\": \"60131\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \ - \ \"count\": 2\n }\n}]]\r\nallCards[\"60131\"] = [[{\n \"id\": \"60131\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\"\ - ,\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\"\ - : 2\n }\n}]]\r\nallCards[\"One-Two Punch (5)|\"] = [[{\n \"id\": \"60132\",\n\ - \ \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spirit. Tactic.\"\ - ,\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 60132\"] = [[{\n \"id\": \"60132\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Spirit. Tactic.\",\n \"level\": 5,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Harvey Walters|The Professor\"\ - ] = [[{\n \"id\": \"60201\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"60201\"] = [[{\n \ - \ \"id\": \"60201\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n\ - \ \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Harvey Walters (promo version)|The\ - \ Professor\"] = [[{\n \"id\": \"60201-promo\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"\ - Harvey Walters (Parallel)|The Professor\"] = [[{\n \"id\": \"60201-p\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\ - \n}]]\r\nallCards[\"Harvey Walters (Parallel Front)|The Professor\"] = [[{\n \ - \ \"id\": \"60201-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Harvey Walters (Parallel Back)|The\ - \ Professor\"] = [[{\n \"id\": \"60201-pb\",\n \"type\": \"Investigator\",\n\ - \ \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\"\n}]]\r\nallCards[\"Harvey\ - \ Walters|\"] = [[{\n \"id\": \"60201-m\",\n \"type\": \"Minicard\"\n}]]\r\n\ - allCards[\"Harvey Walters|Promo version\"] = [[{\n \"id\": \"60201-promo-m\"\ - ,\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Vault of Knowledge|\"] = [[{\n\ - \ \"id\": \"60202\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\n\ - allCards[\"60202\"] = [[{\n \"id\": \"60202\",\n \"type\": \"Asset\",\n \"\ - class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Thrice-Damned Curiosity|\"] = [[{\n \"id\"\ - : \"60203\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"\ - 60203\"] = [[{\n \"id\": \"60203\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\"\ - : true\n}]]\r\nallCards[\"Obsessive|\"] = [[{\n \"id\": \"60204\",\n \"type\"\ - : \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\"\ - : false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"\ - 60204\"] = [[{\n \"id\": \"60204\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Arcane Enlightenment|\"\ - ] = [[{\n \"id\": \"60205\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Ritual.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"60205\"] = [[{\n \"id\": \"60205\",\n \"\ - type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Celaeno Fragments|Book of Books\"] = [[{\n \"id\": \"60206\",\n \"type\": \"\ - Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60206\"\ - ] = [[{\n \"id\": \"60206\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Celaeno Fragments|\"] = [[{\n \"id\"\ - : \"60206\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\":\ - \ false\n}]]\r\nallCards[\"Disc of Itzamna|Protective Amulet\"] = [[{\n \"id\"\ - : \"60207\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Item. Relic.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"60207\"] = [[{\n \"id\": \"60207\",\n \"type\": \"\ - Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Disc of\ - \ Itzamna|\"] = [[{\n \"id\": \"60207\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Item. Relic.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Encyclopedia|\"] = [[{\n \"\ - id\": \"60208\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\"\ - : \"Item. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\":\ - \ false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\"\ - ,\n \"count\": 5\n }\n}]]\r\nallCards[\"60208\"] = [[{\n \"id\": \"60208\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 5\n\ - \ }\n}]]\r\nallCards[\"Feed the Mind|\"] = [[{\n \"id\": \"60209\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - 60209\"] = [[{\n \"id\": \"60209\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Forbidden Tome|Untranslated\"\ - ] = [[{\n \"id\": \"60210\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"60210\"] = [[{\n \"id\": \"60210\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\ - \ Tome.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Forbidden Tome|\"] = [[{\n \"id\": \"60210\",\n \"type\":\ - \ \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n\ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Higher Education|\"] = [[{\n \"id\": \"60211\",\n \"type\": \"Asset\",\n \"\ - class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"60211\"] = [[{\n \"id\": \"\ - 60211\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Whitton Greene|Hunter of Rare Books\"] = [[{\n \"id\": \"60213\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n\ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 60213\"] = [[{\n \"id\": \"60213\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Whitton Greene|\"] = [[{\n\ - \ \"id\": \"60213\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Ally. Miskatonic.\",\n \"level\": 0,\n \"permanent\": false,\n \ - \ \"weakness\": false\n}]]\r\nallCards[\"Burning the Midnight Oil|\"] = [[{\n\ - \ \"id\": \"60214\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"60214\"] = [[{\n \"id\": \"60214\",\n \"type\": \"\ - Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\":\ - \ 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cryptic\ - \ Writings|\"] = [[{\n \"id\": \"60215\",\n \"type\": \"Event\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"60215\"] = [[{\n \"id\": \"\ - 60215\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Extensive Research|\"] = [[{\n \"id\": \"60216\",\n \"type\": \"Event\",\n \ - \ \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"60216\"] = [[{\n \"id\": \"\ - 60216\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Occult Invocation|\"] = [[{\n \"id\": \"60217\",\n \"type\": \"Event\",\n \"\ - class\": \"Seeker\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"60217\"] = [[{\n \"id\": \"\ - 60217\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Library Docent (1)|\"] = [[{\n \"id\": \"60220\",\n \"type\": \"Asset\",\n \ - \ \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 1,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60220\"] =\ - \ [[{\n \"id\": \"60220\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n\ - \ \"traits\": \"Ally. Miskatonic.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Glimpse the Unthinkable (1)|\"] = [[{\n\ - \ \"id\": \"60221\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Insight.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"60221\"] = [[{\n \"id\": \"60221\",\n \"type\": \"\ - Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\":\ - \ 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Esoteric\ - \ Atlas (2)|\"] = [[{\n \"id\": \"60222\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"60222\"]\ - \ = [[{\n \"id\": \"60222\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Whitton Greene (2)|Hunter\ - \ of Rare Books\"] = [[{\n \"id\": \"60223\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"60223\"] = [[{\n \"id\": \"\ - 60223\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally.\ - \ Miskatonic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Whitton Greene (2)|\"] = [[{\n \"id\": \"60223\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic.\",\n\ - \ \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Cryptic Writings (2)|\"] = [[{\n \"id\": \"60224\",\n \"type\": \"Event\",\n\ - \ \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60224\"] = [[{\n\ - \ \"id\": \"60224\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"\\\"I've got a plan!\\\" (2)|\"] = [[{\n \"id\": \"\ - 60225\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\ - \ Tactic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"60225\"] = [[{\n \"id\": \"60225\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Tactic.\",\n \"level\"\ - : 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Mind over\ - \ Matter (2)|\"] = [[{\n \"id\": \"60226\",\n \"type\": \"Event\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"60226\"] = [[{\n \"id\": \"\ - 60226\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Seeking Answers (2)|\"] = [[{\n \"id\": \"60227\",\n \"type\": \"Event\",\n\ - \ \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\": 2,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60227\"] = [[{\n\ - \ \"id\": \"60227\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Insight.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Perception (2)|\"] = [[{\n \"id\": \"60228\",\n \"\ - type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced. Expert.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 60228\"] = [[{\n \"id\": \"60228\",\n \"type\": \"Skill\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Practiced. Expert.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Forbidden Tome (3)|Dark Knowledge\"\ - ] = [[{\n \"id\": \"60229\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"60229\"] = [[{\n \"id\": \"60229\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic.\ - \ Tome.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Forbidden Tome (3)|\"] = [[{\n \"id\": \"60229\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n\ - \ \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Forbidden Tome (3)|Secrets Revealed\"] = [[{\n \"id\": \"60230\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n\ - \ \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 60230\"] = [[{\n \"id\": \"60230\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Item. Relic. Tome.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Forbidden Tome (3)|\"] = [[{\n\ - \ \"id\": \"60230\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Item. Relic. Tome.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Farsight (4)|\"] = [[{\n \"id\": \"\ - 60231\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\"\ - ,\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 60231\"] = [[{\n \"id\": \"60231\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 4,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Miskatonic Archaeology Funding (4)|\"\ - ] = [[{\n \"id\": \"60232\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Grant.\",\n \"level\": 4,\n \"permanent\": true,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"60232\"] = [[{\n \"id\": \"60232\",\n \"type\": \"\ - Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Grant.\",\n \"level\": 4,\n\ - \ \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"The Necronomicon\ - \ (5)|Petrus de Dacia Translation\"] = [[{\n \"id\": \"60233\",\n \"type\":\ - \ \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\"\ - : 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60233\"\ - ] = [[{\n \"id\": \"60233\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Tome.\",\n \"level\": 5,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"The Necronomicon (5) (Taboo)|Petrus\ - \ de Dacia Translation\"] = [[{\n \"id\": \"60233-t\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 5,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Necronomicon\ - \ (5)|\"] = [[{\n \"id\": \"60233\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Item. Tome.\",\n \"level\": 5,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"The Necronomicon (5) (Taboo)|\"] = [[{\n\ - \ \"id\": \"60233-t\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Item. Tome.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Winifred Habbamock|The Aviatrix\"] = [[{\n \"id\"\ - : \"60301\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Criminal.\"\n}]]\r\nallCards[\"60301\"] = [[{\n \"id\": \"60301\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\ - \n}]]\r\nallCards[\"Winifred Habbamock (promo version)|The Aviatrix\"] = [[{\n\ - \ \"id\": \"60301-promo\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"Winifred Habbamock (Parallel)|The\ - \ Aviatrix\"] = [[{\n \"id\": \"60301-p\",\n \"type\": \"Investigator\",\n \ - \ \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"Winifred\ - \ Habbamock (Parallel Front)|The Aviatrix\"] = [[{\n \"id\": \"60301-pf\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\"\ - \n}]]\r\nallCards[\"Winifred Habbamock (Parallel Back)|The Aviatrix\"] = [[{\n\ - \ \"id\": \"60301-pb\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Criminal.\"\n}]]\r\nallCards[\"Winifred Habbamock|\"] = [[{\n\ - \ \"id\": \"60301-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Winifred\ - \ Habbamock|Promo version\"] = [[{\n \"id\": \"60301-promo-m\",\n \"type\":\ - \ \"Minicard\"\n}]]\r\nallCards[\"Anything You Can Do, Better|\"] = [[{\n \"\ - id\": \"60302\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Innate. Developed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\ - \nallCards[\"60302\"] = [[{\n \"id\": \"60302\",\n \"type\": \"Skill\",\n \"\ - class\": \"Rogue\",\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Arrogance|\"] = [[{\n \"id\": \"60303\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Flaw.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"60303\"] =\ - \ [[{\n \"id\": \"60303\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\ - \nallCards[\"Reckless|\"] = [[{\n \"id\": \"60304\",\n \"type\": \"Skill\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"60304\"\ - ] = [[{\n \"id\": \"60304\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Flaw.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Lockpicks|\"] = [[{\n \"id\"\ - : \"60305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"\ - Item. Tool. Illicit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"60305\"] = [[{\n \"id\": \"60305\",\n \"type\": \"\ - Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Tool. Illicit.\",\n \ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Mauser C96|\"] = [[{\n \"id\": \"60306\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"\ - 60306\"] = [[{\n \"id\": \"60306\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"\ - Lonnie Ritter|Feisty Mechanic\"] = [[{\n \"id\": \"60309\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"60309\"] = [[{\n \"id\": \"\ - 60309\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Lonnie Ritter|\"] = [[{\n \"id\": \"60309\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Leather Jacket|\"] = [[{\n \"id\":\ - \ \"60310\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"\ - Item. Armor.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"60310\"] = [[{\n \"id\": \"60310\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Item. Armor.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Streetwise|\"\ - ] = [[{\n \"id\": \"60311\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"60311\"] = [[{\n \"id\": \"60311\",\n \"\ - type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Pilfer|\"] = [[{\n \"id\": \"60315\",\n \"type\": \"Event\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"60315\"] = [[{\n \"id\": \"60315\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n\ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Sneak By|\"] = [[{\n \"id\": \"60316\",\n \"type\": \"Event\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"60316\"] = [[{\n \"id\": \"60316\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n\ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Nimble|\"] = [[{\n \"id\": \"60317\",\n \"type\": \"Skill\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Innate.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"60317\"] = [[{\n \"id\": \"60317\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Innate.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Daredevil|\"] = [[{\n \"id\": \"60318\",\n \"type\": \"Skill\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Fortune. Practiced.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"60318\"] = [[{\n \"id\": \"\ - 60318\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Fortune.\ - \ Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Liquid Courage (1)|\"] = [[{\n \"id\": \"60320\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Illicit.\",\n \"\ - level\": 1,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n\ - \ \"token\": \"resource\",\n \"type\": \"Supply\",\n \"count\": 4\n \ - \ }\n}]]\r\nallCards[\"60320\"] = [[{\n \"id\": \"60320\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Item. Illicit.\",\n \"level\": 1,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Supply\",\n \"count\": 4\n }\n}]]\r\nallCards[\"\ - Mauser C96 (2)|\"] = [[{\n \"id\": \"60321\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\"\ - : 2,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"\ - 60321\"] = [[{\n \"id\": \"60321\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Ammo\",\n \"count\": 5\n }\n}]]\r\nallCards[\"\ - Daring Maneuver (2)|\"] = [[{\n \"id\": \"60322\",\n \"type\": \"Event\",\n\ - \ \"class\": \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"60322\"] = [[{\n \"id\": \"\ - 60322\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Cheap Shot (2)|\"] = [[{\n \"id\": \"60323\",\n \"type\": \"Event\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"60323\"] = [[{\n \"id\": \"60323\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n\ - \ \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Slip Away (2)|\"] = [[{\n \"id\": \"60324\",\n \"type\": \"Event\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"60324\"] = [[{\n \"id\": \"60324\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n\ - \ \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Manual Dexterity (2)|\"] = [[{\n \"id\": \"60325\",\n \"type\": \"Skill\",\n\ - \ \"class\": \"Rogue\",\n \"traits\": \"Innate. Developed.\",\n \"level\":\ - \ 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60325\"\ - ] = [[{\n \"id\": \"60325\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Lucky Cigarette Case (3)|\"] = [[{\n\ - \ \"id\": \"60326\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Item. Charm.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"60326\"] = [[{\n \"id\": \"60326\",\n \"type\": \"\ - Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Charm.\",\n \"level\"\ - : 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sharpshooter\ - \ (3)|\"] = [[{\n \"id\": \"60327\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"60327\"] = [[{\n \"id\": \"60327\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Pilfer (3)|\"] = [[{\n \"id\": \"60328\",\n \"type\": \"Event\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"60328\"] = [[{\n \"id\": \"60328\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n\ - \ \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Backstab (3)|\"] = [[{\n \"id\": \"60329\",\n \"type\": \"Event\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Tactic.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"60329\"] = [[{\n \"id\": \"60329\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Tactic.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Copycat (3)|\"] = [[{\n \"id\": \"60330\",\n \"type\": \"Skill\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Gambit.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"60330\"] = [[{\n \"id\": \"60330\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Gambit.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Beretta M1918 (4)|\"] = [[{\n \"id\": \"60331\",\n \"type\": \"Asset\",\n \"\ - class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"\ - level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n\ - \ \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n }\n\ - }]]\r\nallCards[\"60331\"] = [[{\n \"id\": \"60331\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ - ,\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 4\n\ - \ }\n}]]\r\nallCards[\"Chuck Fergus (5)|O'Bannion Driver\"] = [[{\n \"id\":\ - \ \"60332\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"\ - Ally. Criminal.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\":\ - \ false\n}]]\r\nallCards[\"60332\"] = [[{\n \"id\": \"60332\",\n \"type\": \"\ - Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\"\ - : 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Chuck\ - \ Fergus (5)|\"] = [[{\n \"id\": \"60332\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Ally. Criminal.\",\n \"level\": 5,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Jacqueline Fine|The Psychic\"\ - ] = [[{\n \"id\": \"60401\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"60401\"] = [[{\n\ - \ \"id\": \"60401\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"Jacqueline Fine (promo version)|The\ - \ Psychic\"] = [[{\n \"id\": \"60401-promo\",\n \"type\": \"Investigator\",\n\ - \ \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"\ - Jacqueline Fine (Parallel)|The Psychic\"] = [[{\n \"id\": \"60401-p\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\ - \n}]]\r\nallCards[\"Jacqueline Fine (Parallel Front)|The Psychic\"] = [[{\n \"\ - id\": \"60401-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n\ - \ \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"Jacqueline Fine (Parallel Back)|The\ - \ Psychic\"] = [[{\n \"id\": \"60401-pb\",\n \"type\": \"Investigator\",\n \ - \ \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"Jacqueline\ - \ Fine|\"] = [[{\n \"id\": \"60401-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"\ - Jacqueline Fine|Promo version\"] = [[{\n \"id\": \"60401-promo-m\",\n \"type\"\ - : \"Minicard\"\n}]]\r\nallCards[\"Arbiter of Fates|\"] = [[{\n \"id\": \"60402\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Talent.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60402\"]\ - \ = [[{\n \"id\": \"60402\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Dark Future|\"] = [[{\n \"id\": \"60403\",\n \"type\": \"\ - Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Omen. Endtimes.\",\n\ - \ \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"60403\"] = [[{\n\ - \ \"id\": \"60403\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n\ - \ \"traits\": \"Omen. Endtimes.\",\n \"permanent\": false,\n \"weakness\":\ - \ true\n}]]\r\nallCards[\"Nihilism|\"] = [[{\n \"id\": \"60404\",\n \"type\"\ - : \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"\ - permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\ - \nallCards[\"60404\"] = [[{\n \"id\": \"60404\",\n \"type\": \"Treachery\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Scrying\ - \ Mirror|\"] = [[{\n \"id\": \"60406\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"60406\"]\ - \ = [[{\n \"id\": \"60406\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Azure Flame|\"] = [[{\n\ - \ \"id\": \"60407\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 4\n }\n}]]\r\nallCards[\"60407\"] = [[{\n \"id\": \"60407\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n\ - \ }\n}]]\r\nallCards[\"Clairvoyance|\"] = [[{\n \"id\": \"60408\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - 60408\"] = [[{\n \"id\": \"60408\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Ineffable Truth|\"] =\ - \ [[{\n \"id\": \"60409\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n\ - \ \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"60409\"] = [[{\n \"id\": \"60409\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"Familiar Spirit|\"] = [[{\n \"id\": \"60410\",\n \"\ - type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Creature.\ - \ Summon.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"60410\"] = [[{\n \"id\": \"60410\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Creature. Summon.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Crystal Pendulum|\"] = [[{\n \"id\": \"60411\",\n \"type\": \"Asset\",\n \"\ - class\": \"Mystic\",\n \"traits\": \"Item. Charm.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"60411\"] = [[{\n \"id\": \"\ - 60411\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item.\ - \ Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Robes of Endless Night|\"] = [[{\n \"id\": \"60412\",\n \"\ - type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Clothing.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 60412\"] = [[{\n \"id\": \"60412\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Item. Clothing.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Parallel Fates|\"] = [[{\n\ - \ \"id\": \"60415\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Augury.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"60415\"] = [[{\n \"id\": \"60415\",\n \"type\": \"\ - Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Augury.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Voice of Ra|\"\ - ] = [[{\n \"id\": \"60416\",\n \"type\": \"Event\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"60416\"] = [[{\n \"id\": \"60416\",\n \"type\": \"\ - Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Prescient|\"\ - ] = [[{\n \"id\": \"60419\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Practiced. Augury.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"60419\"] = [[{\n \"id\": \"60419\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Practiced.\ - \ Augury.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Eldritch Inspiration (1)|\"] = [[{\n \"id\": \"60420\",\n \ - \ \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Spirit.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 60420\"] = [[{\n \"id\": \"60420\",\n \"type\": \"Event\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell. Spirit.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Grotesque Statue (2)|\"] =\ - \ [[{\n \"id\": \"60421\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n\ - \ \"traits\": \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"60421\"] = [[{\n \"id\"\ - : \"60421\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\":\ - \ \"Item. Relic.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"Robes of Endless Night (2)|\"] = [[{\n\ - \ \"id\": \"60422\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Item. Clothing.\",\n \"level\": 2,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"60422\"] = [[{\n \"id\": \"60422\",\n \"\ - type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Clothing.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Hypnotic Gaze (2)|\"] = [[{\n \"id\": \"60423\",\n \"type\": \"Event\",\n \"\ - class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"60423\"] = [[{\n \"id\": \"\ - 60423\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Guts (2)|\"] = [[{\n \"id\": \"60424\",\n \"type\": \"Skill\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"60424\"] = [[{\n \"id\": \"\ - 60424\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n \"traits\": \"Innate.\ - \ Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Azure Flame (3)|\"] = [[{\n \"id\": \"60425\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\"\ - : 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"\ - 60425\"] = [[{\n \"id\": \"60425\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Clairvoyance (3)|\"] =\ - \ [[{\n \"id\": \"60426\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n\ - \ \"traits\": \"Spell.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"60426\"] = [[{\n \"id\": \"60426\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"Ineffable Truth (3)|\"] = [[{\n \"id\": \"60427\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n\ - \ \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"60427\"] = [[{\n \"id\": \"60427\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 3,\n \"\ - permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"\ - resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - Arcane Studies (4)|\"] = [[{\n \"id\": \"60428\",\n \"type\": \"Asset\",\n \ - \ \"class\": \"Mystic\",\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Resource\",\n \"count\": 2\n }\n}]]\r\nallCards[\"60428\"\ - ] = [[{\n \"id\": \"60428\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"\ - weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Resource\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Recharge (4)|\"] = [[{\n\ - \ \"id\": \"60429\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Spell.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"60429\"] = [[{\n \"id\": \"60429\",\n \"type\": \"\ - Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 4,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Azure Flame\ - \ (5)|\"] = [[{\n \"id\": \"60430\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 5,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Charge\",\n \"count\": 4\n }\n}]]\r\nallCards[\"60430\"] = [[{\n \"id\"\ - : \"60430\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\":\ - \ \"Spell.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"\ - count\": 4\n }\n}]]\r\nallCards[\"Clairvoyance (5)|\"] = [[{\n \"id\": \"60431\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\"\ - ,\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"60431\"] = [[{\n \"id\": \"60431\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 5,\n \"\ - permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"\ - resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - Ineffable Truth (5)|\"] = [[{\n \"id\": \"60432\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Mystic\",\n \"traits\": \"Spell.\",\n \"level\": 5,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"60432\"]\ - \ = [[{\n \"id\": \"60432\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"Stella Clark|The Letter Carrier\"\ - ] = [[{\n \"id\": \"60501\",\n \"type\": \"Investigator\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Chosen. Civic.\"\n}]]\r\nallCards[\"60501\"] = [[{\n\ - \ \"id\": \"60501\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Chosen. Civic.\"\n}]]\r\nallCards[\"Stella Clark (promo version)|The\ - \ Letter Carrier\"] = [[{\n \"id\": \"60501-promo\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Chosen. Civic.\"\n}]]\r\nallCards[\"\ - Stella Clark (Parallel)|The Letter Carrier\"] = [[{\n \"id\": \"60501-p\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Chosen.\ - \ Civic.\"\n}]]\r\nallCards[\"Stella Clark (Parallel Front)|The Letter Carrier\"\ - ] = [[{\n \"id\": \"60501-pf\",\n \"type\": \"Investigator\",\n \"class\":\ - \ \"Survivor\",\n \"traits\": \"Chosen. Civic.\"\n}]]\r\nallCards[\"Stella Clark\ - \ (Parallel Back)|The Letter Carrier\"] = [[{\n \"id\": \"60501-pb\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Chosen. Civic.\"\ - \n}]]\r\nallCards[\"Stella Clark|\"] = [[{\n \"id\": \"60501-m\",\n \"type\"\ - : \"Minicard\"\n}]]\r\nallCards[\"Stella Clark|Promo version\"] = [[{\n \"id\"\ - : \"60501-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Neither Rain\ - \ nor Snow|\"] = [[{\n \"id\": \"60502\",\n \"type\": \"Skill\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Innate. Developed.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"60502\"] = [[{\n \"id\": \"60502\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\ - \ Developed.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Called by the Mists|\"] = [[{\n \"id\": \"60503\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"60503\"] = [[{\n \"id\": \"60503\",\n\ - \ \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Atychiphobia|\"\ - ] = [[{\n \"id\": \"60504\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"60504\"] = [[{\n \"id\": \"60504\"\ - ,\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\"\ - ,\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\": 1\n\ - }]]\r\nallCards[\".18 Derringer|\"] = [[{\n \"id\": \"60505\",\n \"type\": \"\ - Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n\ - \ }\n}]]\r\nallCards[\"60505\"] = [[{\n \"id\": \"60505\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Firearm. Illicit.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"count\": 2\n\ - \ }\n}]]\r\nallCards[\"Grimm's Fairy Tales|\"] = [[{\n \"id\": \"60506\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tome.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n\ - \ }\n}]]\r\nallCards[\"60506\"] = [[{\n \"id\": \"60506\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tome.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"\ - Old Keyring|\"] = [[{\n \"id\": \"60507\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Key\",\n \"count\": 2\n }\n}]]\r\nallCards[\"60507\"] = [[{\n\ - \ \"id\": \"60507\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Key\",\n\ - \ \"count\": 2\n }\n}]]\r\nallCards[\"Granny Orne|Tough Old Bird\"] = [[{\n\ - \ \"id\": \"60508\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"60508\"] = [[{\n \"id\": \"60508\",\n \"type\": \"\ - Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Granny Orne|\"\ - ] = [[{\n \"id\": \"60508\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Ally.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Mysterious Raven|\"] = [[{\n \"id\": \"60509\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Creature.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 60509\"] = [[{\n \"id\": \"60509\",\n \"type\": \"Asset\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Ally. Creature.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Scrapper|\"] = [[{\n \"id\"\ - : \"60511\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"60511\"] = [[{\n \"id\": \"60511\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Will to Survive|\"\ - ] = [[{\n \"id\": \"60512\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"60512\"] = [[{\n \"id\": \"60512\",\n \"\ - type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - A Test of Will|\"] = [[{\n \"id\": \"60513\",\n \"type\": \"Event\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"60513\"] = [[{\n \"id\": \"\ - 60513\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Grit Your Teeth|\"] = [[{\n \"id\": \"60515\",\n \"type\"\ - : \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60515\"\ - ] = [[{\n \"id\": \"60515\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Spirit.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Cherished Keepsake (1)|\"] = [[{\n \"id\"\ - : \"60520\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Item. Charm.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"60520\"] = [[{\n \"id\": \"60520\",\n \"type\": \"\ - Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Leather\ - \ Coat (1)|\"] = [[{\n \"id\": \"60521\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Item. Armor.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"60521\"] = [[{\n \"id\": \"\ - 60521\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Item. Armor.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\".18 Derringer (2)|\"] = [[{\n \"id\": \"60522\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon. Firearm.\ - \ Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\",\n \"\ - count\": 3\n }\n}]]\r\nallCards[\"60522\"] = [[{\n \"id\": \"60522\",\n \"\ - type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Weapon.\ - \ Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Ammo\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"A Test of Will (2)|\"] = [[{\n \"\ - id\": \"60523\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"60523\"] = [[{\n \"id\": \"60523\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 2,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\\\"Look what\ - \ I found!\\\" (2)|\"] = [[{\n \"id\": \"60524\",\n \"type\": \"Event\",\n \ - \ \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60524\"] = [[{\n\ - \ \"id\": \"60524\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Dumb Luck (2)|\"] = [[{\n \"id\": \"60525\",\n \"\ - type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n\ - \ \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 60525\"] = [[{\n \"id\": \"60525\",\n \"type\": \"Event\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Unexpected Courage (2)|\"] = [[{\n \ - \ \"id\": \"60526\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Innate. Developed.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"60526\"] = [[{\n \"id\": \"60526\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate.\ - \ Developed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Granny Orne (3)|Tough Old Bird\"] = [[{\n \"id\": \"60527\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 60527\"] = [[{\n \"id\": \"60527\",\n \"type\": \"Asset\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Ally.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Granny Orne (3)|\"] = [[{\n \"id\"\ - : \"60527\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Ally.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Lucky! (3)|\"] = [[{\n \"id\": \"60528\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\",\n \"level\": 3,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"60528\"] =\ - \ [[{\n \"id\": \"60528\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Fortune.\",\n \"level\": 3,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Chainsaw (4)|\"] = [[{\n \"id\": \"60529\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool.\ - \ Weapon. Melee.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"60529\"] = [[{\n \"id\": \"60529\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Tool.\ - \ Weapon. Melee.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Supply\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"Quick Learner (4)|\"] = [[{\n \"\ - id\": \"60530\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Condition.\",\n \"level\": 4,\n \"permanent\": true,\n \"weakness\": false\n\ - }]]\r\nallCards[\"60530\"] = [[{\n \"id\": \"60530\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Condition.\",\n \"level\": 4,\n\ - \ \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"D\uFFFDj\uFFFD\ - \ Vu (5)|\"] = [[{\n \"id\": \"60531\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Talent. Cursed.\",\n \"level\": 5,\n \"permanent\"\ - : true,\n \"weakness\": false\n}]]\r\nallCards[\"60531\"] = [[{\n \"id\": \"\ - 60531\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Talent. Cursed.\",\n \"level\": 5,\n \"permanent\": true,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Sister Mary|The Nun\"] = [[{\n \"id\": \"07001\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Blessed.\"\ - \n}]]\r\nallCards[\"07001\"] = [[{\n \"id\": \"07001\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Blessed.\"\n}]]\r\nallCards[\"\ - Sister Mary (promo version)|The Nun\"] = [[{\n \"id\": \"07001-promo\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer.\ - \ Blessed.\"\n}]]\r\nallCards[\"Sister Mary (Parallel)|The Nun\"] = [[{\n \"\ - id\": \"07001-p\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n\ - \ \"traits\": \"Believer. Blessed.\"\n}]]\r\nallCards[\"Sister Mary (Parallel\ - \ Front)|The Nun\"] = [[{\n \"id\": \"07001-pf\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Blessed.\"\n}]]\r\nallCards[\"\ - Sister Mary (Parallel Back)|The Nun\"] = [[{\n \"id\": \"07001-pb\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Believer. Blessed.\"\ - \n}]]\r\nallCards[\"Sister Mary|\"] = [[{\n \"id\": \"07001-m\",\n \"type\"\ - : \"Minicard\"\n}]]\r\nallCards[\"Sister Mary|Promo version\"] = [[{\n \"id\"\ - : \"07001-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Amanda Sharpe|The\ - \ Student\"] = [[{\n \"id\": \"07002\",\n \"type\": \"Investigator\",\n \"\ - class\": \"Seeker\",\n \"traits\": \"Miskatonic. Scholar.\"\n}]]\r\nallCards[\"\ - 07002\"] = [[{\n \"id\": \"07002\",\n \"type\": \"Investigator\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Miskatonic. Scholar.\"\n}]]\r\nallCards[\"Amanda\ - \ Sharpe (promo version)|The Student\"] = [[{\n \"id\": \"07002-promo\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\ - \ Scholar.\"\n}]]\r\nallCards[\"Amanda Sharpe (Parallel)|The Student\"] = [[{\n\ - \ \"id\": \"07002-p\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Miskatonic. Scholar.\"\n}]]\r\nallCards[\"Amanda Sharpe (Parallel\ - \ Front)|The Student\"] = [[{\n \"id\": \"07002-pf\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic. Scholar.\"\n}]]\r\nallCards[\"\ - Amanda Sharpe (Parallel Back)|The Student\"] = [[{\n \"id\": \"07002-pb\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Miskatonic.\ - \ Scholar.\"\n}]]\r\nallCards[\"Amanda Sharpe|\"] = [[{\n \"id\": \"07002-m\"\ - ,\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Amanda Sharpe|Promo version\"]\ - \ = [[{\n \"id\": \"07002-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"\ - Trish Scarborough|The Spy\"] = [[{\n \"id\": \"07003\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Agency. Detective.\"\n}]]\r\nallCards[\"\ - 07003\"] = [[{\n \"id\": \"07003\",\n \"type\": \"Investigator\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Agency. Detective.\"\n}]]\r\nallCards[\"Trish Scarborough\ - \ (promo version)|The Spy\"] = [[{\n \"id\": \"07003-promo\",\n \"type\": \"\ - Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Agency. Detective.\"\ - \n}]]\r\nallCards[\"Trish Scarborough (Parallel)|The Spy\"] = [[{\n \"id\": \"\ - 07003-p\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Agency. Detective.\"\n}]]\r\nallCards[\"Trish Scarborough (Parallel Front)|The\ - \ Spy\"] = [[{\n \"id\": \"07003-pf\",\n \"type\": \"Investigator\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Agency. Detective.\"\n}]]\r\nallCards[\"Trish Scarborough\ - \ (Parallel Back)|The Spy\"] = [[{\n \"id\": \"07003-pb\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Agency. Detective.\"\n}]]\r\nallCards[\"\ - Trish Scarborough|\"] = [[{\n \"id\": \"07003-m\",\n \"type\": \"Minicard\"\n\ - }]]\r\nallCards[\"Trish Scarborough|Promo version\"] = [[{\n \"id\": \"07003-promo-m\"\ - ,\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Dexter Drake|The Magician\"] =\ - \ [[{\n \"id\": \"07004\",\n \"alternate_ids\": [ \"98016\" ],\n \"type\":\ - \ \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer. Veteran.\"\ - \n}]]\r\nallCards[\"07004\"] = [[{\n \"id\": \"07004\",\n \"alternate_ids\"\ - : [ \"98016\" ],\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Sorcerer. Veteran.\"\n}]]\r\nallCards[\"Dexter Drake (promo version)|The\ - \ Magician\"] = [[{\n \"id\": \"07004-promo\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer. Veteran.\"\n}]]\r\nallCards[\"\ - Dexter Drake (Parallel)|The Magician\"] = [[{\n \"id\": \"07004-p\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer. Veteran.\"\ - \n}]]\r\nallCards[\"Dexter Drake (Parallel Front)|The Magician\"] = [[{\n \"\ - id\": \"07004-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n\ - \ \"traits\": \"Sorcerer. Veteran.\"\n}]]\r\nallCards[\"Dexter Drake (Parallel\ - \ Back)|The Magician\"] = [[{\n \"id\": \"07004-pb\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Sorcerer. Veteran.\"\n}]]\r\nallCards[\"\ - Dexter Drake|\"] = [[{\n \"id\": \"07004-m\",\n \"alternate_ids\": [ \"98016-m\"\ - \ ],\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Dexter Drake|Promo version\"\ - ] = [[{\n \"id\": \"07004-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"\ - Silas Marsh|The Sailor\"] = [[{\n \"id\": \"07005\",\n \"alternate_ids\": [\ - \ \"98013\" ],\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Drifter.\"\n}]]\r\nallCards[\"07005\"] = [[{\n \"id\": \"07005\"\ - ,\n \"alternate_ids\": [ \"98013\" ],\n \"type\": \"Investigator\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Silas Marsh (promo\ - \ version)|The Sailor\"] = [[{\n \"id\": \"07005-promo\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"\ - Silas Marsh (Parallel)|The Sailor\"] = [[{\n \"id\": \"07005-p\",\n \"type\"\ - : \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n\ - }]]\r\nallCards[\"Silas Marsh (Parallel Front)|The Sailor\"] = [[{\n \"id\":\ - \ \"07005-pf\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \ - \ \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Silas Marsh (Parallel Back)|The\ - \ Sailor\"] = [[{\n \"id\": \"07005-pb\",\n \"type\": \"Investigator\",\n \"\ - class\": \"Survivor\",\n \"traits\": \"Drifter.\"\n}]]\r\nallCards[\"Silas Marsh|\"\ - ] = [[{\n \"id\": \"07005-m\",\n \"alternate_ids\": [ \"98013-m\" ],\n \"type\"\ - : \"Minicard\"\n}]]\r\nallCards[\"Silas Marsh|Promo version\"] = [[{\n \"id\"\ - : \"07005-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Guardian Angel|\"\ - ] = [[{\n \"id\": \"07006\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ritual. Blessed.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"07006\"] = [[{\n \"id\": \"07006\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ritual. Blessed.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Crisis of Faith|\"\ - ] = [[{\n \"id\": \"07007\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Madness.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"07007\"] = [[{\n \"id\": \"07007\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Madness.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"Obscure Studies|\"] = [[{\n \"id\":\ - \ \"07008\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Insight.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 07008\"] = [[{\n \"id\": \"07008\",\n \"type\": \"Event\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Insight.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Whispers from the Deep|\"] = [[{\n \"id\": \"07009\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"07009\"] =\ - \ [[{\n \"id\": \"07009\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"In the Shadows|\"] = [[{\n \"id\": \"07010\",\n \"type\":\ - \ \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Tactic.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"07010\"] = [[{\n \"id\": \"\ - 07010\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Tactic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Shadow Agents|\"] = [[{\n \"id\": \"07011\",\n \"type\": \"Enemy\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Humanoid. Cultist.\",\n \"permanent\": false,\n\ - \ \"weakness\": true\n}]]\r\nallCards[\"07011\"] = [[{\n \"id\": \"07011\",\n\ - \ \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\": \"Humanoid.\ - \ Cultist.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"\ - Showmanship|\"] = [[{\n \"id\": \"07012\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"07012\"] = [[{\n \"id\": \"07012\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Talent.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Occult Scraps|\"] = [[{\n \ - \ \"id\": \"07013\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"\ - 07013\"] = [[{\n \"id\": \"07013\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item.\",\n \"permanent\": false,\n \"weakness\"\ - : true\n}]]\r\nallCards[\"Sea Change Harpoon|\"] = [[{\n \"id\": \"07014\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon.\ - \ Melee.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 07014\"] = [[{\n \"id\": \"07014\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item. Weapon. Melee.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Silas's Net|\"] = [[{\n \"id\": \"\ - 07015\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Item. Tool.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 07015\"] = [[{\n \"id\": \"07015\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item. Tool.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Siren Call|\"] = [[{\n \"id\": \"07016\",\n \"type\"\ - : \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"07016\"] = [[{\n \"id\": \"\ - 07016\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Curse.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"\ - Book of Psalms|\"] = [[{\n \"id\": \"07017\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Item. Tome. Blessed.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"\ - resource\",\n \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"\ - 07017\"] = [[{\n \"id\": \"07017\",\n \"type\": \"Asset\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Item. Tome. Blessed.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Blessed Blade|\"\ - ] = [[{\n \"id\": \"07018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Item. Weapon. Melee. Blessed.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"07018\"] = [[{\n \"id\": \"\ - 07018\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Item. Weapon. Melee. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \ - \ \"weakness\": false\n}]]\r\nallCards[\"Rite of Sanctification|\"] = [[{\n \"\ - id\": \"07019\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Ritual. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"07019\"] = [[{\n \"id\": \"07019\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ritual. Blessed.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Hand of Fate|\"] = [[{\n \"id\": \"07020\",\n \"type\": \"Event\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"07020\"] = [[{\n \"id\": \"\ - 07020\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Spell. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\":\ - \ false\n}]]\r\nallCards[\"Cryptographic Cipher|\"] = [[{\n \"id\": \"07021\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"07021\"] = [[{\n \"id\": \"07021\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - Cryptic Grimoire|Untranslated\"] = [[{\n \"id\": \"07022\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Occult.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07022\"\ - ] = [[{\n \"id\": \"07022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Tome. Occult.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Cryptic Grimoire|\"] = [[{\n \"id\"\ - : \"07022\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Item. Tome. Occult.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Deep Knowledge|\"] = [[{\n \"id\": \"07023\",\n \"\ - type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Cursed.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 07023\"] = [[{\n \"id\": \"07023\",\n \"type\": \"Event\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Insight. Cursed.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Plan of Action|\"] = [[{\n\ - \ \"id\": \"07024\",\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Practiced.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"07024\"] = [[{\n \"id\": \"07024\",\n \"type\": \"\ - Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Practiced.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\".25 Automatic|\"\ - ] = [[{\n \"id\": \"07025\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"07025\"] =\ - \ [[{\n \"id\": \"07025\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n\ - \ \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Dark Ritual|\"\ - ] = [[{\n \"id\": \"07026\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Ritual. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"07026\"] = [[{\n \"id\": \"07026\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ritual. Cursed.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Obfuscation|\"] = [[{\n \"id\": \"07027\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Spell.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"07027\"] = [[{\n \"id\"\ - : \"07027\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"\ - Spell.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"\ - count\": 3\n }\n}]]\r\nallCards[\"Faustian Bargain|\"] = [[{\n \"id\": \"07028\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Pact. Cursed.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 07028\"] = [[{\n \"id\": \"07028\",\n \"type\": \"Event\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Pact. Cursed.\",\n \"level\": 0,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"Sword Cane|\"] = [[{\n \"\ - id\": \"07029\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\"\ - : \"Item. Relic. Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"07029\"] = [[{\n \"id\": \"07029\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Relic.\ - \ Weapon. Melee.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Tides of Fate|\"] = [[{\n \"id\": \"07030\",\n \"\ - type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Blessed.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 07030\"] = [[{\n \"id\": \"07030\",\n \"type\": \"Event\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Ward of Radiance|\"] = [[{\n\ - \ \"id\": \"07031\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Insight. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \ - \ \"weakness\": false\n}]]\r\nallCards[\"07031\"] = [[{\n \"id\": \"07031\",\n\ - \ \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Insight. Blessed.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Promise of Power|\"] = [[{\n \"id\": \"07032\",\n \"type\": \"Skill\",\n \"\ - class\": \"Mystic\",\n \"traits\": \"Practiced. Cursed.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07032\"] =\ - \ [[{\n \"id\": \"07032\",\n \"type\": \"Skill\",\n \"class\": \"Mystic\",\n\ - \ \"traits\": \"Practiced. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Token of Faith|\"] = [[{\n \"id\":\ - \ \"07033\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Item. Charm.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"07033\"] = [[{\n \"id\": \"07033\",\n \"type\": \"\ - Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Item. Charm.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Keep Faith|\"\ - ] = [[{\n \"id\": \"07034\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"07034\"] = [[{\n \"id\": \"07034\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\ - \ Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Predestined|\"] = [[{\n \"id\": \"07035\",\n \"type\": \"\ - Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \ - \ \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 07035\"] = [[{\n \"id\": \"07035\",\n \"type\": \"Skill\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Beloved|\"] = [[{\n \"id\"\ - : \"07036\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Innate. Blessed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"07036\"] = [[{\n \"id\": \"07036\",\n \"type\": \"\ - Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Innate. Blessed.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Tempt Fate|\"] = [[{\n \"id\": \"07037\",\n \"type\": \"Event\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Fortune. Blessed. Cursed.\",\n \"level\": 0,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07037\"] =\ - \ [[{\n \"id\": \"07037\",\n \"type\": \"Event\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Fortune. Blessed. Cursed.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Accursed Follower|\"] = [[{\n\ - \ \"id\": \"07038\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Humanoid. Cultist. Cursed.\",\n \"permanent\": false,\n \"weakness\"\ - : true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"07038\"] = [[{\n \"id\"\ - : \"07038\",\n \"type\": \"Enemy\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Humanoid. Cultist. Cursed.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"Dread Curse|\"] = [[{\n \"id\"\ - : \"07039\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Curse.\",\n \"permanent\": false,\n \"weakness\": true,\n \"basicWeaknessCount\"\ - : 2\n}]]\r\nallCards[\"07039\"] = [[{\n \"id\": \"07039\",\n \"type\": \"Treachery\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Curse.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"Day of\ - \ Reckoning|\"] = [[{\n \"id\": \"07040\",\n \"type\": \"Treachery\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Endtimes.\",\n \"permanent\": false,\n\ - \ \"weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"07040\"\ - ] = [[{\n \"id\": \"07040\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Endtimes.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"Thomas Dawson|Soldier in a New\ - \ War\"] = [[{\n \"id\": \"07062\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"07062\"] = [[{\n \"id\": \"07062\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency.\ - \ Veteran.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Thomas Dawson|\"] = [[{\n \"id\": \"07062\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Thomas Dawson|Soldier in a New War\"\ - ] = [[{\n \"id\": \"07082\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"07082\"] = [[{\n \"id\": \"07082\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency. Veteran.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Thomas Dawson|\"\ - ] = [[{\n \"id\": \"07082\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Agency. Veteran.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Elina Harper|Knows Too Much\"] = [[{\n \"id\": \"\ - 07083\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Ally. Agency. Detective.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"07083\"] = [[{\n \"id\": \"07083\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Agency. Detective.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Elina Harper|\"\ - ] = [[{\n \"id\": \"07083\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Agency. Detective.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Riot Whistle|\"] = [[{\n \"id\": \"07108\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Tool.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 07108\"] = [[{\n \"id\": \"07108\",\n \"type\": \"Asset\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Righteous Hunt (1)|\"] = [[{\n\ - \ \"id\": \"07109\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Tactic. Blessed.\",\n \"level\": 1,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"07109\"] = [[{\n \"id\": \"07109\",\n \"\ - type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Tactic. Blessed.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Sacred Covenant (2)|\"] = [[{\n \"id\": \"07110\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Guardian\",\n \"traits\": \"Covenant. Blessed.\",\n \"level\"\ - : 2,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"07110\"\ - ] = [[{\n \"id\": \"07110\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Covenant. Blessed.\",\n \"level\": 2,\n \"permanent\": true,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Eldritch Sophist|\"] = [[{\n \"id\"\ - : \"07111\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Ally. Miskatonic\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"07111\"] = [[{\n \"id\": \"07111\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Ally. Miskatonic\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"Stirring Up Trouble (1)|\"] = [[{\n \"id\": \"07112\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\ - \ Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"07112\"] = [[{\n \"id\": \"07112\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Cursed.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Blasphemous\ - \ Covenant (2)|\"] = [[{\n \"id\": \"07113\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Covenant. Cursed.\",\n \"level\": 2,\n \"permanent\"\ - : true,\n \"weakness\": false\n}]]\r\nallCards[\"07113\"] = [[{\n \"id\": \"\ - 07113\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Covenant.\ - \ Cursed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Breaking and Entering|\"] = [[{\n \"id\": \"07114\",\n \"\ - type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Trick.\",\n \"level\"\ - : 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07114\"\ - ] = [[{\n \"id\": \"07114\",\n \"type\": \"Event\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Trick.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Skeptic (1)|\"] = [[{\n \"id\": \"07115\",\n \"type\"\ - : \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Practiced.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07115\"\ - ] = [[{\n \"id\": \"07115\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Practiced.\",\n \"level\": 1,\n \"permanent\": false,\n \ - \ \"weakness\": false\n}]]\r\nallCards[\"False Covenant (2)|\"] = [[{\n \"id\"\ - : \"07116\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"\ - Covenant. Cursed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"07116\"] = [[{\n \"id\": \"07116\",\n \"type\": \"\ - Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Covenant. Cursed.\",\n \"\ - level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Armageddon|\"] = [[{\n \"id\": \"07117\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 0,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"07117\"]\ - \ = [[{\n \"id\": \"07117\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Eye of Chaos|\"] = [[{\n\ - \ \"id\": \"07118\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Spell. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"\ - weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"07118\"] = [[{\n \"id\"\ - : \"07118\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\":\ - \ \"Spell. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"Shroud of Shadows|\"] = [[{\n \"\ - id\": \"07119\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\"\ - : \"Spell. Cursed.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Charge\"\ - ,\n \"count\": 3\n }\n}]]\r\nallCards[\"07119\"] = [[{\n \"id\": \"07119\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"Paradoxical Covenant (2)|\"] = [[{\n \"id\": \"07120\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Covenant.\ - \ Blessed. Cursed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"07120\"] = [[{\n \"id\": \"07120\",\n \"type\": \"\ - Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Covenant. Blessed. Cursed.\"\ - ,\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Mariner's Compass|\"] = [[{\n \"id\": \"07121\",\n \"type\": \"Asset\",\n \"\ - class\": \"Survivor\",\n \"traits\": \"Item. Tool.\",\n \"level\": 0,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07121\"] = [[{\n\ - \ \"id\": \"07121\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Item. Tool.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Ancient Covenant (2)|\"] = [[{\n \"id\": \"07122\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Covenant.\ - \ Blessed.\",\n \"level\": 2,\n \"permanent\": true,\n \"weakness\": false\n\ - }]]\r\nallCards[\"07122\"] = [[{\n \"id\": \"07122\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Covenant. Blessed.\",\n \"level\"\ - : 2,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Joe Sargent|Rattletrap\ - \ Bus Driver\"] = [[{\n \"id\": \"07150\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Ally. Hybrid.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"07150\"] = [[{\n \"id\": \"07150\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Hybrid.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Joe Sargent|\"\ - ] = [[{\n \"id\": \"07150\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Hybrid.\",\n \"permanent\": false,\n \"weakness\":\ - \ false\n}]]\r\nallCards[\"Teachings of the Order|\"] = [[{\n \"id\": \"07151\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Tome.\"\ - ,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"07151\"] =\ - \ [[{\n \"id\": \"07151\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Tome.\",\n \"permanent\": true,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Gloria Goldberg|The Writer\"] = [[{\n \"id\": \"98019\",\n\ - \ \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\ - \n}]]\r\nallCards[\"98019\"] = [[{\n \"id\": \"98019\",\n \"type\": \"Investigator\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"\ - Gloria Goldberg (promo version)|The Writer\"] = [[{\n \"id\": \"98019-promo\"\ - ,\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\ - \n}]]\r\nallCards[\"Gloria Goldberg (Parallel)|The Writer\"] = [[{\n \"id\":\ - \ \"98019-p\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"Gloria Goldberg (Parallel Front)|The\ - \ Writer\"] = [[{\n \"id\": \"98019-pf\",\n \"type\": \"Investigator\",\n \"\ - class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\n}]]\r\nallCards[\"Gloria\ - \ Goldberg (Parallel Back)|The Writer\"] = [[{\n \"id\": \"98019-pb\",\n \"\ - type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\"\ - \n}]]\r\nallCards[\"Gloria Goldberg|\"] = [[{\n \"id\": \"98019-m\",\n \"type\"\ - : \"Minicard\"\n}]]\r\nallCards[\"Gloria Goldberg|Promo version\"] = [[{\n \"\ - id\": \"98019-promo-m\",\n \"type\": \"Minicard\"\n}]]\r\nallCards[\"Ruth Westmacott|Dark\ - \ Revelations\"] = [[{\n \"id\": \"98020\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Ally. Artist.\",\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"98020\"] = [[{\n \"id\": \"98020\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Artist.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ruth Westmacott|\"\ - ] = [[{\n \"id\": \"98020\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Artist.\",\n \"permanent\": false,\n \"weakness\":\ - \ false\n}]]\r\nallCards[\"Liber Omnium Finium|\"] = [[{\n \"id\": \"98021\"\ - ,\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\": \"Endtimes.\"\ - ,\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"98021\"] =\ - \ [[{\n \"id\": \"98021\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Endtimes.\",\n \"permanent\": false,\n \"weakness\": true\n\ - }]]\r\nallCards[\"Heirloom of Hyperborea|Artifact from Another Life (Advanced)\"\ - ] = [[{\n \"id\": \"90018\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"90018\"] = [[{\n \"id\": \"90018\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Heirloom of Hyperborea|\"]\ - \ = [[{\n \"id\": \"90018\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Dark Memory|Advanced\"] = [[{\n \"id\": \"90019\",\n \"type\"\ - : \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"permanent\"\ - : false,\n \"weakness\": true\n}]]\r\nallCards[\"90019\"] = [[{\n \"id\": \"\ - 90019\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Spell.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"Keen\ - \ Eye|\"] = [[{\n \"id\": \"07152\",\n \"type\": \"Asset\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Talent.\",\n \"level\": 0,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"07152\"] = [[{\n \"id\": \"07152\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Talent.\"\ - ,\n \"level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Radiant Smite (1)|\"] = [[{\n \"id\": \"07153\",\n \"type\": \"Event\",\n \"\ - class\": \"Guardian\",\n \"traits\": \"Spell. Spirit. Blessed.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07153\"\ - ] = [[{\n \"id\": \"07153\",\n \"type\": \"Event\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Spell. Spirit. Blessed.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"The Truth Beckons|\"] = [[{\n\ - \ \"id\": \"07154\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Insight.\",\n \"level\": 0,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"07154\"] = [[{\n \"id\": \"07154\",\n \"type\": \"\ - Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight.\",\n \"level\":\ - \ 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Gaze of\ - \ Ouraxsh (2)|\"] = [[{\n \"id\": \"07155\",\n \"type\": \"Event\",\n \"class\"\ - : \"Seeker\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"07155\"] = [[{\n \"id\": \"\ - 07155\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Spell.\ - \ Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Priest of Two Faiths (1)|\"] = [[{\n \"id\": \"07156\",\n \ - \ \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Blessed.\ - \ Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"07156\"] = [[{\n \"id\": \"07156\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Blessed. Cursed.\",\n \"level\"\ - : 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Under\ - \ Surveillance (1)|\"] = [[{\n \"id\": \"07157\",\n \"type\": \"Event\",\n \ - \ \"class\": \"Rogue\",\n \"traits\": \"Tactic. Trap.\",\n \"level\": 1,\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07157\"] = [[{\n\ - \ \"id\": \"07157\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Tactic. Trap.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Blood Pact|\"] = [[{\n \"id\": \"07158\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Pact.\",\n \"\ - level\": 0,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 07158\"] = [[{\n \"id\": \"07158\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell. Pact.\",\n \"level\": 0,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"Abyssal Tome (2)|\"] = [[{\n\ - \ \"id\": \"07159\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Item. Tome.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"07159\"] = [[{\n \"id\": \"07159\",\n \"type\": \"\ - Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Item. Tome.\",\n \"level\"\ - : 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Butterfly\ - \ Effect (1)|\"] = [[{\n \"id\": \"07160\",\n \"type\": \"Event\",\n \"class\"\ - : \"Survivor\",\n \"traits\": \"Paradox. Blessed. Cursed.\",\n \"level\": 1,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07160\"] =\ - \ [[{\n \"id\": \"07160\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Paradox. Blessed. Cursed.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Third Time's a Charm (2)|\"\ - ] = [[{\n \"id\": \"07161\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Spirit.\",\n \"level\": 2,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"07161\"] = [[{\n \"id\": \"07161\",\n \"\ - type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \ - \ \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Manipulate Destiny (2)|\"] = [[{\n \"id\": \"07162\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Spell.\",\n \"level\": 2,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07162\"] = [[{\n\ - \ \"id\": \"07162\",\n \"type\": \"Event\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Spell.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Fishing Vessel|\"] = [[{\n \"id\": \"07178\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Vehicle.\",\n \ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07178\"] = [[{\n\ - \ \"id\": \"07178\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Vehicle.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\ - \nallCards[\"Waveworn Idol|\"] = [[{\n \"id\": \"07179\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"07179\"] = [[{\n \"id\": \"\ - 07179\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Awakened Mantle|\"] = [[{\n \"id\": \"07180\",\n \"type\": \"Asset\",\n \"\ - class\": \"Neutral\",\n \"traits\": \"Item. Relic. Clothing.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"07180\"] = [[{\n \"id\": \"\ - 07180\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"\ - Item. Relic. Clothing.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\ - \nallCards[\"Headdress of Y'ha-nthlei|\"] = [[{\n \"id\": \"07181\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic.\",\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07181\"] = [[{\n\ - \ \"id\": \"07181\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Relic.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Enchanted Armor (2)|\"] = [[{\n \"id\": \"07189\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ritual. Armor.\",\n\ - \ \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 07189\"] = [[{\n \"id\": \"07189\",\n \"type\": \"Asset\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Ritual. Armor.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Blessing of Isis (3)|\"] =\ - \ [[{\n \"id\": \"07190\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Ritual. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"07190\"] = [[{\n \"id\": \"07190\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Ritual.\ - \ Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Cryptic Grimoire (4)|Text of the Elder Herald\"] = [[{\n \"\ - id\": \"07191\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\"\ - : \"Item. Tome. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"07191\"] = [[{\n \"id\": \"07191\",\n \"type\": \"\ - Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Cursed.\",\n \ - \ \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Cryptic Grimoire (4)|\"] = [[{\n \"id\": \"07191\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Cursed.\",\n \"level\"\ - : 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Cryptic\ - \ Grimoire (4)|Text of the Elder Guardian\"] = [[{\n \"id\": \"07192\",\n \"\ - type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item. Tome. Blessed.\"\ - ,\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 07192\"] = [[{\n \"id\": \"07192\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Item. Tome. Blessed.\",\n \"level\": 4,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Cryptic Grimoire (4)|\"] =\ - \ [[{\n \"id\": \"07192\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n\ - \ \"traits\": \"Item. Tome. Blessed.\",\n \"level\": 4,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"R\uFFFDastrad (1)|\"] = [[{\n \"id\"\ - : \"07193\",\n \"type\": \"Event\",\n \"class\": \"Rogue\",\n \"traits\": \"\ - Spell. Spirit. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"07193\"] = [[{\n \"id\": \"07193\",\n \"type\": \"\ - Event\",\n \"class\": \"Rogue\",\n \"traits\": \"Spell. Spirit. Cursed.\",\n\ - \ \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Tristan Botley (2)|Fixer for Hire\"] = [[{\n \"id\": \"07194\",\n \"type\":\ - \ \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Ally. Criminal. Cursed.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 07194\"] = [[{\n \"id\": \"07194\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Ally. Criminal. Cursed.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Tristan Botley (2)|\"] = [[{\n\ - \ \"id\": \"07194\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Ally. Criminal. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Curse of Aeons (3)|\"] = [[{\n \"id\": \"\ - 07195\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual.\ - \ Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"07195\"] = [[{\n \"id\": \"07195\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Ritual. Cursed.\",\n \"level\":\ - \ 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Unrelenting\ - \ (1)|\"] = [[{\n \"id\": \"07196\",\n \"type\": \"Skill\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Practiced.\",\n \"level\": 1,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"07196\"] = [[{\n \"id\": \"\ - 07196\",\n \"type\": \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Practiced.\",\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Signum Crucis (2)|\"] = [[{\n \"id\": \"07197\",\n \"type\"\ - : \"Skill\",\n \"class\": \"Survivor\",\n \"traits\": \"Practiced. Blessed.\"\ - ,\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 07197\"] = [[{\n \"id\": \"07197\",\n \"type\": \"Skill\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Practiced. Blessed.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Thomas Dawson's Car|Running\"\ - ] = [[{\n \"id\": \"07211a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Vehicle.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"07211a\"] = [[{\n \"id\": \"07211a\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Vehicle.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Thomas Dawson's Car|\"] = [[{\n \"\ - id\": \"07211a\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Vehicle.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Elina Harper's Car|Running\"] = [[{\n \"id\": \"07212a\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Vehicle.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"07212a\"] = [[{\n \"id\": \"07212a\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Vehicle.\"\ - ,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Elina Harper's\ - \ Car|\"] = [[{\n \"id\": \"07212a\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Vehicle.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Holy Rosary (2)|\"] = [[{\n \"id\": \"07220\",\n \ - \ \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Charm.\ - \ Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"07220\"] = [[{\n \"id\": \"07220\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Item. Charm. Blessed.\",\n \"\ - level\": 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Shield of Faith (2)|\"] = [[{\n \"id\": \"07221\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Guardian\",\n \"traits\": \"Spell. Blessed.\",\n \"level\":\ - \ 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07221\"\ - ] = [[{\n \"id\": \"07221\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\"\ - ,\n \"traits\": \"Spell. Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Fey (1)|\"] = [[{\n \"id\": \"07222\"\ - ,\n \"type\": \"Skill\",\n \"class\": \"Seeker\",\n \"traits\": \"Innate. Cursed.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 07222\"] = [[{\n \"id\": \"07222\",\n \"type\": \"Skill\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Innate. Cursed.\",\n \"level\": 1,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Guided by the Unseen (3)|\"\ - ] = [[{\n \"id\": \"07223\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Ritual.\",\n \"level\": 3,\n \"permanent\": false,\n \"\ - weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Secret\",\n \"count\": 4\n }\n}]]\r\nallCards[\"07223\"] = [[{\n \"id\"\ - : \"07223\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\":\ - \ \"Ritual.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Secret\",\n \"\ - count\": 4\n }\n}]]\r\nallCards[\"\\\"Lucky\\\" Penny (2)|Omen of Misfortune\"\ - ] = [[{\n \"id\": \"07224\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Item. Charm. Cursed.\",\n \"level\": 2,\n \"permanent\":\ - \ false,\n \"weakness\": false\n}]]\r\nallCards[\"07224\"] = [[{\n \"id\": \"\ - 07224\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item.\ - \ Charm. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"\\\"Lucky\\\" Penny (2)|\"] = [[{\n \"id\": \"07224\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Charm.\ - \ Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Eye of the Djinn (2)|Vessel of Good and Evil\"] = [[{\n \"\ - id\": \"07225\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Item. Relic. Blessed. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"07225\"] = [[{\n \"id\": \"07225\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\ - \ Blessed. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Eye of the Djinn (2)|\"] = [[{\n \"id\": \"07225\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\ - \ Blessed. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Armageddon (4)|\"] = [[{\n \"id\": \"07226\",\n \"\ - type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\"\ - ,\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n\ - \ }\n}]]\r\nallCards[\"07226\"] = [[{\n \"id\": \"07226\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 4,\n\ - \ \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - Eye of Chaos (4)|\"] = [[{\n \"id\": \"07227\",\n \"type\": \"Asset\",\n \"\ - class\": \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 4,\n \"\ - permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"\ - resource\",\n \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"\ - 07227\"] = [[{\n \"id\": \"07227\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 4,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Shroud of\ - \ Shadows (4)|\"] = [[{\n \"id\": \"07228\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Spell. Cursed.\",\n \"level\": 4,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"07228\"]\ - \ = [[{\n \"id\": \"07228\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Spell. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Charge\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Spirit of Humanity (2)|\"\ - ] = [[{\n \"id\": \"07229\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Ritual. Blessed. Cursed.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"07229\"] = [[{\n \"id\": \"\ - 07229\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Ritual. Blessed. Cursed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Harmony Restored (2)|\"] = [[{\n \"id\": \"07230\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Fortune.\ - \ Blessed.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"07230\"] = [[{\n \"id\": \"07230\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Survivor\",\n \"traits\": \"Fortune. Blessed.\",\n \"level\"\ - : 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Enchant\ - \ Weapon (3)|\"] = [[{\n \"id\": \"07261\",\n \"type\": \"Event\",\n \"class\"\ - : \"Guardian\",\n \"traits\": \"Spell. Upgrade.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"07261\"] = [[{\n \"id\": \"\ - 07261\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Spell. Upgrade.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\":\ - \ false\n}]]\r\nallCards[\"Nephthys (4)|Huntress of Bast\"] = [[{\n \"id\": \"\ - 07262\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"\ - Ally. Blessed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"07262\"] = [[{\n \"id\": \"07262\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Guardian\",\n \"traits\": \"Ally. Blessed.\",\n \"level\"\ - : 4,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Nephthys\ - \ (4)|\"] = [[{\n \"id\": \"07262\",\n \"type\": \"Asset\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Ally. Blessed.\",\n \"level\": 4,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"The Stygian Eye (3)|\"] = [[{\n\ - \ \"id\": \"07263\",\n \"type\": \"Event\",\n \"class\": \"Seeker\",\n \"\ - traits\": \"Insight. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"07263\"] = [[{\n \"id\": \"07263\",\n \"\ - type\": \"Event\",\n \"class\": \"Seeker\",\n \"traits\": \"Insight. Cursed.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Hyperawareness (4)|\"] = [[{\n \"id\": \"07264\",\n \"type\": \"Asset\",\n \ - \ \"class\": \"Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Resource\",\n \"count\": 2\n }\n}]]\r\nallCards[\"07264\"\ - ] = [[{\n \"id\": \"07264\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"\ - weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Resource\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Geas (2)|\"] = [[{\n\ - \ \"id\": \"07265\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Pact.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"07265\"] = [[{\n \"id\": \"07265\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Pact.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Hard Knocks (4)|\"] = [[{\n\ - \ \"id\": \"07266\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n\ - \ \"uses\": {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \ - \ \"count\": 2\n }\n}]]\r\nallCards[\"07266\"] = [[{\n \"id\": \"07266\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Talent.\",\n\ - \ \"level\": 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\"\ - : {\n \"token\": \"resource\",\n \"type\": \"Resource\",\n \"count\"\ - : 2\n }\n}]]\r\nallCards[\"Ikiaq (3)|The Council's Chosen\"] = [[{\n \"id\"\ - : \"07267\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\":\ - \ \"Ally. Sorcerer.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"07267\"] = [[{\n \"id\": \"07267\",\n \"type\": \"\ - Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\"\ - : 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Ikiaq\ - \ (3)|\"] = [[{\n \"id\": \"07267\",\n \"type\": \"Asset\",\n \"class\": \"\ - Mystic\",\n \"traits\": \"Ally. Sorcerer.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Flute of the Outer Gods (4)|\"\ - ] = [[{\n \"id\": \"07268\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Item. Instrument. Relic. Cursed.\",\n \"level\": 4,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07268\"] = [[{\n\ - \ \"id\": \"07268\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"\ - traits\": \"Item. Instrument. Relic. Cursed.\",\n \"level\": 4,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"A Watchful Peace (3)|\"] =\ - \ [[{\n \"id\": \"07269\",\n \"type\": \"Event\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Spirit. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"07269\"] = [[{\n \"id\": \"07269\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\ - \ Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"A Watchful Peace (3) (Taboo)|\"] = [[{\n \"id\": \"07269-t\"\ - ,\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"Spirit.\ - \ Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Dig Deep (4)|\"] = [[{\n \"id\": \"07270\",\n \"type\": \"\ - Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Talent.\",\n \"level\"\ - : 4,\n \"permanent\": false,\n \"weakness\": false,\n \"uses\": {\n \"token\"\ - : \"resource\",\n \"type\": \"Resource\",\n \"count\": 2\n }\n}]]\r\nallCards[\"\ - 07270\"] = [[{\n \"id\": \"07270\",\n \"type\": \"Asset\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Talent.\",\n \"level\": 4,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Resource\",\n \"count\": 2\n }\n}]]\r\nallCards[\"Favor of the Moon (1)|\"\ - ] = [[{\n \"id\": \"07271\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Pact. Cursed.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"07271\"] = [[{\n \"id\": \"07271\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Pact. Cursed.\"\ - ,\n \"level\": 1,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Favor of the Sun (1)|\"] = [[{\n \"id\": \"07272\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Neutral\",\n \"traits\": \"Pact. Blessed.\",\n \"level\": 1,\n\ - \ \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"07272\"] =\ - \ [[{\n \"id\": \"07272\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Pact. Blessed.\",\n \"level\": 1,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Purifying Corruption (4)|\"] = [[{\n\ - \ \"id\": \"07273\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Ritual. Blessed. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"07273\"] = [[{\n \"id\": \"07273\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Ritual.\ - \ Blessed. Cursed.\",\n \"level\": 4,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Y'ha-nthlei Statue|Dynamic Relic\"] = [[{\n \"id\"\ - : \"07300b\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Item. Relic. Blessed.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"07300b\"] = [[{\n \"id\": \"07300b\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Relic. Blessed.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Y'ha-nthlei Statue|\"] = [[{\n\ - \ \"id\": \"07300b\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Relic. Blessed.\",\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Hallow (3)|\"] = [[{\n \"id\": \"07301\",\n \"type\"\ - : \"Event\",\n \"class\": \"Guardian\",\n \"traits\": \"Spell. Blessed.\",\n\ - \ \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 07301\"] = [[{\n \"id\": \"07301\",\n \"type\": \"Event\",\n \"class\": \"\ - Guardian\",\n \"traits\": \"Spell. Blessed.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Hallow (3) (Taboo)|\"] = [[{\n\ - \ \"id\": \"07301-t\",\n \"type\": \"Event\",\n \"class\": \"Guardian\",\n\ - \ \"traits\": \"Spell. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Holy Spear (5)|\"] = [[{\n \"id\":\ - \ \"07302\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Item. Weapon. Melee. Blessed.\",\n \"level\": 5,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"07302\"] = [[{\n \"id\": \"07302\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Item. Weapon.\ - \ Melee. Blessed.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Ancestral Knowledge (3)|\"] = [[{\n \"id\": \"07303\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Talent.\"\ - ,\n \"level\": 3,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 07303\"] = [[{\n \"id\": \"07303\",\n \"type\": \"Asset\",\n \"class\": \"\ - Seeker\",\n \"traits\": \"Talent.\",\n \"level\": 3,\n \"permanent\": true,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Ariadne's Twine (3)|\"] = [[{\n \"\ - id\": \"07304\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\"\ - : \"Ritual.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"07304\"] = [[{\n \"id\": \"07304\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Ritual.\",\n \"level\": 3,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\".25 Automatic (2)|\"\ - ] = [[{\n \"id\": \"07305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\"\ - ,\n \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"07305\"] =\ - \ [[{\n \"id\": \"07305\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n\ - \ \"traits\": \"Item. Weapon. Firearm. Illicit.\",\n \"level\": 2,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n\ - \ \"type\": \"Ammo\",\n \"count\": 4\n }\n}]]\r\nallCards[\"Justify the\ - \ Means (3)|\"] = [[{\n \"id\": \"07306\",\n \"type\": \"Skill\",\n \"class\"\ - : \"Rogue\",\n \"traits\": \"Practiced. Cursed.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"07306\"] = [[{\n \"id\": \"\ - 07306\",\n \"type\": \"Skill\",\n \"class\": \"Rogue\",\n \"traits\": \"Practiced.\ - \ Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Lucky Dice (3)|...Or Are They?\"] = [[{\n \"id\": \"07307\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Item. Relic.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 07307\"] = [[{\n \"id\": \"07307\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Lucky Dice (3)|\"] = [[{\n \"id\":\ - \ \"07307\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"\ - Item. Relic.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Rite of Equilibrium (5)|\"] = [[{\n \"id\": \"07308\",\n \"\ - type\": \"Event\",\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Blessed.\ - \ Cursed.\",\n \"level\": 5,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"07308\"] = [[{\n \"id\": \"07308\",\n \"type\": \"Event\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Spell. Blessed. Cursed.\",\n \"\ - level\": 5,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Jacob Morrison (3)|Coast Guard Captain\"] = [[{\n \"id\": \"07309\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Ally. Blessed.\",\n\ - \ \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 07309\"] = [[{\n \"id\": \"07309\",\n \"type\": \"Asset\",\n \"class\": \"\ - Survivor\",\n \"traits\": \"Ally. Blessed.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Jacob Morrison (3)|\"] = [[{\n\ - \ \"id\": \"07309\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"\ - traits\": \"Ally. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n \"\ - weakness\": false\n}]]\r\nallCards[\"Shrine of the Moirai (3)|\"] = [[{\n \"\ - id\": \"07310\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Fortune. Blessed. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Offering\",\n \"count\": 3\n }\n}]]\r\nallCards[\"07310\"] = [[{\n \"\ - id\": \"07310\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\"\ - : \"Fortune. Blessed. Cursed.\",\n \"level\": 3,\n \"permanent\": false,\n \ - \ \"weakness\": false,\n \"uses\": {\n \"token\": \"resource\",\n \"type\"\ - : \"Offering\",\n \"count\": 3\n }\n}]]\r\nallCards[\"Diving Suit|\"] = [[{\n\ - \ \"id\": \"07338\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Item. Armor.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"07338\"] = [[{\n \"id\": \"07338\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Item. Armor.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Directive|Due Diligence\"]\ - \ = [[{\n \"id\": \"90025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"90025\"] =\ - \ [[{\n \"id\": \"90025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Directive|\"\ - ] = [[{\n \"id\": \"90025\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"Directive|Red\ - \ Tape\"] = [[{\n \"id\": \"90026\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 90026\"] = [[{\n \"id\": \"90026\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Directive|\"] = [[{\n \"id\": \"90026\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Directive|Consult Experts\"] = [[{\n \"id\": \"90027\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n\ - }]]\r\nallCards[\"90027\"] = [[{\n \"id\": \"90027\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Directive|\"] = [[{\n \"id\": \"90027\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Directive|Seek the Truth\"] = [[{\n \"id\": \"90028\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"90028\"] = [[{\n \"id\": \"90028\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Directive|\"] = [[{\n \"id\": \"90028\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Directive|Leave No Doubt\"] = [[{\n \"id\": \"90029\",\n \"\ - type\": \"Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"90029\"] = [[{\n \"id\": \"90029\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Directive|\"] = [[{\n \"id\": \"90029\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"permanent\": true,\n \"weakness\": false\n\ - }]]\r\nallCards[\"Roland's .38 Special|Advanced\"] = [[{\n \"id\": \"90030\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Weapon.\ - \ Firearm.\",\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 90030\"] = [[{\n \"id\": \"90030\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Item. Weapon. Firearm.\",\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Cover Up|Advanced\"] = [[{\n \"id\"\ - : \"90031\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Task.\",\n \"permanent\": false,\n \"weakness\": true\n}]]\r\nallCards[\"\ - 90031\"] = [[{\n \"id\": \"90031\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Task.\",\n \"permanent\": false,\n \"weakness\"\ - : true\n}]]\r\nallCards[\"The Star \uFFFD XVII (3)|You Have Been Chosen\"] = [[{\n\ - \ \"id\": \"54001\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"54001\"] = [[{\n \"id\": \"54001\",\n \"type\": \"\ - Asset\",\n \"class\": \"Guardian\",\n \"traits\": \"Tarot.\",\n \"level\":\ - \ 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Star\ - \ \uFFFD XVII (3)|\"] = [[{\n \"id\": \"54001\",\n \"type\": \"Asset\",\n \"\ - class\": \"Guardian\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Hallowed Mirror (3)|\"] = [[{\n\ - \ \"id\": \"54002\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"\ - traits\": \"Item. Relic. Occult. Blessed.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"05314\"\ - ,\n \"count\": 3\n }\n ]\n}]]\r\nallCards[\"54002\"] = [[{\n \"id\"\ - : \"54002\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"traits\"\ - : \"Item. Relic. Occult. Blessed.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"05314\",\n \ - \ \"count\": 3\n }\n ]\n}]]\r\nallCards[\"The World \uFFFD XXI (3)|The\ - \ Journey is Complete\"] = [[{\n \"id\": \"54003\",\n \"type\": \"Asset\",\n\ - \ \"class\": \"Seeker\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"54003\"] = [[{\n \"id\": \"\ - 54003\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Tarot.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - The World \uFFFD XXI (3)|\"] = [[{\n \"id\": \"54003\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Seeker\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Occult Lexicon (3)|\"\ - ] = [[{\n \"id\": \"54004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\"\ - ,\n \"traits\": \"Item. Tome. Occult.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false,\n \"bonded\": [\n {\n \"id\": \"05317\",\n \ - \ \"count\": 3\n }\n ]\n}]]\r\nallCards[\"54004\"] = [[{\n \"id\": \"\ - 54004\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"traits\": \"Item.\ - \ Tome. Occult.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\":\ - \ false,\n \"bonded\": [\n {\n \"id\": \"05317\",\n \"count\": 3\n\ - \ }\n ]\n}]]\r\nallCards[\"Knight of Swords (3)|Charge Ever Onward\"] = [[{\n\ - \ \"id\": \"54005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\"\ - : \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"54005\"] = [[{\n \"id\": \"54005\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Rogue\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Knight of Swords (3)|\"] =\ - \ [[{\n \"id\": \"54005\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n\ - \ \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Well Connected (3)|\"] = [[{\n \"id\": \"54006\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"traits\": \"Condition.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - 54006\"] = [[{\n \"id\": \"54006\",\n \"type\": \"Asset\",\n \"class\": \"\ - Rogue\",\n \"traits\": \"Condition.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"The Hierophant \uFFFD V (3)|Your True\ - \ Master Awaits\"] = [[{\n \"id\": \"54007\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Mystic\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"54007\"] = [[{\n \"id\": \"54007\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Tarot.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - The Hierophant \uFFFD V (3)|\"] = [[{\n \"id\": \"54007\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Mystic\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Sign Magick (3)|\"\ - ] = [[{\n \"id\": \"54008\",\n \"type\": \"Asset\",\n \"class\": \"Mystic\"\ - ,\n \"traits\": \"Ritual. Talent.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"54008\"] = [[{\n \"id\": \"54008\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Mystic\",\n \"traits\": \"Ritual. Talent.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Nine of Rods (3)|Every Trial a Lesson\"] = [[{\n \"id\": \"54009\",\n \"type\"\ - : \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Tarot.\",\n \"level\"\ - : 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"54009\"\ - ] = [[{\n \"id\": \"54009\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\"\ - ,\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"Nine of Rods (3)|\"] = [[{\n \"id\": \"54009\",\n\ - \ \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"traits\": \"Tarot.\"\ - ,\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Trial by Fire (3)|\"] = [[{\n \"id\": \"54010\",\n \"type\": \"Event\",\n \"\ - class\": \"Survivor\",\n \"traits\": \"Spirit.\",\n \"level\": 3,\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"54010\"] = [[{\n \"id\": \"\ - 54010\",\n \"type\": \"Event\",\n \"class\": \"Survivor\",\n \"traits\": \"\ - Spirit.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"The Fool \uFFFD 0 (3)|Unlimited Potential\"] = [[{\n \"id\"\ - : \"54011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"54011\"] = [[{\n \"id\": \"54011\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"\ - permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"The Fool \uFFFD\ - \ 0 (3)|\"] = [[{\n \"id\": \"54011\",\n \"type\": \"Asset\",\n \"class\":\ - \ \"Neutral\",\n \"traits\": \"Tarot.\",\n \"level\": 3,\n \"permanent\": false,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"Moon Pendant (2)|\"] = [[{\n \"id\"\ - : \"54012\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\"\ - : \"Item. Charm.\",\n \"level\": 2,\n \"permanent\": false,\n \"weakness\"\ - : false\n}]]\r\nallCards[\"54012\"] = [[{\n \"id\": \"54012\",\n \"type\": \"\ - Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Charm.\",\n \"level\"\ - : 2,\n \"permanent\": false,\n \"weakness\": false\n}]]\r\nallCards[\"Observed\ - \ (4)|\"] = [[{\n \"id\": \"54013\",\n \"type\": \"Asset\",\n \"class\": \"\ - Neutral\",\n \"traits\": \"Blessed.\",\n \"level\": 4,\n \"permanent\": true,\n\ - \ \"weakness\": false\n}]]\r\nallCards[\"54013\"] = [[{\n \"id\": \"54013\"\ - ,\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Blessed.\"\ - ,\n \"level\": 4,\n \"permanent\": true,\n \"weakness\": false\n}]]\r\nallCards[\"\ - Damned|\"] = [[{\n \"id\": \"54014\",\n \"type\": \"Treachery\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Curse. Omen.\",\n \"permanent\": true,\n \"\ - weakness\": true,\n \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"54014\"] = [[{\n\ - \ \"id\": \"54014\",\n \"type\": \"Treachery\",\n \"class\": \"Neutral\",\n\ - \ \"traits\": \"Curse. Omen.\",\n \"permanent\": true,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 1\n}]]\r\nallCards[\"The Devil \uFFFD XV|Your Shadow\ - \ Hungers\"] = [[{\n \"id\": \"54015\",\n \"type\": \"Asset\",\n \"class\"\ - : \"Neutral\",\n \"traits\": \"Omen. Tarot.\",\n \"permanent\": false,\n \"\ - weakness\": true,\n \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"54015\"] = [[{\n\ - \ \"id\": \"54015\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Omen. Tarot.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"The Devil \uFFFD XV|\"] = [[{\n\ - \ \"id\": \"54015\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Omen. Tarot.\",\n \"permanent\": false,\n \"weakness\": true,\n\ - \ \"basicWeaknessCount\": 2\n}]]\r\nallCards[\"Erynn MacAoidh|Devoted Enchantress\"\ - ] = [[{\n \"id\": \"54041\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\"\ - ,\n \"traits\": \"Ally. Witch.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\nallCards[\"54041\"] = [[{\n \"id\": \"54041\",\n \"type\": \"Asset\"\ - ,\n \"class\": \"Neutral\",\n \"traits\": \"Ally. Witch.\",\n \"permanent\"\ - : false,\n \"weakness\": false\n}]]\r\nallCards[\"Erynn MacAoidh|\"] = [[{\n\ - \ \"id\": \"54041\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"\ - traits\": \"Ally. Witch.\",\n \"permanent\": false,\n \"weakness\": false\n\ - }]]\r\n\nend)\nreturn __bundle_require(\"__root\")" - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: Metadata Helper - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.37318 - posY: 3.04628325 - posZ: 30.6730347 - rotX: 0.08402716 - rotY: 180.0031 - rotZ: 0.213153377 - scaleX: 2.25 - scaleY: 1.0 - scaleZ: 2.99246836 - Value: 0 - XmlUI: "\n\r\ - \n \r\n \r\n\r\n\ - \r\n \r\n Step 1: Tag the\ - \ Cards\r\n Enter the GUID of a Card, Bag, or Deck to tag.\r\n\ - \ Card: That specific card will be tagged based on its name/description\r\ - \n Bag/Deck: All cards in the container will be tagged\r\n\r\n Tagged\ - \ cards will be moved to just below this helper. Cards which cannot be tagged\ - \ will be placed in a separate pile.\r\n \r\n GUID to tag:\r\n \r\n\ - \ Tag It!\r\n \r\n Step 2: Verify the Tags\r\n Enter the GUID of a Card,\ - \ Bag, or Deck to verify.\r\n Card: That specific card will be have\ - \ its metadata checked\r\n Deck or Bag: All cards in the container will\ - \ be checked\r\n\r\n Verification will check that metadata is present and can\ - \ be parsed. It does not verify that the correct metadata is present.\ - \ In other words, if a card does not have an ID in the metadata it will fail,\ - \ but if it has the wrong ID that will not be detected.\r\n \r\n GUID to verify:\r\n \r\ - \n Verify It!\r\n\r\n \r\n Step 3: Bag the\ - \ Cards\r\n Enter the GUID of a Bag or Deck to move all cards\ - \ to the All Cards Bag.\r\n \r\n GUID to move from:\r\n \r\n All Cards Bag GUID:\r\n \r\n Bag It!\r\n\r\n\n" -Description: '' -DragSelectable: true -GMNotes: '' -GUID: d932ff -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: true -LuaScript: '' -LuaScriptState: '' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: Metadata Helper -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 78.23 - posY: 1.06 - posZ: 31.07 - rotX: 0.02 - rotY: 0.0 - rotZ: 359.99 - scaleX: 0.88 - scaleY: 0.88 - scaleZ: 0.88 -Value: 0 -XmlUI: '' diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9.ttslua b/unpacked/Bag Tarot Deck (Scripted) a230f9.ttslua index 56bd72e2c..1cf1de411 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9.ttslua +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9.ttslua @@ -1,3 +1,47 @@ +-- 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/ScriptedTarot", function(require, _LOADED, __bundle_register, __bundle_modules) CARD_OFFSET = Vector({0, 0.1, -2}) ORIENTATIONS = { {0, 270, 0}, { 0, 90, 0} } READING = { @@ -87,4 +131,9 @@ function fate(color) }) end broadcastToColor("Each card corresponds to one scenario, leftmost is first. Choose and reverse half of the cards (rounded up).", color) -end \ No newline at end of file +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/ScriptedTarot") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9.yaml index 53c1884e3..2cf8aa03e 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9.yaml @@ -6,9 +6,9 @@ Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0.9411765 - g: 0.1254839 - r: 0.627451062 + b: 0.94118 + g: 0.125479937 + r: 0.62745 ContainedObjects: - !include "Bag Tarot Deck (Scripted) a230f9/Card The Magician \xB7 I 0fd716.yaml" - !include "Bag Tarot Deck (Scripted) a230f9/Card The Tower \xB7 XVI 25ae32.yaml" @@ -55,11 +55,11 @@ Sticky: true Tooltip: true Transform: posX: -26.43 - posY: 1.18 + posY: 1.17 posZ: 95.76 - rotX: 359.98 - rotY: 0.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.45 scaleY: 0.45 scaleZ: 0.45 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Death · XIII a00798.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Death · XIII a00798.yaml index 7fb8d27a7..49c19a3f1 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Death · XIII a00798.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Death · XIII a00798.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266313 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -41,9 +41,9 @@ Transform: posX: -12.35 posY: 3.34 posZ: 54.46 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Judgement · XX e5e392.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Judgement · XX e5e392.yaml index 3f00a08b7..4fa6de5bf 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Judgement · XX e5e392.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Judgement · XX e5e392.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266320 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -39,11 +39,11 @@ Sticky: true Tooltip: true Transform: posX: -13.79 - posY: 3.07 + posY: 3.08 posZ: 64.41 - rotX: 0.09 - rotY: 269.99 - rotZ: 177.76 + rotX: 0.0 + rotY: 270.0 + rotZ: 178.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Justice · XI c4282a.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Justice · XI c4282a.yaml index f914e3c73..747a8b748 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Justice · XI c4282a.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Justice · XI c4282a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266311 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -38,12 +38,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 16.03 + posX: 16.04 posY: 3.39 posZ: 45.85 - rotX: 1.01 - rotY: 270.02 - rotZ: 0.98 + rotX: 1.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Strength · VIII e0ad3b.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Strength · VIII e0ad3b.yaml index 2b61122b2..ae8484d2b 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Strength · VIII e0ad3b.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Strength · VIII e0ad3b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266308 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -41,9 +41,9 @@ Transform: posX: -12.35 posY: 3.34 posZ: 52.46 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Temperance · XIV ffb72a.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Temperance · XIV ffb72a.yaml index de8d164ad..ce27a1337 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Temperance · XIV ffb72a.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Temperance · XIV ffb72a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266314 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -41,9 +41,9 @@ Transform: posX: 17.19 posY: 3.16 posZ: 48.91 - rotX: 0.01 - rotY: 270.01 - rotZ: 356.08 + rotX: 0.0 + rotY: 270.0 + rotZ: 356.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Chariot · VII f633db.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Chariot · VII f633db.yaml index f7b44d692..3d36e00d7 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Chariot · VII f633db.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Chariot · VII f633db.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266307 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -43,7 +43,7 @@ Transform: posZ: 44.49 rotX: 0.0 rotY: 270.0 - rotZ: 2.08 + rotZ: 2.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Devil · XV 8328fd.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Devil · XV 8328fd.yaml index 6ababcbcd..eddfa7dd6 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Devil · XV 8328fd.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Devil · XV 8328fd.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266315 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -39,7 +39,7 @@ Sticky: true Tooltip: true Transform: posX: -12.35 - posY: 3.59 + posY: 3.58 posZ: 46.46 rotX: 0.0 rotY: 270.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Emperor · IV 8be589.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Emperor · IV 8be589.yaml index afc953c20..6eb523097 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Emperor · IV 8be589.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Emperor · IV 8be589.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266304 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -41,9 +41,9 @@ Transform: posX: -11.97 posY: 3.34 posZ: 57.31 - rotX: 359.98 + rotX: 0.0 rotY: 90.0 - rotZ: 359.98 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Empress · III ee4a47.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Empress · III ee4a47.yaml index 52207b35d..cc315d658 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Empress · III ee4a47.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Empress · III ee4a47.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266303 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -41,9 +41,9 @@ Transform: posX: -12.35 posY: 3.34 posZ: 48.46 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Fool · 0 01cd9f.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Fool · 0 01cd9f.yaml index f98fde0cb..863fb3e06 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Fool · 0 01cd9f.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Fool · 0 01cd9f.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266300 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -41,8 +41,8 @@ Transform: posX: -13.79 posY: 3.56 posZ: 59.35 - rotX: 1.98 - rotY: 359.99 + rotX: 2.0 + rotY: 0.0 rotZ: 180.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hanged Man · XII 522d77.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hanged Man · XII 522d77.yaml index 335bc8cd8..615da7d46 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hanged Man · XII 522d77.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hanged Man · XII 522d77.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266312 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -41,9 +41,9 @@ Transform: posX: 20.96 posY: 3.21 posZ: 48.65 - rotX: 0.02 - rotY: 270.01 - rotZ: 352.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 353.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hermit · IX e2e3a0.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hermit · IX e2e3a0.yaml index 97f48b1a6..52af83d2d 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hermit · IX e2e3a0.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hermit · IX e2e3a0.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266309 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -39,11 +39,11 @@ Sticky: true Tooltip: true Transform: posX: 20.95 - posY: 3.13 + posY: 3.12 posZ: 50.18 - rotX: 0.02 - rotY: 269.98 - rotZ: 358.23 + rotX: 0.0 + rotY: 270.0 + rotZ: 358.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hierophant · V 2f9064.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hierophant · V 2f9064.yaml index 5c521b75c..e4c4b6c53 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hierophant · V 2f9064.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Hierophant · V 2f9064.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266305 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The High Priestess · II a6d017.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The High Priestess · II a6d017.yaml index 83cdc6837..2cba6e5e5 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The High Priestess · II a6d017.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The High Priestess · II a6d017.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266302 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -40,10 +40,10 @@ Tooltip: true Transform: posX: -12.11 posY: 3.34 - posZ: 55.79 - rotX: 0.02 + posZ: 55.8 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Lovers · VI d5d07a.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Lovers · VI d5d07a.yaml index 88edbbde0..4b7fbbfcc 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Lovers · VI d5d07a.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Lovers · VI d5d07a.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266306 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -41,7 +41,7 @@ Transform: posX: 17.61 posY: 3.36 posZ: 46.71 - rotX: 359.35 + rotX: 359.0 rotY: 270.0 rotZ: 1.0 scaleX: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Magician · I 0fd716.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Magician · I 0fd716.yaml index 555be06f4..1eb7e04fc 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Magician · I 0fd716.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Magician · I 0fd716.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266301 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -39,11 +39,11 @@ Sticky: true Tooltip: true Transform: posX: -13.79 - posY: 2.99 + posY: 2.98 posZ: 65.42 - rotX: 0.09 - rotY: 269.99 - rotZ: 177.76 + rotX: 0.0 + rotY: 270.0 + rotZ: 178.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Moon · XVIII 37c24c.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Moon · XVIII 37c24c.yaml index 704c85229..6df7b93de 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Moon · XVIII 37c24c.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Moon · XVIII 37c24c.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266318 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -41,8 +41,8 @@ Transform: posX: -13.79 posY: 4.15 posZ: 52.3 - rotX: 1.94 - rotY: 359.99 + rotX: 2.0 + rotY: 0.0 rotZ: 180.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Star · XVII 37153b.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Star · XVII 37153b.yaml index 35beab3ae..b90fff225 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Star · XVII 37153b.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Star · XVII 37153b.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266317 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -41,8 +41,8 @@ Transform: posX: -13.79 posY: 4.24 posZ: 51.29 - rotX: 1.94 - rotY: 359.99 + rotX: 2.0 + rotY: 0.0 rotZ: 180.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Sun · XIX 65b6cb.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Sun · XIX 65b6cb.yaml index 5627a8328..f97de7877 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Sun · XIX 65b6cb.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Sun · XIX 65b6cb.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266319 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -41,8 +41,8 @@ Transform: posX: -13.79 posY: 3.9 posZ: 55.32 - rotX: 1.96 - rotY: 359.99 + rotX: 2.0 + rotY: 0.0 rotZ: 180.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Tower · XVI 25ae32.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Tower · XVI 25ae32.yaml index f1df5efeb..28b2ac782 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Tower · XVI 25ae32.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The Tower · XVI 25ae32.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266316 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -41,9 +41,9 @@ Transform: posX: -13.79 posY: 2.56 posZ: 70.46 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 177.85 + rotZ: 178.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The World · XXI dacc75.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The World · XXI dacc75.yaml index cb5ff34b5..251d9b427 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The World · XXI dacc75.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card The World · XXI dacc75.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266321 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -41,9 +41,9 @@ Transform: posX: -13.79 posY: 2.64 posZ: 69.45 - rotX: 0.03 + rotX: 0.0 rotY: 270.0 - rotZ: 177.93 + rotZ: 178.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Wheel of Fortune · X 00f067.yaml b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Wheel of Fortune · X 00f067.yaml index f7cb8bfb7..7aa476ec7 100644 --- a/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Wheel of Fortune · X 00f067.yaml +++ b/unpacked/Bag Tarot Deck (Scripted) a230f9/Card Wheel of Fortune · X 00f067.yaml @@ -5,9 +5,9 @@ AltLookAngle: Autoraise: true CardID: 266310 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -41,9 +41,9 @@ Transform: posX: 19.68 posY: 3.3 posZ: 41.77 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/BlockRectangle 402b5e.yaml b/unpacked/BlockRectangle 402b5e.yaml index a2b467e8d..c9c947e54 100644 --- a/unpacked/BlockRectangle 402b5e.yaml +++ b/unpacked/BlockRectangle 402b5e.yaml @@ -30,9 +30,9 @@ Transform: posX: 73.96 posY: 1.34 posZ: 72.91 - rotX: 359.98 + rotX: 0.0 rotY: 90.0 - rotZ: 269.98 + rotZ: 270.0 scaleX: 0.09 scaleY: 0.11 scaleZ: 0.84 diff --git a/unpacked/BlockRectangle 40dbd9.yaml b/unpacked/BlockRectangle 40dbd9.yaml index 1048af6ea..588300b7b 100644 --- a/unpacked/BlockRectangle 40dbd9.yaml +++ b/unpacked/BlockRectangle 40dbd9.yaml @@ -30,9 +30,9 @@ Transform: posX: 62.28 posY: 1.47 posZ: -70.62 - rotX: 359.98 + rotX: 0.0 rotY: 0.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.09 scaleY: 0.11 scaleZ: 24.36 diff --git a/unpacked/BlockRectangle 598e49.yaml b/unpacked/BlockRectangle 598e49.yaml index c916321fa..d1e4e1c27 100644 --- a/unpacked/BlockRectangle 598e49.yaml +++ b/unpacked/BlockRectangle 598e49.yaml @@ -30,9 +30,9 @@ Transform: posX: 62.56 posY: 1.35 posZ: 70.53 - rotX: 359.98 + rotX: 0.0 rotY: 0.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.09 scaleY: 0.11 scaleZ: 22.95 diff --git a/unpacked/BlockRectangle 612072.yaml b/unpacked/BlockRectangle 612072.yaml index b614f56f8..63ad097f3 100644 --- a/unpacked/BlockRectangle 612072.yaml +++ b/unpacked/BlockRectangle 612072.yaml @@ -30,9 +30,9 @@ Transform: posX: -24.45 posY: 1.31 posZ: 60.35 - rotX: 359.98 + rotX: 0.0 rotY: 90.0 - rotZ: 269.98 + rotZ: 270.0 scaleX: 0.09 scaleY: 0.11 scaleZ: 1.78 diff --git a/unpacked/BlockRectangle 8008a9.yaml b/unpacked/BlockRectangle 8008a9.yaml index bbd75c59a..af3dd0e5c 100644 --- a/unpacked/BlockRectangle 8008a9.yaml +++ b/unpacked/BlockRectangle 8008a9.yaml @@ -30,9 +30,9 @@ Transform: posX: -14.93 posY: 1.32 posZ: 70.54 - rotX: 359.98 + rotX: 0.0 rotY: 0.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.09 scaleY: 0.11 scaleZ: 22.95 diff --git a/unpacked/BlockRectangle 976c46.yaml b/unpacked/BlockRectangle 976c46.yaml index 291db2118..57d158878 100644 --- a/unpacked/BlockRectangle 976c46.yaml +++ b/unpacked/BlockRectangle 976c46.yaml @@ -30,9 +30,9 @@ Transform: posX: -14.78 posY: 1.36 posZ: -69.98 - rotX: 359.98 - rotY: 0.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.09 scaleY: 0.11 scaleZ: 22.95 diff --git a/unpacked/BlockRectangle b7af15.yaml b/unpacked/BlockRectangle b7af15.yaml index d87bf617d..0d1f27eb7 100644 --- a/unpacked/BlockRectangle b7af15.yaml +++ b/unpacked/BlockRectangle b7af15.yaml @@ -30,9 +30,9 @@ Transform: posX: -29.26 posY: 1.35 posZ: -70.29 - rotX: 359.98 - rotY: 0.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.09 scaleY: 0.11 scaleZ: 22.95 diff --git a/unpacked/BlockRectangle e679ba.yaml b/unpacked/BlockRectangle e679ba.yaml index 73a9ff64b..1de6e4372 100644 --- a/unpacked/BlockRectangle e679ba.yaml +++ b/unpacked/BlockRectangle e679ba.yaml @@ -30,9 +30,9 @@ Transform: posX: -29.19 posY: 1.32 posZ: 70.54 - rotX: 359.98 - rotY: 0.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.09 scaleY: 0.11 scaleZ: 22.95 diff --git a/unpacked/Card Detailed phase reference 68fe54.yaml b/unpacked/Card Detailed phase reference 68fe54.yaml index 61fda27ef..4ac49f480 100644 --- a/unpacked/Card Detailed phase reference 68fe54.yaml +++ b/unpacked/Card Detailed phase reference 68fe54.yaml @@ -39,11 +39,11 @@ Sticky: true Tooltip: true Transform: posX: -60.38 - posY: 1.33 + posY: 1.32 posZ: 86.71 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 5.88 scaleY: 1.0 scaleZ: 5.88 diff --git a/unpacked/Card Rules Index 91c83e.yaml b/unpacked/Card Rules Index 91c83e.yaml index fe1241bc1..77de32eed 100644 --- a/unpacked/Card Rules Index 91c83e.yaml +++ b/unpacked/Card Rules Index 91c83e.yaml @@ -40,10 +40,10 @@ Tooltip: true Transform: posX: -60.75 posY: 1.32 - posZ: 54.86 - rotX: 0.02 + posZ: 54.85 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 5.88 scaleY: 1.0 scaleZ: 5.88 diff --git a/unpacked/Checker_black Arkham Deck Cutter 445115.ttslua b/unpacked/Checker_black Arkham Deck Cutter 445115.ttslua index 43bae7883..5f9028c49 100644 --- a/unpacked/Checker_black Arkham Deck Cutter 445115.ttslua +++ b/unpacked/Checker_black Arkham Deck Cutter 445115.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("util/DeckCutter") +end) +__bundle_register("util/DeckCutter", function(require, _LOADED, __bundle_register, __bundle_modules) --- --- Generated by EmmyLua(https://github.com/EmmyLua) --- Created by Whimsical. @@ -29,4 +76,6 @@ function onScriptingButtonDown(index, player_color) smooth = false } end -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Checker_black Arkham Deck Cutter 445115.yaml b/unpacked/Checker_black Arkham Deck Cutter 445115.yaml index 503352cce..a450bce7e 100644 --- a/unpacked/Checker_black Arkham Deck Cutter 445115.yaml +++ b/unpacked/Checker_black Arkham Deck Cutter 445115.yaml @@ -31,10 +31,10 @@ Tooltip: true Transform: posX: 77.16 posY: 1.3 - posZ: 6.31 - rotX: 359.99 + posZ: 6.32 + rotX: 0.0 rotY: 270.0 - rotZ: 179.98 + rotZ: 180.0 scaleX: 0.25 scaleY: 0.25 scaleZ: 0.25 diff --git a/unpacked/Checker_black Command Manager a0b1de.yaml b/unpacked/Checker_black Command Manager a0b1de.yaml index e32aa56e7..7cdd4a7c5 100644 --- a/unpacked/Checker_black Command Manager a0b1de.yaml +++ b/unpacked/Checker_black Command Manager a0b1de.yaml @@ -30,9 +30,9 @@ Transform: posX: 77.06 posY: 1.3 posZ: 9.38 - rotX: 359.99 - rotY: 270.01 - rotZ: 179.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 scaleX: 0.25 scaleY: 0.25 scaleZ: 0.25 diff --git a/unpacked/Checker_black UI Builder ddd2eb.yaml b/unpacked/Checker_black UI Builder ddd2eb.yaml index 05db462d4..545ca6924 100644 --- a/unpacked/Checker_black UI Builder ddd2eb.yaml +++ b/unpacked/Checker_black UI Builder ddd2eb.yaml @@ -30,9 +30,9 @@ Transform: posX: 77.06 posY: 1.3 posZ: 8.94 - rotX: 359.99 - rotY: 270.02 - rotZ: 179.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 scaleX: 0.25 scaleY: 0.25 scaleZ: 0.25 diff --git a/unpacked/Checker_white Configuration 03804b.ttslua b/unpacked/Checker_white Configuration 03804b.ttslua index bc349c757..f4daf0fa3 100644 --- a/unpacked/Checker_white Configuration 03804b.ttslua +++ b/unpacked/Checker_white Configuration 03804b.ttslua @@ -1,3 +1,47 @@ +-- 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("arkhamdb/Configuration", function(require, _LOADED, __bundle_register, __bundle_modules) --- --- Generated by EmmyLua(https://github.com/EmmyLua) --- Created by Whimsical. @@ -162,4 +206,9 @@ configuration = { } }, debug_deck_id = nil, -} \ No newline at end of file +} +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("arkhamdb/Configuration") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Checker_white Configuration 03804b.yaml b/unpacked/Checker_white Configuration 03804b.yaml index 978b3dab0..83a426e3e 100644 --- a/unpacked/Checker_white Configuration 03804b.yaml +++ b/unpacked/Checker_white Configuration 03804b.yaml @@ -32,9 +32,9 @@ Transform: posX: 77.46 posY: 1.49 posZ: 4.35 - rotX: 359.99 + rotX: 0.0 rotY: 270.0 - rotZ: 179.98 + rotZ: 180.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Checker_white Token Spawner 36b4ee.ttslua b/unpacked/Checker_white Token Spawner 36b4ee.ttslua index c11778d80..61af179b2 100644 --- a/unpacked/Checker_white Token Spawner 36b4ee.ttslua +++ b/unpacked/Checker_white Token Spawner 36b4ee.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("util/TokenSpawner") +end) +__bundle_register("util/TokenSpawner", function(require, _LOADED, __bundle_register, __bundle_modules) --- --- Generated by EmmyLua(https://github.com/EmmyLua) --- Created by Whimsical. @@ -89,4 +136,6 @@ function makeResource(object) merge_distance = 5, stackable = true } -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Checker_white Token Spawner 36b4ee.yaml b/unpacked/Checker_white Token Spawner 36b4ee.yaml index 0a1c8ace9..89fcff402 100644 --- a/unpacked/Checker_white Token Spawner 36b4ee.yaml +++ b/unpacked/Checker_white Token Spawner 36b4ee.yaml @@ -30,9 +30,9 @@ Transform: posX: 77.16 posY: 1.3 posZ: 6.95 - rotX: 359.99 - rotY: 270.01 - rotZ: 179.98 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 scaleX: 0.25 scaleY: 0.25 scaleZ: 0.25 diff --git a/unpacked/Custom_Assetbundle 5706ae.yaml b/unpacked/Custom_Assetbundle 5706ae.yaml index 555c56246..1ed570812 100644 --- a/unpacked/Custom_Assetbundle 5706ae.yaml +++ b/unpacked/Custom_Assetbundle 5706ae.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: 40.03 - posY: 1.41 - posZ: -24.9 - rotX: 359.99 - rotY: 0.03 - rotZ: 359.92 + posY: 1.42 + posZ: -24.91 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Assetbundle_Bag Barkham Horror 308439.yaml b/unpacked/Custom_Assetbundle_Bag Barkham Horror 308439.yaml index 331958f47..381fd7e29 100644 --- a/unpacked/Custom_Assetbundle_Bag Barkham Horror 308439.yaml +++ b/unpacked/Custom_Assetbundle_Bag Barkham Horror 308439.yaml @@ -42,9 +42,9 @@ ContainedObjects: Autoraise: true CardID: 537611 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -75,12 +75,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 12.2521725 - posY: 1.48156285 - posZ: 11.9863472 - rotX: 359.920135 - rotY: 269.9998 - rotZ: 0.0168716 + posX: 12.252 + posY: 1.482 + posZ: 11.986 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -92,9 +92,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 ContainedObjects: - AltLookAngle: x: 0.0 @@ -103,9 +103,9 @@ ContainedObjects: Autoraise: true CardID: 538534 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -136,12 +136,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 16.2127476 - posY: 1.475315 - posZ: 9.51947 - rotX: 359.920135 - rotY: 269.999878 - rotZ: 0.0168730076 + posX: 16.213 + posY: 1.475 + posZ: 9.519 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -154,9 +154,9 @@ ContainedObjects: Autoraise: true CardID: 538524 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -187,12 +187,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.2499514 - posY: 1.47659254 - posZ: 9.299698 - rotX: 359.920135 - rotY: 269.9997 - rotZ: 0.01687297 + posX: 15.353 + posY: 1.547 + posZ: 8.894 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -205,9 +205,9 @@ ContainedObjects: Autoraise: true CardID: 538525 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -238,12 +238,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 12.4638176 - posY: 1.54068828 - posZ: 7.441152 - rotX: 359.9202 - rotY: 269.99353 - rotZ: 0.87857914 + posX: 12.464 + posY: 1.541 + posZ: 7.441 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -256,9 +256,9 @@ ContainedObjects: Autoraise: true CardID: 538526 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -289,12 +289,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.9162912 - posY: 1.79808772 - posZ: 6.103409 - rotX: 359.951843 - rotY: 270.000244 - rotZ: 180.3035 + posX: 15.916 + posY: 1.798 + posZ: 6.103 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -307,9 +307,9 @@ ContainedObjects: Autoraise: true CardID: 538536 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -340,12 +340,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 16.5782356 - posY: 1.47493565 - posZ: 9.961658 - rotX: 359.920135 - rotY: 269.999146 - rotZ: 0.01687318 + posX: 16.578 + posY: 1.475 + posZ: 9.962 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -358,9 +358,9 @@ ContainedObjects: Autoraise: true CardID: 538532 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -391,12 +391,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 16.4688568 - posY: 1.545158 - posZ: 8.81801 - rotX: 359.920135 - rotY: 269.999756 - rotZ: 0.01687413 + posX: 16.28 + posY: 1.475 + posZ: 8.46 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -409,9 +409,9 @@ ContainedObjects: Autoraise: true CardID: 538534 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -442,12 +442,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 16.4323025 - posY: 1.51837575 - posZ: 9.536949 - rotX: 359.920135 - rotY: 269.999878 - rotZ: 0.01687268 + posX: 16.432 + posY: 1.518 + posZ: 9.537 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -460,9 +460,9 @@ ContainedObjects: Autoraise: true CardID: 538524 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -493,12 +493,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.3526049 - posY: 1.54707313 - posZ: 8.89351749 - rotX: 359.920135 - rotY: 269.9997 - rotZ: 0.0168733634 + posX: 15.353 + posY: 1.547 + posZ: 8.894 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -511,9 +511,9 @@ ContainedObjects: Autoraise: true CardID: 538532 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -544,12 +544,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 16.2803135 - posY: 1.47490871 - posZ: 8.459558 - rotX: 359.920135 - rotY: 269.999756 - rotZ: 0.0168753881 + posX: 16.28 + posY: 1.475 + posZ: 8.46 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -562,9 +562,9 @@ ContainedObjects: Autoraise: true CardID: 538531 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -595,12 +595,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 16.128027 - posY: 1.5455935 - posZ: 8.667925 - rotX: 359.920135 - rotY: 269.999573 - rotZ: 0.0168728437 + posX: 16.253 + posY: 1.475 + posZ: 8.409 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -613,9 +613,9 @@ ContainedObjects: Autoraise: true CardID: 538529 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -646,12 +646,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 14.7277861 - posY: 1.47730052 - posZ: 9.23175 - rotX: 359.920135 - rotY: 269.9998 - rotZ: 0.0168728139 + posX: 14.728 + posY: 1.477 + posZ: 9.232 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -664,9 +664,9 @@ ContainedObjects: Autoraise: true CardID: 538527 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -697,12 +697,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 16.0556355 - posY: 1.506772 - posZ: 8.84411049 - rotX: 359.9361 - rotY: 269.999939 - rotZ: 0.0134851523 + posX: 16.056 + posY: 1.507 + posZ: 8.844 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -715,9 +715,9 @@ ContainedObjects: Autoraise: true CardID: 538530 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -748,12 +748,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.4820871 - posY: 1.51971459 - posZ: 8.858445 - rotX: 359.920135 - rotY: 269.999756 - rotZ: 0.0168731529 + posX: 15.482 + posY: 1.52 + posZ: 8.858 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -766,9 +766,9 @@ ContainedObjects: Autoraise: true CardID: 538524 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -799,12 +799,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.3525667 - posY: 1.519947 - posZ: 8.893525 - rotX: 359.920135 - rotY: 269.9997 - rotZ: 0.01687317 + posX: 15.353 + posY: 1.52 + posZ: 8.894 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -817,9 +817,9 @@ ContainedObjects: Autoraise: true CardID: 538528 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -850,12 +850,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.5982676 - posY: 1.47597075 - posZ: 8.837103 - rotX: 359.920135 - rotY: 269.999847 - rotZ: 0.0168742668 + posX: 15.598 + posY: 1.476 + posZ: 8.837 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -868,9 +868,9 @@ ContainedObjects: Autoraise: true CardID: 538530 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -901,12 +901,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.2882566 - posY: 1.47638464 - posZ: 8.775076 - rotX: 359.920135 - rotY: 269.999756 - rotZ: 0.0168734882 + posX: 15.288 + posY: 1.476 + posZ: 8.775 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -919,9 +919,9 @@ ContainedObjects: Autoraise: true CardID: 538533 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -952,12 +952,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.5291986 - posY: 1.476279 - posZ: 9.557188 - rotX: 359.920135 - rotY: 269.999664 - rotZ: 0.0168738849 + posX: 15.529 + posY: 1.476 + posZ: 9.557 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -970,9 +970,9 @@ ContainedObjects: Autoraise: true CardID: 538533 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -1003,12 +1003,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.4493685 - posY: 1.53896976 - posZ: 9.816203 - rotX: 359.918823 - rotY: 269.99884 - rotZ: 1.01162326 + posX: 15.449 + posY: 1.539 + posZ: 9.816 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1021,9 +1021,9 @@ ContainedObjects: Autoraise: true CardID: 538525 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -1054,12 +1054,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 12.4523687 - posY: 1.496397 - posZ: 7.43958139 - rotX: 359.9202 - rotY: 269.99353 - rotZ: 0.8785791 + posX: 12.452 + posY: 1.496 + posZ: 7.44 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1072,9 +1072,9 @@ ContainedObjects: Autoraise: true CardID: 538528 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -1105,12 +1105,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.225914 - posY: 1.520093 - posZ: 9.211927 - rotX: 359.920135 - rotY: 269.999817 - rotZ: 0.0168740619 + posX: 15.226 + posY: 1.52 + posZ: 9.212 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1123,9 +1123,9 @@ ContainedObjects: Autoraise: true CardID: 538532 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -1156,12 +1156,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 16.4688187 - posY: 1.51803184 - posZ: 8.818018 - rotX: 359.920135 - rotY: 269.999756 - rotZ: 0.0168751348 + posX: 16.469 + posY: 1.518 + posZ: 8.818 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1174,9 +1174,9 @@ ContainedObjects: Autoraise: true CardID: 538531 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -1207,12 +1207,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 16.1279888 - posY: 1.51846743 - posZ: 8.667933 - rotX: 359.920135 - rotY: 269.999573 - rotZ: 0.0168732665 + posX: 16.128 + posY: 1.518 + posZ: 8.668 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1225,9 +1225,9 @@ ContainedObjects: Autoraise: true CardID: 538531 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -1258,12 +1258,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 16.2530823 - posY: 1.47493184 - posZ: 8.408966 - rotX: 359.920135 - rotY: 269.999634 - rotZ: 0.0168731 + posX: 16.253 + posY: 1.475 + posZ: 8.409 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1276,9 +1276,9 @@ ContainedObjects: Autoraise: true CardID: 538527 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -1309,12 +1309,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 16.320446 - posY: 1.47494972 - posZ: 8.788771 - rotX: 359.920135 - rotY: 269.9998 - rotZ: 0.016872827 + posX: 16.32 + posY: 1.475 + posZ: 8.789 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1327,9 +1327,9 @@ ContainedObjects: Autoraise: true CardID: 538529 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -1360,12 +1360,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 14.6384945 - posY: 1.51900017 - posZ: 9.461267 - rotX: 359.920135 - rotY: 269.999756 - rotZ: 0.0168731529 + posX: 14.638 + posY: 1.519 + posZ: 9.461 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1378,9 +1378,9 @@ ContainedObjects: Autoraise: true CardID: 538535 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -1411,12 +1411,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 16.3402081 - posY: 1.51841569 - posZ: 9.344428 - rotX: 359.920135 - rotY: 269.999756 - rotZ: 0.01687559 + posX: 16.34 + posY: 1.518 + posZ: 9.344 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1429,9 +1429,9 @@ ContainedObjects: Autoraise: true CardID: 538536 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -1462,12 +1462,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 16.68238 - posY: 1.51634276 - posZ: 10.1112 - rotX: 359.920135 - rotY: 269.9991 - rotZ: 0.0168736 + posX: 16.682 + posY: 1.516 + posZ: 10.111 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1480,9 +1480,9 @@ ContainedObjects: Autoraise: true CardID: 538535 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -1513,12 +1513,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 16.278307 - posY: 1.47515655 - posZ: 9.291479 - rotX: 359.920135 - rotY: 269.999756 - rotZ: 0.0168754589 + posX: 16.278 + posY: 1.475 + posZ: 9.291 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1583,12 +1583,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -3.92764878 - posY: 1.74437857 - posZ: 5.75714 - rotX: 359.919739 + posX: -3.928 + posY: 1.744 + posZ: 5.757 + rotX: 0.0 rotY: 270.0 - rotZ: 180.016815 + rotZ: 180.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1600,9 +1600,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 ContainedObjects: - AltLookAngle: x: 0.0 @@ -1611,9 +1611,9 @@ ContainedObjects: Autoraise: true CardID: 537605 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -1644,12 +1644,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.937418 - posY: 1.4728533 - posZ: -0.14389053 - rotX: 359.920135 - rotY: 270.000153 - rotZ: 0.01687217 + posX: 15.937 + posY: 1.473 + posZ: -0.144 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1662,9 +1662,9 @@ ContainedObjects: Autoraise: true CardID: 537604 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -1695,12 +1695,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 16.2317638 - posY: 1.51399493 - posZ: 0.0367458239 - rotX: 359.920135 - rotY: 270.000061 - rotZ: 0.0168725774 + posX: 16.232 + posY: 1.514 + posZ: 0.037 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1739,12 +1739,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.1500063 - posY: 1.49092376 - posZ: -0.08000118 - rotX: 359.920135 - rotY: 270.000183 - rotZ: 0.0168732163 + posX: 15.15 + posY: 1.491 + posZ: -0.08 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1756,9 +1756,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 ContainedObjects: - AltLookAngle: x: 0.0 @@ -1767,9 +1767,9 @@ ContainedObjects: Autoraise: true CardID: 537609 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -1800,12 +1800,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.9446363 - posY: 1.46845531 - posZ: -15.0453625 - rotX: 359.920135 - rotY: 270.000336 - rotZ: 0.0168739613 + posX: 15.945 + posY: 1.468 + posZ: -15.045 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1818,9 +1818,9 @@ ContainedObjects: Autoraise: true CardID: 537608 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -1851,12 +1851,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 16.128437 - posY: 1.49981213 - posZ: -14.769701 - rotX: 359.9201 - rotY: 269.999817 - rotZ: 0.01682643 + posX: 16.128 + posY: 1.5 + posZ: -14.77 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1895,12 +1895,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.15001 - posY: 1.48621225 - posZ: -16.0800076 - rotX: 359.920135 + posX: 15.15 + posY: 1.486 + posZ: -16.08 + rotX: 0.0 rotY: 270.0 - rotZ: 0.0168744437 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1913,9 +1913,9 @@ ContainedObjects: Autoraise: true CardID: 538300 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5383': BackIsHidden: true @@ -1946,12 +1946,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 12.2700071 - posY: 1.48269629 - posZ: 15.9200029 - rotX: 0.0168705136 - rotY: 179.999954 - rotZ: 0.07987617 + posX: 12.27 + posY: 1.483 + posZ: 15.92 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1964,9 +1964,9 @@ ContainedObjects: Autoraise: true CardID: 266500 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2665': BackIsHidden: true @@ -1998,11 +1998,11 @@ ContainedObjects: Tooltip: true Transform: posX: 9.85 - posY: 1.48135853 - posZ: -0.08000088 - rotX: 359.920135 + posY: 1.481 + posZ: -0.08 + rotX: 0.0 rotY: 270.0 - rotZ: 0.0168776326 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 @@ -2014,9 +2014,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 ContainedObjects: - AltLookAngle: x: 0.0 @@ -2025,9 +2025,9 @@ ContainedObjects: Autoraise: true CardID: 538307 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5383': BackIsHidden: true @@ -2058,12 +2058,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 0.0719906762 - posY: 1.59374118 - posZ: -4.16648 - rotX: 0.0122809839 - rotY: 183.2345 - rotZ: 0.08107709 + posX: 0.072 + posY: 1.594 + posZ: -4.166 + rotX: 0.0 + rotY: 183.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -2076,9 +2076,9 @@ ContainedObjects: Autoraise: true CardID: 538306 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5383': BackIsHidden: true @@ -2109,12 +2109,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 0.09467082 - posY: 1.63600564 - posZ: -4.269393 - rotX: 0.015922308 - rotY: 180.002579 - rotZ: 0.0804202259 + posX: 0.095 + posY: 1.636 + posZ: -4.269 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -2153,12 +2153,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -2.72466016 - posY: 1.61594629 - posZ: 0.373314619 - rotX: 0.01689601 - rotY: 179.956955 - rotZ: 0.08024311 + posX: -2.725 + posY: 1.616 + posZ: 0.373 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -2170,9 +2170,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 ContainedObjects: - AltLookAngle: x: 0.0 @@ -2181,9 +2181,9 @@ ContainedObjects: Autoraise: true CardID: 537603 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -2214,12 +2214,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.7847195 - posY: 1.475488 - posZ: 8.0802145 - rotX: 359.920135 + posX: 15.785 + posY: 1.475 + posZ: 8.08 + rotX: 0.0 rotY: 270.0 - rotZ: 0.01687402 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -2232,9 +2232,9 @@ ContainedObjects: Autoraise: true CardID: 537602 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -2265,12 +2265,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.8887768 - posY: 1.50694323 - posZ: 8.303365 - rotX: 359.920135 - rotY: 270.000061 - rotZ: 0.0168491043 + posX: 15.889 + posY: 1.507 + posZ: 8.303 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -2309,12 +2309,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.150013 - posY: 1.49327946 - posZ: 7.919999 - rotX: 359.920135 - rotY: 269.9999 - rotZ: 0.0168748125 + posX: 15.15 + posY: 1.493 + posZ: 7.92 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -2327,9 +2327,9 @@ ContainedObjects: Autoraise: true CardID: 266400 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2664': BackIsHidden: true @@ -2360,12 +2360,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 9.850002 - posY: 1.48371446 - posZ: 7.91999865 - rotX: 359.920135 - rotY: 269.999451 - rotZ: 0.016878793 + posX: 9.85 + posY: 1.484 + posZ: 7.92 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 @@ -2378,9 +2378,9 @@ ContainedObjects: Autoraise: true CardID: 537610 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -2411,12 +2411,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 12.2501726 - posY: 1.48392141 - posZ: 19.9863548 - rotX: 359.920135 - rotY: 269.999664 - rotZ: 0.01687317 + posX: 12.25 + posY: 1.484 + posZ: 19.986 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -2456,12 +2456,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 0.270094126 - posY: 1.489607 - posZ: 28.7769928 - rotX: 359.920135 - rotY: 269.999939 - rotZ: 0.0168723073 + posX: 0.27 + posY: 1.49 + posZ: 28.777 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 3.0 scaleY: 1.0 scaleZ: 3.0 @@ -2474,9 +2474,9 @@ ContainedObjects: Autoraise: true CardID: 538411 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5384': BackIsHidden: true @@ -2507,12 +2507,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -23.6764469 - posY: 1.62806642 - posZ: -0.030018121 - rotX: 359.9201 - rotY: 269.9997 - rotZ: 0.016840037 + posX: -23.676 + posY: 1.628 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -2525,9 +2525,9 @@ ContainedObjects: Autoraise: true CardID: 537612 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -2558,12 +2558,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 12.2500744 - posY: 1.47921 - posZ: 3.986336 - rotX: 359.920135 - rotY: 269.999969 - rotZ: 0.016872175 + posX: 12.25 + posY: 1.479 + posZ: 3.986 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -2576,9 +2576,9 @@ ContainedObjects: Autoraise: true CardID: 538419 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5384': BackIsHidden: true @@ -2609,12 +2609,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -17.1200523 - posY: 1.61444211 - posZ: -15.2800264 - rotX: 359.9201 - rotY: 269.999878 - rotZ: 0.0168397669 + posX: -17.12 + posY: 1.614 + posZ: -15.28 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -2626,9 +2626,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -2762,12 +2762,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -23.6764069 - posY: 1.61334455 - posZ: -3.830024 - rotX: 0.0168246366 - rotY: 180.010437 - rotZ: 0.07994332 + posX: -23.676 + posY: 1.613 + posZ: -3.83 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -2779,9 +2779,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 ContainedObjects: - AltLookAngle: x: 0.0 @@ -2790,9 +2790,9 @@ ContainedObjects: Autoraise: true CardID: 538518 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -2823,12 +2823,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 9.214254 - posY: 1.48677492 - posZ: 15.3036976 - rotX: 359.920135 - rotY: 269.9538 - rotZ: 0.0169376042 + posX: 9.214 + posY: 1.487 + posZ: 15.304 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -2841,9 +2841,9 @@ ContainedObjects: Autoraise: true CardID: 538520 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -2874,12 +2874,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 9.403451 - posY: 1.55860543 - posZ: 15.5998535 - rotX: 359.932373 - rotY: 270.003052 - rotZ: 0.5721982 + posX: 9.403 + posY: 1.559 + posZ: 15.6 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -2892,9 +2892,9 @@ ContainedObjects: Autoraise: true CardID: 538519 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -2925,12 +2925,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 9.975287 - posY: 1.50692475 - posZ: 16.7364483 - rotX: 359.9203 - rotY: 269.999939 - rotZ: 358.929382 + posX: 9.975 + posY: 1.507 + posZ: 16.736 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -2943,9 +2943,9 @@ ContainedObjects: Autoraise: true CardID: 538517 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -2976,12 +2976,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 9.078951 - posY: 1.486318 - posZ: 13.1115875 - rotX: 359.920135 - rotY: 269.999817 - rotZ: 0.0168754384 + posX: 9.079 + posY: 1.486 + posZ: 13.112 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -2994,9 +2994,9 @@ ContainedObjects: Autoraise: true CardID: 538521 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -3027,12 +3027,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 10.0315723 - posY: 1.546113 - posZ: 14.1787777 - rotX: 359.9348 - rotY: 269.995361 - rotZ: 1.75676239 + posX: 10.032 + posY: 1.546 + posZ: 14.179 + rotX: 0.0 + rotY: 270.0 + rotZ: 2.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -3045,9 +3045,9 @@ ContainedObjects: Autoraise: true CardID: 538522 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -3078,12 +3078,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 10.185051 - posY: 1.62485778 - posZ: 14.3955078 - rotX: 359.9442 - rotY: 269.999573 - rotZ: 0.38008976 + posX: 10.185 + posY: 1.625 + posZ: 14.396 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -3096,9 +3096,9 @@ ContainedObjects: Autoraise: true CardID: 538523 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -3129,12 +3129,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 9.706633 - posY: 1.617644 - posZ: 14.15004 - rotX: 359.94397 - rotY: 269.998657 - rotZ: 1.407383 + posX: 9.707 + posY: 1.618 + posZ: 14.15 + rotX: 0.0 + rotY: 270.0 + rotZ: 1.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -3178,12 +3178,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -13.9964075 - posY: 1.65554821 - posZ: -0.180126324 - rotX: 359.9201 - rotY: 270.000031 - rotZ: 180.01683 + posX: -13.996 + posY: 1.656 + posZ: -0.18 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -3196,9 +3196,9 @@ ContainedObjects: Autoraise: true CardID: 538416 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5384': BackIsHidden: true @@ -3229,12 +3229,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -30.2241821 - posY: 1.6394304 - posZ: 7.569985 - rotX: 359.9201 - rotY: 269.999664 - rotZ: 0.0168401375 + posX: -30.224 + posY: 1.639 + posZ: 7.57 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -3246,9 +3246,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -3382,12 +3382,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -20.27327 - posY: 1.60632217 - posZ: -11.5784016 - rotX: 359.983154 - rotY: 0.000216837172 - rotZ: 359.9201 + posX: -20.273 + posY: 1.606 + posZ: -11.578 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.8 scaleY: 1.0 scaleZ: 0.8 @@ -3400,9 +3400,9 @@ ContainedObjects: Autoraise: true CardID: 537615 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -3433,12 +3433,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 12.2505617 - posY: 1.47214222 - posZ: -20.0136776 - rotX: 359.920135 - rotY: 269.999451 - rotZ: 0.0168743152 + posX: 12.251 + posY: 1.472 + posZ: -20.014 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -3450,9 +3450,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -3586,12 +3586,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -20.0815449 - posY: 1.60840344 - posZ: -3.58654165 - rotX: 0.0684103 - rotY: 134.999435 - rotZ: 0.0445856638 + posX: -20.082 + posY: 1.608 + posZ: -3.587 + rotX: 0.0 + rotY: 135.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -3604,9 +3604,9 @@ ContainedObjects: Autoraise: true CardID: 538301 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5383': BackIsHidden: true @@ -3637,12 +3637,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 12.27652 - posY: 1.48033154 - posZ: 7.92000771 - rotX: 0.0168716554 - rotY: 179.999939 - rotZ: 0.07987708 + posX: 12.277 + posY: 1.48 + posZ: 7.92 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -3654,9 +3654,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -3790,12 +3790,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -33.4782867 - posY: 1.62927163 - posZ: 3.855532 - rotX: 359.983154 - rotY: 6.470383e-05 - rotZ: 359.9201 + posX: -33.478 + posY: 1.629 + posZ: 3.856 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.8 scaleY: 1.0 scaleZ: 0.8 @@ -3807,9 +3807,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -3943,12 +3943,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -26.782547 - posY: 1.6188364 - posZ: 0.117902637 - rotX: 0.07989434 - rotY: 90.00026 - rotZ: 359.983124 + posX: -26.783 + posY: 1.619 + posZ: 0.118 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -3960,9 +3960,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -4096,12 +4096,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -23.6764069 - posY: 1.61108756 - posZ: -11.51004 - rotX: 0.0168247949 - rotY: 180.010422 - rotZ: 0.07994416 + posX: -23.676 + posY: 1.611 + posZ: -11.51 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -4114,9 +4114,9 @@ ContainedObjects: Autoraise: true CardID: 266700 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2667': BackIsHidden: true @@ -4147,12 +4147,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 9.850006 - posY: 1.47664726 - posZ: -16.080019 - rotX: 359.920135 - rotY: 270.0104 - rotZ: 0.0168607049 + posX: 9.85 + posY: 1.477 + posZ: -16.08 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 @@ -4165,9 +4165,9 @@ ContainedObjects: Autoraise: true CardID: 538415 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5384': BackIsHidden: true @@ -4198,12 +4198,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -36.7731171 - posY: 1.64632893 - posZ: -0.0300193243 - rotX: 359.9201 - rotY: 269.999756 - rotZ: 0.0168400053 + posX: -36.773 + posY: 1.646 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -4216,9 +4216,9 @@ ContainedObjects: Autoraise: true CardID: 538413 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5384': BackIsHidden: true @@ -4249,12 +4249,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -30.2242317 - posY: 1.63494277 - posZ: -7.70003 - rotX: 359.9201 - rotY: 269.9997 - rotZ: 0.0168400425 + posX: -30.224 + posY: 1.635 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -4266,9 +4266,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -4402,12 +4402,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -36.7731667 - posY: 1.63386714 - posZ: 3.86005521 - rotX: 0.0168245044 - rotY: 180.010574 - rotZ: 0.0799427256 + posX: -36.773 + posY: 1.634 + posZ: 3.86 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -4420,9 +4420,9 @@ ContainedObjects: Autoraise: true CardID: 538304 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5383': BackIsHidden: true @@ -4453,12 +4453,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 12.2745266 - posY: 1.4732672 - posZ: -16.08001 - rotX: 0.0168711934 - rotY: 179.999817 - rotZ: 0.0798774 + posX: 12.275 + posY: 1.473 + posZ: -16.08 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -4471,9 +4471,9 @@ ContainedObjects: Autoraise: true CardID: 266600 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2666': BackIsHidden: true @@ -4504,12 +4504,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 9.850006 - posY: 1.47900283 - posZ: -8.080005 - rotX: 359.920135 - rotY: 269.999756 - rotZ: 0.0168759841 + posX: 9.85 + posY: 1.479 + posZ: -8.08 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 @@ -4522,9 +4522,9 @@ ContainedObjects: Autoraise: true CardID: 537614 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -4555,12 +4555,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 12.2501745 - posY: 1.47449851 - posZ: -12.0136728 - rotX: 359.920135 - rotY: 269.9997 - rotZ: 0.0168739036 + posX: 12.25 + posY: 1.474 + posZ: -12.014 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -4573,9 +4573,9 @@ ContainedObjects: Autoraise: true CardID: 538418 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5384': BackIsHidden: true @@ -4606,12 +4606,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -36.7731438 - posY: 1.64856255 - posZ: 7.56998062 - rotX: 359.9201 - rotY: 269.9997 - rotZ: 0.0168401 + posX: -36.773 + posY: 1.649 + posZ: 7.57 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -4623,9 +4623,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 ContainedObjects: - AltLookAngle: x: 0.0 @@ -4634,9 +4634,9 @@ ContainedObjects: Autoraise: true CardID: 537601 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -4667,12 +4667,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 16.11447 - posY: 1.47629988 - posZ: 12.3989725 - rotX: 359.920135 - rotY: 269.999939 - rotZ: 0.0168736614 + posX: 16.114 + posY: 1.476 + posZ: 12.399 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -4685,9 +4685,9 @@ ContainedObjects: Autoraise: true CardID: 537600 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -4718,12 +4718,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 16.15583 - posY: 1.50774717 - posZ: 12.3576326 - rotX: 359.920135 - rotY: 270.000122 - rotZ: 0.0168947745 + posX: 16.156 + posY: 1.508 + posZ: 12.358 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -4762,12 +4762,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.1500025 - posY: 1.495635 - posZ: 15.920002 - rotX: 359.920135 - rotY: 269.999634 - rotZ: 0.016874332 + posX: 15.15 + posY: 1.496 + posZ: 15.92 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -4780,9 +4780,9 @@ ContainedObjects: Autoraise: true CardID: 538303 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5383': BackIsHidden: true @@ -4813,12 +4813,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 12.2740078 - posY: 1.47562349 - posZ: -8.080001 - rotX: 0.0168717019 - rotY: 180.000061 - rotZ: 0.07987632 + posX: 12.274 + posY: 1.476 + posZ: -8.08 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -4831,9 +4831,9 @@ ContainedObjects: Autoraise: true CardID: 537613 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -4864,12 +4864,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 12.2496786 - posY: 1.47685492 - posZ: -4.01367331 - rotX: 359.920135 - rotY: 269.999939 - rotZ: 0.01687301 + posX: 12.25 + posY: 1.477 + posZ: -4.014 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -4881,9 +4881,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -5017,12 +5017,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -26.9488583 - posY: 1.61791956 - posZ: -3.79106379 - rotX: 359.983154 - rotY: 359.992737 - rotZ: 359.9201 + posX: -26.949 + posY: 1.618 + posZ: -3.791 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.8 scaleY: 1.0 scaleZ: 0.8 @@ -5035,9 +5035,9 @@ ContainedObjects: Autoraise: true CardID: 538417 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5384': BackIsHidden: true @@ -5068,12 +5068,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -23.6765633 - posY: 1.62358475 - posZ: -15.280015 - rotX: 359.9201 - rotY: 269.999481 - rotZ: 0.0168401673 + posX: -23.677 + posY: 1.624 + posZ: -15.28 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -5085,9 +5085,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 ContainedObjects: - AltLookAngle: x: 0.0 @@ -5096,9 +5096,9 @@ ContainedObjects: Autoraise: true CardID: 538309 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5383': BackIsHidden: true @@ -5129,12 +5129,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 2.073631 - posY: 1.59076977 - posZ: -4.737377 - rotX: 0.0188458189 - rotY: 178.5612 - rotZ: 0.079806976 + posX: 2.074 + posY: 1.591 + posZ: -4.737 + rotX: 0.0 + rotY: 179.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -5147,9 +5147,9 @@ ContainedObjects: Autoraise: true CardID: 538308 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5383': BackIsHidden: true @@ -5180,12 +5180,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 2.05724144 - posY: 1.62218869 - posZ: -4.86171532 - rotX: 0.0168645252 - rotY: 180.000046 - rotZ: 0.08031195 + posX: 2.057 + posY: 1.622 + posZ: -4.862 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -5224,12 +5224,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -2.6884768 - posY: 1.6143024 - posZ: -5.048546 - rotX: 0.0168095548 - rotY: 180.018661 - rotZ: 0.0802611038 + posX: -2.688 + posY: 1.614 + posZ: -5.049 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -5241,9 +5241,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -5377,12 +5377,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -20.2402077 - posY: 1.60508037 - posZ: -15.6466408 - rotX: 0.07989408 - rotY: 90.00033 - rotZ: 359.983124 + posX: -20.24 + posY: 1.605 + posZ: -15.647 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -5394,9 +5394,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -5530,12 +5530,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -30.2241268 - posY: 1.62473512 - posZ: 3.8599782 - rotX: 0.0168242566 - rotY: 180.010757 - rotZ: 0.07993877 + posX: -30.224 + posY: 1.625 + posZ: 3.86 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -5547,9 +5547,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.02148666 - g: 0.00100758043 - r: 0.02148666 + b: 0.02149 + g: 0.00101 + r: 0.02149 ContainedObjects: - AltLookAngle: x: 0.0 @@ -5558,9 +5558,9 @@ ContainedObjects: Autoraise: true CardID: 538516 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5385': BackIsHidden: true @@ -5591,12 +5591,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 1.696503 - posY: 3.66318917 - posZ: 14.2788181 - rotX: 359.94812 - rotY: 224.998062 - rotZ: 0.05831184 + posX: 1.697 + posY: 3.663 + posZ: 14.279 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -5644,12 +5644,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 1.69638073 - posY: 1.55831766 - posZ: 14.2788639 - rotX: 359.955139 - rotY: 224.9979 - rotZ: 0.06867272 + posX: 1.696 + posY: 1.558 + posZ: 14.279 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 @@ -5662,9 +5662,9 @@ ContainedObjects: Autoraise: true CardID: 538302 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5383': BackIsHidden: true @@ -5695,12 +5695,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 12.2744122 - posY: 1.47797883 - posZ: -0.079997994 - rotX: 0.0168713983 - rotY: 180.000076 - rotZ: 0.0798776448 + posX: 12.274 + posY: 1.478 + posZ: -0.08 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -5712,9 +5712,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -5848,12 +5848,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -20.45632 - posY: 1.607703 - posZ: -7.74870729 - rotX: 0.07989435 - rotY: 89.99987 - rotZ: 359.983124 + posX: -20.456 + posY: 1.608 + posZ: -7.749 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -5865,9 +5865,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -6001,12 +6001,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -27.0462246 - posY: 1.61578059 - posZ: -11.5305471 - rotX: 0.06840821 - rotY: 134.999573 - rotZ: 0.0445841923 + posX: -27.046 + posY: 1.616 + posZ: -11.531 + rotX: 0.0 + rotY: 135.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -6018,9 +6018,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -6154,12 +6154,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -26.662262 - posY: 1.61645436 - posZ: -7.41628265 - rotX: 0.07989453 - rotY: 90.0001755 - rotZ: 359.983124 + posX: -26.662 + posY: 1.616 + posZ: -7.416 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -6171,9 +6171,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -6307,12 +6307,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -30.224123 - posY: 1.62247491 - posZ: -3.83002019 - rotX: 0.01682432 - rotY: 180.01062 - rotZ: 0.07994255 + posX: -30.224 + posY: 1.622 + posZ: -3.83 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -6325,9 +6325,9 @@ ContainedObjects: Autoraise: true CardID: 538414 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5384': BackIsHidden: true @@ -6358,12 +6358,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -17.1199989 - posY: 1.61666977 - posZ: -7.7000227 - rotX: 359.9201 - rotY: 269.999878 - rotZ: 0.0168400165 + posX: -17.12 + posY: 1.617 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -6375,9 +6375,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -6511,12 +6511,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -33.4688339 - posY: 1.63035393 - posZ: 7.58308744 - rotX: 0.0798942149 - rotY: 90.00006 - rotZ: 359.983124 + posX: -33.469 + posY: 1.63 + posZ: 7.583 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -6528,9 +6528,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -6664,12 +6664,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -26.8105774 - posY: 1.62001419 - posZ: 3.992765 - rotX: 0.06840844 - rotY: 134.999435 - rotZ: 0.0445842259 + posX: -26.811 + posY: 1.62 + posZ: 3.993 + rotX: 0.0 + rotY: 135.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -6681,9 +6681,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -6817,12 +6817,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -33.4151955 - posY: 1.62686563 - posZ: -4.031247 - rotX: 0.0684084445 - rotY: 134.999329 - rotZ: 0.0445843078 + posX: -33.415 + posY: 1.627 + posZ: -4.031 + rotX: 0.0 + rotY: 135.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -6835,9 +6835,9 @@ ContainedObjects: Autoraise: true CardID: 538405 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5384': BackIsHidden: true @@ -6868,12 +6868,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -3.95589519 - posY: 1.59753931 - posZ: -10.4411888 - rotX: 359.919739 - rotY: 269.999817 - rotZ: 0.01683743 + posX: -3.956 + posY: 1.598 + posZ: -10.441 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -6886,9 +6886,9 @@ ContainedObjects: Autoraise: true CardID: 538410 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5384': BackIsHidden: true @@ -6919,12 +6919,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -23.6765118 - posY: 1.62581241 - posZ: -7.70001936 - rotX: 359.9201 - rotY: 269.999725 - rotZ: 0.0168399736 + posX: -23.677 + posY: 1.626 + posZ: -7.7 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -6937,9 +6937,9 @@ ContainedObjects: Autoraise: true CardID: 538412 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5384': BackIsHidden: true @@ -6970,12 +6970,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -30.2241631 - posY: 1.63719678 - posZ: -0.0300179757 - rotX: 359.9201 - rotY: 269.999878 - rotZ: 0.0168398228 + posX: -30.224 + posY: 1.637 + posZ: -0.03 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -6988,9 +6988,9 @@ ContainedObjects: Autoraise: true CardID: 266300 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '2663': BackIsHidden: true @@ -7021,12 +7021,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 9.849999 - posY: 1.48607 - posZ: 15.9200058 - rotX: 359.920135 - rotY: 269.999329 - rotZ: 0.0168744549 + posX: 9.85 + posY: 1.486 + posZ: 15.92 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 @@ -7038,9 +7038,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -7174,12 +7174,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -33.445015 - posY: 1.62811565 - posZ: 0.08068648 - rotX: 0.07989446 - rotY: 90.00026 - rotZ: 359.983124 + posX: -33.445 + posY: 1.628 + posZ: 0.081 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -7191,9 +7191,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 ContainedObjects: - AltLookAngle: x: 0.0 @@ -7202,9 +7202,9 @@ ContainedObjects: Autoraise: true CardID: 537607 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -7235,12 +7235,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.8583241 - posY: 1.47067189 - posZ: -7.926416 - rotX: 359.920135 - rotY: 270.000122 - rotZ: 0.0168734919 + posX: 15.858 + posY: 1.471 + posZ: -7.926 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -7253,9 +7253,9 @@ ContainedObjects: Autoraise: true CardID: 537606 ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 + b: 0.71324 + g: 0.71324 + r: 0.71324 CustomDeck: '5376': BackIsHidden: true @@ -7286,12 +7286,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.7711954 - posY: 1.50236475 - posZ: -7.66155148 - rotX: 359.920135 - rotY: 269.9999 - rotZ: 0.0168895219 + posX: 15.771 + posY: 1.502 + posZ: -7.662 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -7330,12 +7330,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 15.1500025 - posY: 1.488568 - posZ: -8.080005 - rotX: 359.920135 - rotY: 270.0001 - rotZ: 0.0168730728 + posX: 15.15 + posY: 1.489 + posZ: -8.08 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -7347,9 +7347,9 @@ ContainedObjects: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 + b: 0.60453 + g: 0.60453 + r: 0.60453 CustomImage: CustomTile: Stackable: false @@ -7483,12 +7483,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -17.1198788 - posY: 1.60194492 - posZ: -11.5100374 - rotX: 0.0168238431 - rotY: 180.010986 - rotZ: 0.0799435452 + posX: -17.12 + posY: 1.602 + posZ: -11.51 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -7524,13 +7524,13 @@ ContainedObjects: IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false - LuaScript: "name = 'Meowlathotep'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons',\ - \ {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer',\ - \ {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\ - \n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\ - \nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self,\ - \ key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer',\ - \ {object=self, key=name, mode='expert'})\r\nend\r\n" + LuaScript: "name = 'Meowlathotep'\n\nfunction onLoad()\n Global.call('createSetupButtons',\ + \ {object=self, key=name})\nend\n\nfunction easyClick()\n Global.call('fillContainer',\ + \ {object=self, key=name, mode='easy'})\nend\n\nfunction normalClick()\n \ + \ Global.call('fillContainer', {object=self, key=name, mode='normal'})\nend\n\ + \nfunction hardClick()\n Global.call('fillContainer', {object=self, key=name,\ + \ mode='hard'})\nend\n\nfunction expertClick()\n Global.call('fillContainer',\ + \ {object=self, key=name, mode='expert'})\nend" LuaScriptState: '' MeasureMovement: false Name: Custom_Tile @@ -7539,12 +7539,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -3.6762 - posY: 1.58233988 - posZ: -14.5353994 - rotX: 359.919739 - rotY: 269.999817 - rotZ: 0.0168380681 + posX: -3.676 + posY: 1.582 + posZ: -14.535 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.2 scaleY: 1.0 scaleZ: 2.2 @@ -7578,222 +7578,207 @@ ContainedObjects: IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false - LuaScript: "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of\ - \ Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save\ - \ = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n \ - \ self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\ - \n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList)\ - \ do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\ - \n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\ - \n for guid, entry in pairs(j.ml) do\r\n memoryList[guid]\ - \ = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\ - \nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n \ - \ --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\ - \n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos\ - \ = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(),\ - \ refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid,\ - \ entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x\ - \ - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n\ - \ memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x\ - \ = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n\ - \ -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()]\ - \ = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\ - \n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n \ - \ -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction\ - \ onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n\ - \ local loaded_data = JSON.decode(saved_data)\r\n --Set up information\ - \ off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n \ - \ --Set up information for if there is no saved saved data\r\n memoryList\ - \ = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if\ - \ next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n\ - \ fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\ - \n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\ - \n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\"\ - , function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220,\ - \ width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n \ - \ })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\ - \n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all\ - \ objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup\ - \ = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n\ - \ self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\ - \nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n\ - \ memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n\ - \ self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\ - \nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local\ - \ curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj =\ - \ getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\ - \n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection\ - \ buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local\ - \ howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move ==\ - \ true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\ - \n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in\ - \ ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local\ - \ dummyIndex = howManyButtons\r\n --On a normal bag, the button positions\ - \ aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\ - \n --Super sweet math to set button positions\r\n local\ - \ selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\ - \n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n \ - \ local objPos = rotateLocalCoordinates(deltaPos, self)\r\n \ - \ objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y\ - \ * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor\ - \ * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\ - \n rot.y = -rot.y + 180\r\n --Create function\r\n \ - \ local funcName = \"selectButton_\" .. howManyButtons\r\n local\ - \ func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n \ - \ local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\ - \n if move == true then\r\n color = colorMove\r\n \ - \ end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\ - \n click_function=funcName, function_owner=self,\r\n \ - \ position=objPos, rotation=rot, height=500, width=500,\r\n \ - \ color=color,\r\n })\r\n howManyButtons = howManyButtons\ - \ + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\ - \nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n \ - \ label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\ - \n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n\ - \ font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n \ - \ self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\"\ - , function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0},\ - \ height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\ - \n })\r\n\r\n if move == false then\r\n self.createButton({\r\n \ - \ label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\ - \n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\ - \n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\ - \n\r\n if fresh == false then\r\n self.createButton({\r\n \ - \ label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\ - \n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\ - \n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n \ - \ })\r\n self.createButton({\r\n label=\"\ - Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n \ - \ position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\ - \n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n \ - \ })\r\n end\r\n end\r\n\r\n self.createButton({\r\n \ - \ label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\ - \n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\ - \n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\ - \r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index,\ - \ obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\ - \n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\ - \n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\ - \n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n \ - \ local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\ - \n self.editButton({index=previousIndex, color=colorMove})\r\n \ - \ theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\ - \n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index,\ - \ color=color})\r\n --Adding pos/rot to memory table\r\n local pos,\ - \ rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like\ - \ this or it won't save due to indexing issue\r\n theList[obj.getGUID()]\ - \ = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\ - \n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n\ - \ lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\ - \n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\ - \n color = colorMove\r\n end\r\n self.editButton({index=index,\ - \ color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\ - \n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\ - \n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\ - \n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\ - \n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\ - \n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\n\ - end\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh =\ - \ false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList)\ - \ do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid]\ - \ == nil then\r\n broadcastToAll(\"Item selected for moving is not\ - \ already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"\ - Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\ - \n self.clearButtons()\r\n createMemoryActionButtons()\r\ - \n local count = 0\r\n for guid in pairs(moveList) do\r\n\ - \ moveGuid = guid\r\n count = count + 1\r\n \ - \ local obj = getObjectFromGUID(guid)\r\n if obj ~=\ - \ nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\ - \n updateSave()\r\n buttonClick_place()\r\n end\r\ - \n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList\ - \ = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25,\ - \ 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\ - \n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList)\ - \ do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\ - \n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\"\ - \ Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\ - \n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table)\ - \ do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh\ - \ = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"\ - Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\ - \n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\ - \n local count = 0\r\n for guid in pairs(memoryList) do\r\n count\ - \ = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj\ - \ ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\"\ - \ Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\ - \n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25,\ - \ 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\ - \n local count = 0\r\n for guid in pairs(memoryList) do\r\n \ - \ count = count + 1\r\n memoryListBackup[guid] = nil\r\n \ - \ local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then\ - \ obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects\ - \ Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\ - \nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new\ - \ position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\ - \n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in\ - \ ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid]\ - \ ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos\ - \ = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\ - \n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n \ - \ end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList\ - \ = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting\ - \ status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList\ - \ = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\ - \n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\ - \n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction\ - \ createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\"\ - , click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1},\ - \ rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0},\ - \ font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"\ - Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n \ - \ position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n \ - \ font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\ - \n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\ - \n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n\ - \ font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- \ - \ self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\"\ - , function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350,\ - \ width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\ - \n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\ - \nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n\ - \ for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\ - \n --If obj is out on the table, move it to the saved pos/rot\r\n \ - \ if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n \ - \ obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\ - \n else\r\n --If obj is inside of the bag\r\n for\ - \ _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid\ - \ then\r\n local item = self.takeObject({\r\n \ - \ guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n\ - \ })\r\n item.setLock(entry.lock)\r\n \ - \ break\r\n end\r\n end\r\n \ - \ end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\ - \r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n \ - \ for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\ - \n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"\ - Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n\ - --Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1,\ - \ p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local\ - \ bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\ - \n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y\ - \ = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\ - \nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos,\ - \ obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n \ - \ local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle)\ - \ - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle)\ - \ + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y,\ - \ z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction\ - \ rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\ - \n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\ - \n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\ - \nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0)\ - \ until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to\ - \ prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\ - \n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k]\ - \ = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight\ - \ from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects())\ - \ do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num)\ - \ to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec\ - \ or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n" + LuaScript: "-- Utility memory bag by Directsun\n-- Version 2.5.2\n-- Fork of Memory\ + \ Bag 2.0 by MrStump\n\nfunction updateSave()\n local data_to_save = {[\"ml\"\ + ]=memoryList}\n saved_data = JSON.encode(data_to_save)\n self.script_state\ + \ = saved_data\nend\n\nfunction combineMemoryFromBagsWithin()\n local bagObjList\ + \ = self.getObjects()\n for _, bagObj in ipairs(bagObjList) do\n local data\ + \ = bagObj.lua_script_state\n if data ~= nil then\n local j = JSON.decode(data)\n\ + \ if j ~= nil and j.ml ~= nil then\n for guid, entry in pairs(j.ml)\ + \ do\n memoryList[guid] = entry\n end\n end\n \ + \ end\n end\nend\n\nfunction updateMemoryWithMoves()\n memoryList = memoryListBackup\n\ + \ --get the first transposed object's coordinates\n local obj = getObjectFromGUID(moveGuid)\n\ + \n -- p1 is where needs to go, p2 is where it was\n local refObjPos = memoryList[moveGuid].pos\n\ + \ local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\n\ + \ local movedRotation = obj.getRotation()\n for guid, entry in pairs(memoryList)\ + \ do\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\n memoryList[guid].pos.y\ + \ = entry.pos.y - deltaPos.y\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\n\ + \ -- memoryList[guid].rot.x = movedRotation.x\n -- memoryList[guid].rot.y\ + \ = movedRotation.y\n -- memoryList[guid].rot.z = movedRotation.z\n \ + \ end\n\n --theList[obj.getGUID()] = {\n -- pos={x=round(pos.x,4), y=round(pos.y,4),\ + \ z=round(pos.z,4)},\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\n\ + \ -- lock=obj.getLock()\n --}\n moveList = {}\nend\n\nfunction onload(saved_data)\n\ + \ fresh = true\n if saved_data ~= \"\" then\n local loaded_data =\ + \ JSON.decode(saved_data)\n --Set up information off of loaded_data\n \ + \ memoryList = loaded_data.ml\n else\n --Set up information for\ + \ if there is no saved saved data\n memoryList = {}\n end\n\n moveList\ + \ = {}\n moveGuid = nil\n\n if next(memoryList) == nil then\n createSetupButton()\n\ + \ else\n fresh = false\n createMemoryActionButtons()\n end\n\ + end\n\n\n--Beginning Setup\n\n\n--Make setup button\nfunction createSetupButton()\n\ + \ self.createButton({\n label=\"Setup\", click_function=\"buttonClick_setup\"\ + , function_owner=self,\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220,\ + \ width=500,\n font_size=130, color={0,0,0}, font_color={1,1,1}\n })\n\ + end\n\n--Triggered by Transpose button\nfunction buttonClick_transpose()\n \ + \ moveGuid = nil\n broadcastToAll(\"Select one object and move it- all objects\ + \ will move relative to the new location\", {0.75, 0.75, 1})\n memoryListBackup\ + \ = duplicateTable(memoryList)\n memoryList = {}\n moveList = {}\n self.clearButtons()\n\ + \ createButtonsOnAllObjects(true)\n createSetupActionButtons(true)\nend\n\ + \n--Triggered by setup button,\nfunction buttonClick_setup()\n memoryListBackup\ + \ = duplicateTable(memoryList)\n memoryList = {}\n self.clearButtons()\n\ + \ createButtonsOnAllObjects(false)\n createSetupActionButtons(false)\nend\n\ + \nfunction getAllObjectsInMemory()\n local objTable = {}\n local curObj = {}\n\ + \n for guid in pairs(memoryListBackup) do\n curObj = getObjectFromGUID(guid)\n\ + \ table.insert(objTable, curObj)\n end\n\n return objTable\n -- return getAllObjects()\n\ + end\n\n--Creates selection buttons on objects\nfunction createButtonsOnAllObjects(move)\n\ + \ local howManyButtons = 0\n\n local objsToHaveButtons = {}\n if move\ + \ == true then\n objsToHaveButtons = getAllObjectsInMemory()\n else\n\ + \ objsToHaveButtons = getAllObjects()\n end\n\n for _, obj in ipairs(objsToHaveButtons)\ + \ do\n if obj ~= self then\n local dummyIndex = howManyButtons\n\ + \ --On a normal bag, the button positions aren't the same size as the\ + \ bag.\n globalScaleFactor = 1 * 1/self.getScale().x\n --Super\ + \ sweet math to set button positions\n local selfPos = self.getPosition()\n\ + \ local objPos = obj.getPosition()\n local deltaPos = findOffsetDistance(selfPos,\ + \ objPos, obj)\n local objPos = rotateLocalCoordinates(deltaPos, self)\n\ + \ objPos.x = -objPos.x * globalScaleFactor\n objPos.y =\ + \ objPos.y * globalScaleFactor + 2\n objPos.z = objPos.z * globalScaleFactor\ + \ * 0.9\n --Offset rotation of bag\n local rot = self.getRotation()\n\ + \ rot.y = -rot.y + 180\n --Create function\n \ + \ local funcName = \"selectButton_\" .. howManyButtons\n local func\ + \ = function() buttonClick_selection(dummyIndex, obj, move) end\n local\ + \ color = {0.75,0.25,0.25,0.6}\n local colorMove = {0,0,1,0.6}\n \ + \ if move == true then\n color = colorMove\n \ + \ end\n self.setVar(funcName, func)\n self.createButton({\n\ + \ click_function=funcName, function_owner=self,\n \ + \ position=objPos, rotation=rot, height=500, width=500,\n color=color,\n\ + \ })\n howManyButtons = howManyButtons + 1\n end\n\ + \ end\nend\n\n--Creates submit and cancel buttons\nfunction createSetupActionButtons(move)\n\ + \ self.createButton({\n label=\"Cancel\", click_function=\"buttonClick_cancel\"\ + , function_owner=self,\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220,\ + \ width=550,\n font_size=130, color={0,0,0}, font_color={1,1,1}\n })\n\ + \n self.createButton({\n label=\"Submit\", click_function=\"buttonClick_submit\"\ + , function_owner=self,\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220,\ + \ width=550,\n font_size=130, color={0,0,0}, font_color={1,1,1}\n })\n\ + \n if move == false then\n self.createButton({\n label=\"Add\"\ + , click_function=\"buttonClick_add\", function_owner=self,\n position={0.6,0.3,-2.1},\ + \ rotation={0,0,0}, height=220, width=550,\n font_size=130, color={0,0,0},\ + \ font_color={0.25,1,0.25}\n })\n\n if fresh == false then\n \ + \ self.createButton({\n label=\"Set New\", click_function=\"\ + buttonClick_setNew\", function_owner=self,\n position={0.6,0.3,-2.9},\ + \ rotation={0,0,0}, height=220, width=550,\n font_size=130, color={0,0,0},\ + \ font_color={0.75,0.75,1}\n })\n self.createButton({\n\ + \ label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\n\ + \ position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\n\ + \ font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\n \ + \ })\n end\n end\n\n self.createButton({\n label=\"\ + Reset\", click_function=\"buttonClick_reset\", function_owner=self,\n position={-0.6,0.3,-2.9},\ + \ rotation={0,0,0}, height=220, width=550,\n font_size=130, color={0,0,0},\ + \ font_color={1,1,1}\n })\nend\n\n\n--During Setup\n\n\n--Checks or unchecks\ + \ buttons\nfunction buttonClick_selection(index, obj, move)\n local colorMove\ + \ = {0,0,1,0.6}\n local color = {0,1,0,0.6}\n\n previousGuid = selectedGuid\n\ + \ selectedGuid = obj.getGUID()\n\n theList = memoryList\n if move ==\ + \ true then\n theList = moveList\n if previousGuid ~= nil and previousGuid\ + \ ~= selectedGuid then\n local prevObj = getObjectFromGUID(previousGuid)\n\ + \ prevObj.highlightOff()\n self.editButton({index=previousIndex,\ + \ color=colorMove})\n theList[previousGuid] = nil\n end\n \ + \ previousIndex = index\n end\n\n if theList[selectedGuid] == nil then\n\ + \ self.editButton({index=index, color=color})\n --Adding pos/rot\ + \ to memory table\n local pos, rot = obj.getPosition(), obj.getRotation()\n\ + \ --I need to add it like this or it won't save due to indexing issue\n\ + \ theList[obj.getGUID()] = {\n pos={x=round(pos.x,4), y=round(pos.y,4),\ + \ z=round(pos.z,4)},\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\n\ + \ lock=obj.getLock()\n }\n obj.highlightOn({0,1,0})\n\ + \ else\n color = {0.75,0.25,0.25,0.6}\n if move == true then\n \ + \ color = colorMove\n end\n self.editButton({index=index, color=color})\n\ + \ theList[obj.getGUID()] = nil\n obj.highlightOff()\n end\nend\n\ + \n--Cancels selection process\nfunction buttonClick_cancel()\n memoryList =\ + \ memoryListBackup\n moveList = {}\n self.clearButtons()\n if next(memoryList)\ + \ == nil then\n createSetupButton()\n else\n createMemoryActionButtons()\n\ + \ end\n removeAllHighlights()\n broadcastToAll(\"Selection Canceled\"\ + , {1,1,1})\n moveGuid = nil\nend\n\n--Saves selections\nfunction buttonClick_submit()\n\ + \ fresh = false\n if next(moveList) ~= nil then\n for guid in pairs(moveList)\ + \ do\n moveGuid = guid\n end\n if memoryListBackup[moveGuid]\ + \ == nil then\n broadcastToAll(\"Item selected for moving is not already\ + \ in memory\", {1, 0.25, 0.25})\n else\n broadcastToAll(\"Moving\ + \ all items in memory relative to new objects position!\", {0.75, 0.75, 1})\n\ + \ self.clearButtons()\n createMemoryActionButtons()\n \ + \ local count = 0\n for guid in pairs(moveList) do\n \ + \ moveGuid = guid\n count = count + 1\n \ + \ local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff()\ + \ end\n end\n updateMemoryWithMoves()\n updateSave()\n\ + \ buttonClick_place()\n end\n elseif next(memoryList) ==\ + \ nil and moveGuid == nil then\n memoryList = memoryListBackup\n broadcastToAll(\"\ + No selections made.\", {0.75, 0.25, 0.25})\n end\n combineMemoryFromBagsWithin()\n\ + \ self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n\ + \ for guid in pairs(memoryList) do\n count = count + 1\n local\ + \ obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff()\ + \ end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n updateSave()\n\ + \ moveGuid = nil\nend\n\nfunction combineTables(first_table, second_table)\n\ + \ for k,v in pairs(second_table) do first_table[k] = v end\nend\n\nfunction buttonClick_add()\n\ + \ fresh = false\n combineTables(memoryList, memoryListBackup)\n broadcastToAll(\"\ + Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\n\ + \ combineMemoryFromBagsWithin()\n self.clearButtons()\n createMemoryActionButtons()\n\ + \ local count = 0\n for guid in pairs(memoryList) do\n count = count\ + \ + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then\ + \ obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Saved\"\ + , {1,1,1})\n updateSave()\nend\n\nfunction buttonClick_remove()\n broadcastToAll(\"\ + Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\n self.clearButtons()\n\ + \ createMemoryActionButtons()\n local count = 0\n for guid\ + \ in pairs(memoryList) do\n count = count + 1\n memoryListBackup[guid]\ + \ = nil\n local obj = getObjectFromGUID(guid)\n if obj ~=\ + \ nil then obj.highlightOff() end\n end\n broadcastToAll(count..\"\ + \ Objects Removed\", {1,1,1})\n memoryList = memoryListBackup\n \ + \ updateSave()\nend\n\nfunction buttonClick_setNew()\n broadcastToAll(\"Setting\ + \ new position relative to items in memory\", {0.75, 0.75, 1})\n self.clearButtons()\n\ + \ createMemoryActionButtons()\n local count = 0\n for _, obj in ipairs(getAllObjects())\ + \ do\n guid = obj.guid\n if memoryListBackup[guid] ~= nil then\n\ + \ count = count + 1\n memoryListBackup[guid].pos = obj.getPosition()\n\ + \ memoryListBackup[guid].rot = obj.getRotation()\n memoryListBackup[guid].lock\ + \ = obj.getLock()\n end\n end\n broadcastToAll(count..\" Objects\ + \ Saved\", {1,1,1})\n memoryList = memoryListBackup\n updateSave()\nend\n\ + \n--Resets bag to starting status\nfunction buttonClick_reset()\n fresh = true\n\ + \ memoryList = {}\n self.clearButtons()\n createSetupButton()\n removeAllHighlights()\n\ + \ broadcastToAll(\"Tool Reset\", {1,1,1})\n updateSave()\nend\n\n\n--After\ + \ Setup\n\n\n--Creates recall and place buttons\nfunction createMemoryActionButtons()\n\ + \ self.createButton({\n label=\"Place\", click_function=\"buttonClick_place\"\ + , function_owner=self,\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220,\ + \ width=500,\n font_size=130, color={0,0,0}, font_color={1,1,1}\n })\n\ + \ self.createButton({\n label=\"Recall\", click_function=\"buttonClick_recall\"\ + , function_owner=self,\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220,\ + \ width=500,\n font_size=130, color={0,0,0}, font_color={1,1,1}\n })\n\ + \ self.createButton({\n label=\"Setup\", click_function=\"buttonClick_setup\"\ + , function_owner=self,\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220,\ + \ width=500,\n font_size=130, color={0,0,0}, font_color={1,1,1}\n })\n\ + --- self.createButton({\n--- label=\"Move\", click_function=\"buttonClick_transpose\"\ + , function_owner=self,\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350,\ + \ width=800,\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\n\ + --- })\nend\n\n--Sends objects from bag/table to their saved position/rotation\n\ + function buttonClick_place()\n local bagObjList = self.getObjects()\n for\ + \ guid, entry in pairs(memoryList) do\n local obj = getObjectFromGUID(guid)\n\ + \ --If obj is out on the table, move it to the saved pos/rot\n if\ + \ obj ~= nil then\n obj.setPositionSmooth(entry.pos)\n obj.setRotationSmooth(entry.rot)\n\ + \ obj.setLock(entry.lock)\n else\n --If obj is inside\ + \ of the bag\n for _, bagObj in ipairs(bagObjList) do\n \ + \ if bagObj.guid == guid then\n local item = self.takeObject({\n\ + \ guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\n\ + \ })\n item.setLock(entry.lock)\n \ + \ break\n end\n end\n end\n end\n\ + \ broadcastToAll(\"Objects Placed\", {1,1,1})\nend\n\n--Recalls objects to\ + \ bag from table\nfunction buttonClick_recall()\n for guid, entry in pairs(memoryList)\ + \ do\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then\ + \ self.putObject(obj) end\n end\n broadcastToAll(\"Objects Recalled\", {1,1,1})\n\ + end\n\n\n--Utility functions\n\n\n--Find delta (difference) between 2 x/y/z coordinates\n\ + function findOffsetDistance(p1, p2, obj)\n local yOffset = 0\n if obj ~=\ + \ nil then\n local bounds = obj.getBounds()\n yOffset = (bounds.size.y\ + \ - bounds.offset.y)\n end\n local deltaPos = {}\n deltaPos.x = (p2.x-p1.x)\n\ + \ deltaPos.y = (p2.y-p1.y) + yOffset\n deltaPos.z = (p2.z-p1.z)\n return\ + \ deltaPos\nend\n\n--Used to rotate a set of coordinates by an angle\nfunction\ + \ rotateLocalCoordinates(desiredPos, obj)\n\tlocal objPos, objRot = obj.getPosition(),\ + \ obj.getRotation()\n local angle = math.rad(objRot.y)\n\tlocal x = desiredPos.x\ + \ * math.cos(angle) - desiredPos.z * math.sin(angle)\n\tlocal z = desiredPos.x\ + \ * math.sin(angle) + desiredPos.z * math.cos(angle)\n\t--return {x=objPos.x+x,\ + \ y=objPos.y+desiredPos.y, z=objPos.z+z}\n return {x=x, y=desiredPos.y, z=z}\n\ + end\n\nfunction rotateMyCoordinates(desiredPos, obj)\n\tlocal angle = math.rad(obj.getRotation().y)\n\ + \ local x = desiredPos.x * math.sin(angle)\n\tlocal z = desiredPos.z * math.cos(angle)\n\ + \ return {x=x, y=desiredPos.y, z=z}\nend\n\n--Coroutine delay, in seconds\n\ + function wait(time)\n local start = os.time()\n repeat coroutine.yield(0)\ + \ until os.time() > start + time\nend\n\n--Duplicates a table (needed to prevent\ + \ it making reference to the same objects)\nfunction duplicateTable(oldTable)\n\ + \ local newTable = {}\n for k, v in pairs(oldTable) do\n newTable[k]\ + \ = v\n end\n return newTable\nend\n\n--Moves scripted highlight from all\ + \ objects\nfunction removeAllHighlights()\n for _, obj in ipairs(getAllObjects())\ + \ do\n obj.highlightOff()\n end\nend\n\n--Round number (num) to the\ + \ Nth decimal (dec)\nfunction round(num, dec)\n local mult = 10^(dec or 0)\n\ + \ return math.floor(num * mult + 0.5) / mult\nend" LuaScriptState: '{"ml":{"041012":{"lock":false,"pos":{"x":12.2521696090698,"y":1.4815628528595,"z":11.9863443374634},"rot":{"x":359.920135498047,"y":269.999877929688,"z":0.016872700303793}},"0646bf":{"lock":false,"pos":{"x":-3.92764782905579,"y":1.74437856674194,"z":5.75713777542114},"rot":{"x":359.919738769531,"y":270.000030517578,"z":180.016815185547}},"070a78":{"lock":false,"pos":{"x":15.1499996185303,"y":1.49000000953674,"z":-0.0799999982118607},"rot":{"x":359.920013427734,"y":270.000183105469,"z":0.0168723799288273}},"0bd409":{"lock":false,"pos":{"x":15.1499996185303,"y":1.48540902137756,"z":-16.0799999237061},"rot":{"x":359.920135498047,"y":270.000305175781,"z":0.0168718285858631}},"0c97f0":{"lock":false,"pos":{"x":12.2700033187866,"y":1.48269641399384,"z":15.9200010299683},"rot":{"x":0.0168714057654142,"y":179.999954223633,"z":0.0798774659633636}},"1943ff":{"lock":false,"pos":{"x":9.85000038146973,"y":1.4813586473465,"z":-0.0800003558397293},"rot":{"x":359.920135498047,"y":269.999877929688,"z":0.0168734267354012}},"208ebc":{"lock":false,"pos":{"x":-2.72466015815735,"y":1.6159462928772,"z":0.373313426971436},"rot":{"x":0.0168960373848677,"y":179.956954956055,"z":0.0802430883049965}},"31ee5d":{"lock":false,"pos":{"x":15.1499996185303,"y":1.49000000953674,"z":7.92000007629395},"rot":{"x":359.920013427734,"y":270.000061035156,"z":0.0168756786733866}},"3549e7":{"lock":false,"pos":{"x":9.85000038146973,"y":1.48371434211731,"z":7.91999912261963},"rot":{"x":359.920135498047,"y":269.999633789063,"z":0.0168764851987362}},"357610":{"lock":false,"pos":{"x":12.2501697540283,"y":1.48392140865326,"z":19.986349105835},"rot":{"x":359.920135498047,"y":269.999816894531,"z":0.0168732907623053}},"36b4eb":{"lock":false,"pos":{"x":0.270093679428101,"y":1.48960697650909,"z":28.7769813537598},"rot":{"x":359.920135498047,"y":269.999938964844,"z":0.0168721694499254}},"41fdc3":{"lock":false,"pos":{"x":-23.6764469146729,"y":1.62806642055511,"z":-0.0300174467265606},"rot":{"x":359.920104980469,"y":269.999694824219,"z":0.0168400760740042}},"44bc00":{"lock":false,"pos":{"x":12.2500715255737,"y":1.47921013832092,"z":3.98633503913879},"rot":{"x":359.920135498047,"y":269.999969482422,"z":0.016873637214303}},"458f2b":{"lock":false,"pos":{"x":-17.1200523376465,"y":1.61444211006165,"z":-15.2800216674805},"rot":{"x":359.920104980469,"y":269.999877929688,"z":0.0168397892266512}},"499088":{"lock":false,"pos":{"x":-23.6764068603516,"y":1.61334455013275,"z":-3.83002400398254},"rot":{"x":0.0168244950473309,"y":180.010559082031,"z":0.0799428075551987}},"54092b":{"lock":false,"pos":{"x":-13.9964084625244,"y":1.65554821491241,"z":-0.180126652121544},"rot":{"x":359.920104980469,"y":270.000061035156,"z":180.016830444336}},"56fc9d":{"lock":false,"pos":{"x":-30.2241821289063,"y":1.63943040370941,"z":7.56998538970947},"rot":{"x":359.920104980469,"y":269.999725341797,"z":0.0168400164693594}},"5b38c6":{"lock":false,"pos":{"x":-20.2732715606689,"y":1.60632228851318,"z":-11.5783996582031},"rot":{"x":359.983154296875,"y":0.000181010706000961,"z":359.920104980469}},"61c4c5":{"lock":false,"pos":{"x":12.2505617141724,"y":1.47214221954346,"z":-20.013671875},"rot":{"x":359.920135498047,"y":269.999633789063,"z":0.0168726444244385}},"641694":{"lock":false,"pos":{"x":-20.0815486907959,"y":1.60840344429016,"z":-3.58654117584229},"rot":{"x":0.0684084892272949,"y":134.999557495117,"z":0.0445842370390892}},"673295":{"lock":false,"pos":{"x":12.2765111923218,"y":1.48033154010773,"z":7.92000293731689},"rot":{"x":0.016871377825737,"y":179.999938964844,"z":0.0798773169517517}},"6b02f8":{"lock":false,"pos":{"x":-33.4782867431641,"y":1.62927162647247,"z":3.85553073883057},"rot":{"x":359.983154296875,"y":5.7329405535711E-05,"z":359.920104980469}},"6ba06e":{"lock":false,"pos":{"x":-26.7825469970703,"y":1.61883640289307,"z":0.117903299629688},"rot":{"x":0.0798944383859634,"y":90.0002212524414,"z":359.983123779297}},"6be8b0":{"lock":false,"pos":{"x":-23.6764068603516,"y":1.61108767986298,"z":-11.5100345611572},"rot":{"x":0.0168246645480394,"y":180.010467529297,"z":0.0799442157149315}},"6c5b9f":{"lock":false,"pos":{"x":9.85000324249268,"y":1.47664725780487,"z":-16.0800075531006},"rot":{"x":359.920135498047,"y":270.010437011719,"z":0.016860157251358}},"6dec76":{"lock":false,"pos":{"x":-36.7731170654297,"y":1.64632892608643,"z":-0.0300179943442345},"rot":{"x":359.920104980469,"y":269.999755859375,"z":0.0168399456888437}},"6f663b":{"lock":false,"pos":{"x":-30.2242317199707,"y":1.63494277000427,"z":-7.70002508163452},"rot":{"x":359.920104980469,"y":269.999725341797,"z":0.0168399829417467}},"7234af":{"lock":false,"pos":{"x":-36.7731666564941,"y":1.63386726379395,"z":3.86005425453186},"rot":{"x":0.0168241951614618,"y":180.010726928711,"z":0.0799423828721046}},"72c444":{"lock":false,"pos":{"x":12.2745180130005,"y":1.47326719760895,"z":-16.0800037384033},"rot":{"x":0.016871377825737,"y":179.999755859375,"z":0.0798778459429741}},"823edd":{"lock":false,"pos":{"x":9.85000324249268,"y":1.47900295257568,"z":-8.08000183105469},"rot":{"x":359.920135498047,"y":269.999755859375,"z":0.0168739389628172}},"87f6b9":{"lock":false,"pos":{"x":12.2501745223999,"y":1.47449851036072,"z":-12.0136671066284},"rot":{"x":359.920135498047,"y":269.999816894531,"z":0.0168728269636631}},"8b87b3":{"lock":false,"pos":{"x":-36.7731437683105,"y":1.64856255054474,"z":7.56998252868652},"rot":{"x":359.920104980469,"y":269.999725341797,"z":0.0168400462716818}},"937515":{"lock":false,"pos":{"x":15.1499996185303,"y":1.49558484554291,"z":15.9200000762939},"rot":{"x":359.920013427734,"y":269.999816894531,"z":0.0168741084635258}},"94dde3":{"lock":false,"pos":{"x":12.2740049362183,"y":1.4756236076355,"z":-8.07999992370605},"rot":{"x":0.016871327534318,"y":180.000061035156,"z":0.0798767656087875}},"952924":{"lock":false,"pos":{"x":12.2496747970581,"y":1.47685492038727,"z":-4.01367044448853},"rot":{"x":359.920135498047,"y":269.999938964844,"z":0.0168727152049541}},"97c745":{"lock":false,"pos":{"x":-26.9488582611084,"y":1.61791956424713,"z":-3.79106402397156},"rot":{"x":359.983154296875,"y":359.992767333984,"z":359.920104980469}},"98de77":{"lock":false,"pos":{"x":-23.6765613555908,"y":1.62358474731445,"z":-15.2800130844116},"rot":{"x":359.920104980469,"y":269.999633789063,"z":0.0168402101844549}},"9991d4":{"lock":false,"pos":{"x":-2.68847703933716,"y":1.61430239677429,"z":-5.04854536056519},"rot":{"x":0.0168096069246531,"y":180.018661499023,"z":0.0802613347768784}},"a3b604":{"lock":false,"pos":{"x":-20.2402076721191,"y":1.60508036613464,"z":-15.6466379165649},"rot":{"x":0.0798944383859634,"y":90.0002670288086,"z":359.983123779297}},"a3b9ce":{"lock":false,"pos":{"x":-30.2241268157959,"y":1.62473499774933,"z":3.85997748374939},"rot":{"x":0.0168243143707514,"y":180.010665893555,"z":0.0799384042620659}},"a45247":{"lock":false,"pos":{"x":1.69637870788574,"y":1.55831694602966,"z":14.2788572311401},"rot":{"x":359.955139160156,"y":224.997924804688,"z":0.0686724856495857}},"a6049c":{"lock":false,"pos":{"x":12.2744064331055,"y":1.47797882556915,"z":-0.0799992084503174},"rot":{"x":0.0168714188039303,"y":180.000045776367,"z":0.0798778161406517}},"aa4b2c":{"lock":false,"pos":{"x":-20.4563217163086,"y":1.60770308971405,"z":-7.748703956604},"rot":{"x":0.0798945873975754,"y":89.9999389648438,"z":359.983123779297}},"ab992b":{"lock":false,"pos":{"x":-27.0462245941162,"y":1.61578059196472,"z":-11.5305461883545},"rot":{"x":0.0684082359075546,"y":134.999618530273,"z":0.0445832647383213}},"b73127":{"lock":false,"pos":{"x":-26.6622619628906,"y":1.61645436286926,"z":-7.41628074645996},"rot":{"x":0.0798943638801575,"y":90.0001525878906,"z":359.983123779297}},"b89737":{"lock":false,"pos":{"x":-30.2241230010986,"y":1.62247490882874,"z":-3.83002114295959},"rot":{"x":0.0168243553489447,"y":180.010681152344,"z":0.0799569264054298}},"c16b4e":{"lock":false,"pos":{"x":-17.1199989318848,"y":1.61666977405548,"z":-7.70001983642578},"rot":{"x":359.920104980469,"y":269.999877929688,"z":0.0168399959802628}},"c94046":{"lock":false,"pos":{"x":-33.4688339233398,"y":1.6303539276123,"z":7.58308696746826},"rot":{"x":0.0798943936824799,"y":89.9999771118164,"z":359.983123779297}},"ceb7d4":{"lock":false,"pos":{"x":-26.8105792999268,"y":1.62001419067383,"z":3.99276566505432},"rot":{"x":0.0684082061052322,"y":134.999557495117,"z":0.0445845611393452}},"d0163a":{"lock":false,"pos":{"x":-33.4151954650879,"y":1.62686562538147,"z":-4.03124570846558},"rot":{"x":0.0684084370732307,"y":134.999435424805,"z":0.0445839650928974}},"d41278":{"lock":false,"pos":{"x":-3.95589399337769,"y":1.59753930568695,"z":-10.4411849975586},"rot":{"x":359.919738769531,"y":269.999816894531,"z":0.0168373994529247}},"e61348":{"lock":false,"pos":{"x":-23.6765117645264,"y":1.62581241130829,"z":-7.70001935958862},"rot":{"x":359.920104980469,"y":269.999725341797,"z":0.0168399699032307}},"e87867":{"lock":false,"pos":{"x":-30.2241630554199,"y":1.6371967792511,"z":-0.0300170239061117},"rot":{"x":359.920104980469,"y":269.999877929688,"z":0.0168398097157478}},"eab8ff":{"lock":false,"pos":{"x":9.84999656677246,"y":1.48607003688812,"z":15.9200029373169},"rot":{"x":359.920135498047,"y":269.999481201172,"z":0.0168752484023571}},"eef566":{"lock":false,"pos":{"x":-33.4450149536133,"y":1.62811577320099,"z":0.0806871131062508},"rot":{"x":0.0798944979906082,"y":90.0002212524414,"z":359.983123779297}},"efb4dd":{"lock":false,"pos":{"x":15.1499996185303,"y":1.49000000953674,"z":-8.07999992370605},"rot":{"x":359.920013427734,"y":270.000183105469,"z":0.0168743338435888}},"efb516":{"lock":false,"pos":{"x":-17.1198806762695,"y":1.60194492340088,"z":-11.5100326538086},"rot":{"x":0.0168239641934633,"y":180.011001586914,"z":0.0799526497721672}},"f5db25":{"lock":false,"pos":{"x":-3.6761999130249,"y":1.58233964443207,"z":-14.5353908538818},"rot":{"x":359.919738769531,"y":269.999816894531,"z":0.016838077455759}}}}' MaterialIndex: -1 MeasureMovement: false @@ -7804,12 +7789,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 30.2927418 - posY: 9.346848 - posZ: -28.0545235 - rotX: 0.0150438249 + posX: 30.293 + posY: 9.347 + posZ: -28.055 + rotX: 0.0 rotY: 270.0 - rotZ: -0.000215587832 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 @@ -7846,9 +7831,9 @@ Transform: posX: 28.49 posY: -1.23 posZ: -25.92 - rotX: 359.94 - rotY: 320.43 - rotZ: 359.95 + rotX: 0.0 + rotY: 320.0 + rotZ: 0.0 scaleX: 0.45 scaleY: 0.45 scaleZ: 0.45 diff --git a/unpacked/Custom_Model 032300.ttslua b/unpacked/Custom_Model 032300.ttslua index 15c290dea..14963d8cd 100644 --- a/unpacked/Custom_Model 032300.ttslua +++ b/unpacked/Custom_Model 032300.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playermat/ClueCounter") +end) +__bundle_register("playermat/ClueCounter", function(require, _LOADED, __bundle_register, __bundle_modules) --Counting Bowl by MrStump --Table of items which can be counted in this Bowl @@ -30,7 +77,7 @@ function onLoad() function_name="countItems", function_owner=self, repetitions=0, delay=1 }) - exposedValue = 0 + exposedValue = 0 trashCan = getObjectFromGUID("147e80") end @@ -107,9 +154,10 @@ function clueRemovalCoroutine() return 1 end - function onDestroy() if timerID and type(timerID) == 'object' then Timer.destroy(timerID) end -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model 032300.yaml b/unpacked/Custom_Model 032300.yaml index 0afefd150..62b9edffb 100644 --- a/unpacked/Custom_Model 032300.yaml +++ b/unpacked/Custom_Model 032300.yaml @@ -46,11 +46,11 @@ Sticky: true Tooltip: true Transform: posX: -31.91 - posY: 1.65 + posY: 1.57 posZ: 30.97 - rotX: 359.98 - rotY: 0.03 - rotZ: 359.92 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model 0a3b03.yaml b/unpacked/Custom_Model 0a3b03.yaml index e85ece6b7..407a382a7 100644 --- a/unpacked/Custom_Model 0a3b03.yaml +++ b/unpacked/Custom_Model 0a3b03.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.141065 - g: 0.141065 - r: 0.141065 + b: 0.141059875 + g: 0.141059875 + r: 0.141059875 CustomMesh: CastShadows: true ColliderURL: '' @@ -50,8 +50,8 @@ Transform: posX: 35.48 posY: 1.54 posZ: -30.97 - rotX: 89.95 - rotY: 317.42 + rotX: 90.0 + rotY: 317.0 rotZ: 0.0 scaleX: 0.2 scaleY: 0.3 diff --git a/unpacked/Custom_Model 0c05e4.yaml b/unpacked/Custom_Model 0c05e4.yaml index cf3aa8be0..73e9db50e 100644 --- a/unpacked/Custom_Model 0c05e4.yaml +++ b/unpacked/Custom_Model 0c05e4.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.141065 - g: 0.141065 - r: 0.141065 + b: 0.141059875 + g: 0.141059875 + r: 0.141059875 CustomMesh: CastShadows: true ColliderURL: '' @@ -50,9 +50,9 @@ Transform: posX: 35.09 posY: 1.54 posZ: -31.33 - rotX: 359.96 - rotY: 359.29 - rotZ: 89.91 + rotX: 0.0 + rotY: 359.0 + rotZ: 90.0 scaleX: 0.2 scaleY: 0.3 scaleZ: 0.2 diff --git a/unpacked/Custom_Model 1769ed.ttslua b/unpacked/Custom_Model 1769ed.ttslua index 15c290dea..14963d8cd 100644 --- a/unpacked/Custom_Model 1769ed.ttslua +++ b/unpacked/Custom_Model 1769ed.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playermat/ClueCounter") +end) +__bundle_register("playermat/ClueCounter", function(require, _LOADED, __bundle_register, __bundle_modules) --Counting Bowl by MrStump --Table of items which can be counted in this Bowl @@ -30,7 +77,7 @@ function onLoad() function_name="countItems", function_owner=self, repetitions=0, delay=1 }) - exposedValue = 0 + exposedValue = 0 trashCan = getObjectFromGUID("147e80") end @@ -107,9 +154,10 @@ function clueRemovalCoroutine() return 1 end - function onDestroy() if timerID and type(timerID) == 'object' then Timer.destroy(timerID) end -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model 1769ed.yaml b/unpacked/Custom_Model 1769ed.yaml index 6daae77a7..e9b9eac93 100644 --- a/unpacked/Custom_Model 1769ed.yaml +++ b/unpacked/Custom_Model 1769ed.yaml @@ -46,11 +46,11 @@ Sticky: true Tooltip: true Transform: posX: -59.45 - posY: 1.65 + posY: 1.57 posZ: -22.63 - rotX: 359.92 - rotY: 269.99 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model 180a23.yaml b/unpacked/Custom_Model 180a23.yaml index 587070b18..578be02d2 100644 --- a/unpacked/Custom_Model 180a23.yaml +++ b/unpacked/Custom_Model 180a23.yaml @@ -47,9 +47,9 @@ Transform: posX: 34.11 posY: 1.47 posZ: -32.17 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model 37be78.ttslua b/unpacked/Custom_Model 37be78.ttslua index 8334cbdcb..14963d8cd 100644 --- a/unpacked/Custom_Model 37be78.ttslua +++ b/unpacked/Custom_Model 37be78.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playermat/ClueCounter") +end) +__bundle_register("playermat/ClueCounter", function(require, _LOADED, __bundle_register, __bundle_modules) --Counting Bowl by MrStump --Table of items which can be counted in this Bowl @@ -30,7 +77,7 @@ function onLoad() function_name="countItems", function_owner=self, repetitions=0, delay=1 }) - exposedValue = 0 + exposedValue = 0 trashCan = getObjectFromGUID("147e80") end @@ -111,4 +158,6 @@ function onDestroy() if timerID and type(timerID) == 'object' then Timer.destroy(timerID) end -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model 37be78.yaml b/unpacked/Custom_Model 37be78.yaml index 9d072687a..acbc038c2 100644 --- a/unpacked/Custom_Model 37be78.yaml +++ b/unpacked/Custom_Model 37be78.yaml @@ -46,11 +46,11 @@ Sticky: true Tooltip: true Transform: posX: -18.98 - posY: 1.65 + posY: 1.57 posZ: -31.01 - rotX: 0.02 - rotY: 179.98 - rotZ: 0.08 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model 4be4a3.yaml b/unpacked/Custom_Model 4be4a3.yaml index c2f63adf4..b1e8ee1f6 100644 --- a/unpacked/Custom_Model 4be4a3.yaml +++ b/unpacked/Custom_Model 4be4a3.yaml @@ -44,12 +44,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 33.67 + posX: 33.66 posY: 1.47 posZ: -30.57 rotX: 0.0 rotY: 195.0 - rotZ: 0.08 + rotZ: 0.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model 4ee1f2.yaml b/unpacked/Custom_Model 4ee1f2.yaml index f0430af93..a62ee1950 100644 --- a/unpacked/Custom_Model 4ee1f2.yaml +++ b/unpacked/Custom_Model 4ee1f2.yaml @@ -24,7 +24,7 @@ AttachedSnapPoints: z: 13.08 Rotation: x: 0.0 - y: 269.99 + y: 270.0 z: 0.0 - Position: x: 0.06 @@ -40,7 +40,7 @@ AttachedSnapPoints: z: 13.08 Rotation: x: 0.0 - y: 269.99 + y: 270.0 z: 0.0 - Position: x: -1.4 @@ -56,7 +56,7 @@ AttachedSnapPoints: z: 15.3 Rotation: x: 0.0 - y: 269.99 + y: 270.0 z: 0.0 - Position: x: -1.4 @@ -64,7 +64,7 @@ AttachedSnapPoints: z: 15.3 Rotation: x: 0.0 - y: 269.99 + y: 270.0 z: 0.0 Autoraise: true ColorDiffuse: @@ -111,9 +111,9 @@ Transform: posX: 0.0 posY: -9.0 posZ: 0.0 - rotX: 359.98 + rotX: 0.0 rotY: 0.0 - rotZ: 359.92 + rotZ: 0.0 scaleX: 4.0 scaleY: 1.0 scaleZ: 2.2 diff --git a/unpacked/Custom_Model 87ccfc.yaml b/unpacked/Custom_Model 87ccfc.yaml index a8e5dbe16..617a741d7 100644 --- a/unpacked/Custom_Model 87ccfc.yaml +++ b/unpacked/Custom_Model 87ccfc.yaml @@ -49,7 +49,7 @@ Transform: posZ: -32.29 rotX: 0.0 rotY: 195.0 - rotZ: 0.08 + rotZ: 0.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model a90f21.yaml b/unpacked/Custom_Model a90f21.yaml index c6cd51d8a..90df220f2 100644 --- a/unpacked/Custom_Model a90f21.yaml +++ b/unpacked/Custom_Model a90f21.yaml @@ -47,9 +47,9 @@ Transform: posX: 35.98 posY: 1.48 posZ: -27.59 - rotX: 0.07 - rotY: 135.03 - rotZ: 180.05 + rotX: 0.0 + rotY: 135.0 + rotZ: 180.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model b486bd.yaml b/unpacked/Custom_Model b486bd.yaml index a75009f42..419cdb899 100644 --- a/unpacked/Custom_Model b486bd.yaml +++ b/unpacked/Custom_Model b486bd.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.141065 - g: 0.141065 - r: 0.141065 + b: 0.141059875 + g: 0.141059875 + r: 0.141059875 CustomMesh: CastShadows: true ColliderURL: '' @@ -50,8 +50,8 @@ Transform: posX: 38.82 posY: 1.53 posZ: -36.02 - rotX: 270.05 - rotY: 37.48 + rotX: 270.0 + rotY: 37.0 rotZ: 0.0 scaleX: 0.2 scaleY: 0.3 diff --git a/unpacked/Custom_Model d7c767.yaml b/unpacked/Custom_Model d7c767.yaml index 5395d5255..f82fccda2 100644 --- a/unpacked/Custom_Model d7c767.yaml +++ b/unpacked/Custom_Model d7c767.yaml @@ -47,9 +47,9 @@ Transform: posX: 36.01 posY: 1.48 posZ: -29.98 - rotX: 0.07 - rotY: 135.02 - rotZ: 180.05 + rotX: 0.0 + rotY: 135.0 + rotZ: 180.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model d86b7c.ttslua b/unpacked/Custom_Model d86b7c.ttslua index 15c290dea..14963d8cd 100644 --- a/unpacked/Custom_Model d86b7c.ttslua +++ b/unpacked/Custom_Model d86b7c.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playermat/ClueCounter") +end) +__bundle_register("playermat/ClueCounter", function(require, _LOADED, __bundle_register, __bundle_modules) --Counting Bowl by MrStump --Table of items which can be counted in this Bowl @@ -30,7 +77,7 @@ function onLoad() function_name="countItems", function_owner=self, repetitions=0, delay=1 }) - exposedValue = 0 + exposedValue = 0 trashCan = getObjectFromGUID("147e80") end @@ -107,9 +154,10 @@ function clueRemovalCoroutine() return 1 end - function onDestroy() if timerID and type(timerID) == 'object' then Timer.destroy(timerID) end -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model d86b7c.yaml b/unpacked/Custom_Model d86b7c.yaml index b0e634c8d..01f1cdd83 100644 --- a/unpacked/Custom_Model d86b7c.yaml +++ b/unpacked/Custom_Model d86b7c.yaml @@ -46,11 +46,11 @@ Sticky: true Tooltip: true Transform: posX: -59.5 - posY: 1.65 + posY: 1.57 posZ: 9.56 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model f18c2d.yaml b/unpacked/Custom_Model f18c2d.yaml index 14847b74e..7bc5db63f 100644 --- a/unpacked/Custom_Model f18c2d.yaml +++ b/unpacked/Custom_Model f18c2d.yaml @@ -45,11 +45,11 @@ Sticky: true Tooltip: true Transform: posX: 36.24 - posY: 1.47 - posZ: -31.01 - rotX: 0.02 - rotY: 179.94 - rotZ: 180.08 + posY: 1.48 + posZ: -31.02 + rotX: 0.0 + rotY: 180.0 + rotZ: 180.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model f42af3.yaml b/unpacked/Custom_Model f42af3.yaml index 6291d3672..bfef8ebed 100644 --- a/unpacked/Custom_Model f42af3.yaml +++ b/unpacked/Custom_Model f42af3.yaml @@ -47,9 +47,9 @@ Transform: posX: 36.51 posY: 1.55 posZ: -31.65 - rotX: 0.01 + rotX: 0.0 rotY: 195.0 - rotZ: 180.09 + rotZ: 180.0 scaleX: 0.33 scaleY: 0.33 scaleZ: 0.33 diff --git a/unpacked/Custom_Model Bonded c5261f.ttslua b/unpacked/Custom_Model Bonded c5261f.ttslua new file mode 100644 index 000000000..3b9b2d183 --- /dev/null +++ b/unpacked/Custom_Model Bonded c5261f.ttslua @@ -0,0 +1,545 @@ +-- 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/spawnbag/BondedBag", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/spawnbag/SpawnBag") + +SPAWN_SPEC = { + name = "BondedCards", + cards = { + "05314", -- Soothing Melody + "06277", -- Wish Eater + "06019", -- Bloodlust + "06022", -- Pendant of the Queen + "05317", -- Blood-rite + "06113", -- Essence of the Dream + "06028", -- Stars Are Right + "06025", -- Guardian of the Crystallizer + "06283", -- Unbound Beast + "06032", -- Zeal + "06031", -- Hope + "06033", -- Augur + "06331", -- Dream Parasite + "06015a", -- Dream-Gate + }, + globalPos = { x = -33.88, y = 1.5, z = 85.61 }, + rotation = { x = 0, y = 270, z = 0 }, + spread = true, +} + +function onLoad(savedData) + if (savedData ~= nil) then + local saveState = JSON.decode(savedData) + if (saveState.spawnBagState ~= nil) then + SpawnBag.loadFromSave(saveState.spawnBagState) + end + end + createActionButtons() +end + +function onSave() + local saveState = { + spawnBagState = SpawnBag.getStateForSave(), + } + return JSON.encode(saveState) +end + +function createActionButtons() + self.createButton({ + label="Place", + click_function="buttonClick_place", + function_owner=self, + position={1,0.1,2.1}, + rotation={0,0,0}, + height=350, + width=800, + font_size=250, + color={0,0,0}, + font_color={1,1,1} + }) + self.createButton({ + label="Recall", + click_function="buttonClick_recall", + function_owner=self, + position={-1,0.1,2.1}, + rotation={0,0,0}, + height=350, + width=800, + font_size=250, + color={0,0,0}, + font_color={1,1,1} + }) +end + +function buttonClick_place() + SpawnBag.spawn(SPAWN_SPEC) +end + +-- Recalls objects to bag from table +function buttonClick_recall() + SpawnBag.recall() +end +end) +__bundle_register("playercards/spawnbag/SpawnBag", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/PlayerCardSpawner") + +-- Allows spawning of defined lists of cards which will be created from the template in the All +-- Player Cards bag. SpawnBag.spawn will create objects based on a table definition, while +-- SpawnBag.recall will clean them all up. Recall will be limited to a small area around the +-- spawned objects. Objects moved out of this area will not be cleaned up. +-- +-- SpawnSpec: Spawning requires a spawn specification with the following structure: +-- { +-- name: Name of this spawn content, used for internal tracking. Multiple specs can be spawned, +-- but each requires a separate name +-- cards: A list of card IDs to be spawned +-- globalPos: Where the spawned objects should be placed, in global coordinates. This should be +-- a valid Vector with x, y, and z defined, e.g. { x = 5, y = 1, z = 15 } +-- rotation: Rotation for the spawned objects. X=180 should be used for face down items. As with +-- globalPos, this should be a valid Vector with x, y, and z defined +-- spread: Optional. If present and true, cards will be spawned next to each other in a spread +-- moving to the right. globalPos will define the location of the first card, each after that +-- will be moved a predefined distance +-- } +-- See BondedBag.ttslua for an example + +SpawnBag = { } + +-- To assist debugging, will draw a box around the recall zone when it's set up +local SHOW_RECALL_ZONE = false + +local ALL_CARDS_GUID = "15bb07" + +-- Distance to expand the recall zone around any added object. +local RECALL_BUFFER_X = 0.9 +local RECALL_BUFFER_Z = 0.5 + +-- In order to mimic the behavior of the previous memory buttons we use a temporary bag when +-- recalling objects. This bag is tiny and transparent, and will be placed at the same location as +-- this object. Once all placed cards are recalled bag to this bag, it will be destroyed +local RECALL_BAG = { + Name = "Bag", + Transform = { + scaleX = 0.01, + scaleY = 0.01, + scaleZ = 0.01, + }, + ColorDiffuse = { + r = 0, + g = 0, + b = 0, + a = 0, + }, + Locked = true, + Grid = true, + Snap = false, + Tooltip = false, +} + +-- Tracks what has been placed by this "bag" so they can be recalled +local placedSpecs = { } +local placedObjectGuids = { } +local recallZone = nil + +-- Loads a table of saved state, extracted during the parent object's onLoad +SpawnBag.loadFromSave = function(saveTable) + placedSpecs = saveTable.placed + placedObjectGuids = saveTable.placedObjects + recallZone = saveTable.recall +end + +-- Generates a table of save state that can be included in the parent object's onSave +SpawnBag.getStateForSave = function() + return { + placed = placedSpecs, + placedObjects = placedObjectGuids, + recall = recallZone, + } +end + +-- Places the given spawnSpec on the table. See SpawnBag.ttslua header for spawnSpec table data and +-- examples +SpawnBag.spawn = function(spawnSpec) + -- Limit to one placement at a time + if (placedSpecs[spawnSpec.name]) then + return + end + if (spawnSpec == nil) then + -- TODO: error here + return + end + local cardsToSpawn = { } + local allCardsBag = getObjectFromGUID(ALL_CARDS_GUID) + for _, cardId in ipairs(spawnSpec.cards) do + local cardData = allCardsBag.call("getCardById", { id = cardId }) + if (cardData ~= nil) then + table.insert(cardsToSpawn, cardData) + else + -- TODO: error here + end + end + if (spawnSpec.spread) then + Spawner.spawnCardSpread(cardsToSpawn, spawnSpec.globalPos, spawnSpec.rotation, false, recordPlacedObject) + else + Spawner.spawnCards(cardsToSpawn, spawnSpec.globalPos, spawnSpec.rotation, false, recordPlacedObject) + end + placedSpecs[spawnSpec.name] = true +end + +-- Recalls all spawned objects to the bag, and clears the placedObjectGuids list +SpawnBag.recall = function() + local trash = spawnObjectData({data = RECALL_BAG, position = self.getPosition()}) + for guid, _ in pairs(placedObjectGuids) do + local obj = getObjectFromGUID(guid) + if (obj ~= nil) then + if (isInRecallZone(obj)) then + trash.putObject(obj) + end + placedObjectGuids[guid] = nil + end + end + + trash.destruct() + -- We've recalled everything we can, some cards may have been moved out of the + -- card area. Just reset at this point. + placedSpecs = { } + placedObjectGuids = { } + recallZone = nil +end + +-- Callback for when an object has been spawned. Tracks the object for later recall and updates the +-- recall zone. +function recordPlacedObject(spawned) + placedObjectGuids[spawned.getGUID()] = true + expandRecallZone(spawned) +end + +-- Expands the current recall zone based on the position of the given object. The recall zone will +-- be maintained as the bounding box of the extreme object positions, plus a small amount of buffer +function expandRecallZone(spawnedCard) + local pos = spawnedCard.getPosition() + if (recallZone == nil) then + -- First card out of the bag, initialize surrounding that + recallZone = { } + recallZone.upperLeft = { x = pos.x + RECALL_BUFFER_X, z = pos.z + RECALL_BUFFER_Z } + recallZone.lowerRight = { x = pos.x - RECALL_BUFFER_X, z = pos.z - RECALL_BUFFER_Z } + return + else + if (pos.x > recallZone.upperLeft.x) then + recallZone.upperLeft.x = pos.x + RECALL_BUFFER_X + end + if (pos.x < recallZone.lowerRight.x) then + recallZone.lowerRight.x = pos.x - RECALL_BUFFER_X + end + if (pos.z > recallZone.upperLeft.z) then + recallZone.upperLeft.z = pos.z + RECALL_BUFFER_Z + end + if (pos.z < recallZone.lowerRight.z) then + recallZone.lowerRight.z = pos.z - RECALL_BUFFER_Z + end + end + if (SHOW_RECALL_ZONE) then + local y = 1.5 + local thick = 0.05 + Global.setVectorLines({ + { + points = { {recallZone.upperLeft.x,y,recallZone.upperLeft.z}, {recallZone.upperLeft.x,y,recallZone.lowerRight.z} }, + color = {1,0,0}, + thickness = thick, + rotation = {0,0,0}, + }, + { + points = { {recallZone.upperLeft.x,y,recallZone.lowerRight.z}, {recallZone.lowerRight.x,y,recallZone.lowerRight.z} }, + color = {1,0,0}, + thickness = thick, + rotation = {0,0,0}, + }, + { + points = { {recallZone.lowerRight.x,y,recallZone.lowerRight.z}, {recallZone.lowerRight.x,y,recallZone.upperLeft.z} }, + color = {1,0,0}, + thickness = thick, + rotation = {0,0,0}, + }, + { + points = { {recallZone.lowerRight.x,y,recallZone.upperLeft.z}, {recallZone.upperLeft.x,y,recallZone.upperLeft.z} }, + color = {1,0,0}, + thickness = thick, + rotation = {0,0,0}, + }, + }) + end +end + +-- Checks to see if the given object is in the current recall zone. If there isn't a recall zone, +-- will return true so that everything can be easily cleaned up. +function isInRecallZone(obj) + if (recallZone == nil) then + return true + end + local pos = obj.getPosition() + return (pos.x < recallZone.upperLeft.x and pos.x > recallZone.lowerRight.x + and pos.z < recallZone.upperLeft.z and pos.z > recallZone.lowerRight.z) +end +end) +__bundle_register("playercards/PlayerCardSpawner", function(require, _LOADED, __bundle_register, __bundle_modules) + +-- Amount to shift for the next card (zShift) or next row of cards (xShift) +-- Note that the table rotation is weird, and the X axis is vertical while the +-- Z axis is horizontal +local SPREAD_Z_SHIFT = -2.3 + +Spawner = { } + +-- Spawns a list of cards at the given position/rotation. This will separate cards by size - +-- investigator, standard, and mini, spawning them in that order with larger cards on bottom. If +-- there are different types, the provided callback will be called once for each type as it spawns +-- either a card or deck. +-- @param cardList: A list of Player Card data structures (data/metadata) +-- @param pos Position table where the cards should be spawned (global) +-- @param rot Rotation table for the orientation of the spawned cards (global) +-- @param sort Boolean, true if this list of cards should be sorted before spawning +-- @param callback Function, callback to be called after the card/deck spawns. +Spawner.spawnCards = function(cardList, pos, rot, sort, callback) + if (sort) then + table.sort(cardList, Spawner.cardComparator) + end + + local miniCards = { } + local standardCards = { } + local investigatorCards = { } + + for _, card in ipairs(cardList) do + if (card.metadata.type == "Investigator") then + table.insert(investigatorCards, card) + elseif (card.metadata.type == "Minicard") then + table.insert(miniCards, card) + else + table.insert(standardCards, card) + end + end + -- Spawn each of the three types individually. Each Y position shift accounts for the thickness + -- of the spawned deck + local position = { x = pos.x, y = pos.y, z = pos.z } + Spawner.spawn(investigatorCards, position, { rot.x, rot.y - 90, rot.z}, callback) + + position.y = position.y + (#investigatorCards + #standardCards) * 0.07 + Spawner.spawn(standardCards, position, rot, callback) + + position.y = position.y + (#standardCards + #miniCards) * 0.07 + Spawner.spawn(miniCards, position, rot, callback) +end + +Spawner.spawnCardSpread = function(cardList, startPos, rot, sort, callback) + if (sort) then + table.sort(cardList, Spawner.cardComparator) + end + + local position = { x = startPos.x, y = startPos.y, z = startPos.z } + for _, card in ipairs(cardList) do + Spawner.spawn({ card }, position, rot, callback) + position.z = position.z + SPREAD_Z_SHIFT + end +end + +-- Spawn a specific list of cards. This method is for internal use and should not be called +-- directly, use spawnCards instead. +-- @param cardList: A list of Player Card data structures (data/metadata) +-- @param pos Position table where the cards should be spawned (global) +-- @param rot Rotation table for the orientation of the spawned cards (global) +-- @param callback Function, callback to be called after the card/deck spawns. +Spawner.spawn = function(cardList, pos, rot, callback) + if (#cardList == 0) then + return + end + -- Spawn a single card directly + if (#cardList == 1) then + spawnObjectData({ + data = cardList[1].data, + position = pos, + rotation = rot, + callback_function = callback, + }) + return + end + -- For multiple cards, construct a deck and spawn that + local deck = Spawner.buildDeckDataTemplate() + -- Decks won't inherently scale to the cards in them. The card list being spawned should be all + -- the same type/size by this point, so use the first card to set the size + deck.Transform = { + scaleX = cardList[1].data.Transform.scaleX, + scaleY = 1, + scaleZ = cardList[1].data.Transform.scaleZ, + } + for _, spawnCard in ipairs(cardList) do + Spawner.addCardToDeck(deck, spawnCard.data) + end + spawnObjectData({ + data = deck, + position = pos, + rotation = rot, + callback_function = callback, + }) +end + +-- Inserts a card into the given deck. This does three things: +-- 1. Add the card's data to ContainedObjects +-- 2. Add the card's ID (the TTS CardID, not the Arkham ID) to the deck's +-- ID list. Note that the deck's ID list is "DeckIDs" even though it +-- contains a list of card Ids +-- 3. Extract the card's CustomDeck table and add it to the deck. The deck's +-- "CustomDeck" field is a list of all CustomDecks used by cards within the +-- deck, keyed by the DeckID and referencing the custom deck table +---@param deck: TTS deck data structure to add to +---@param card: Data for the card to be inserted +Spawner.addCardToDeck = function(deck, cardData) + for customDeckId, customDeckData in pairs(cardData.CustomDeck) do + if (deck.CustomDeck[customDeckId] == nil) then + -- CustomDeck not added to deck yet, add it + deck.CustomDeck[customDeckId] = customDeckData + elseif (deck.CustomDeck[customDeckId].FaceURL == customDeckData.FaceURL) then + -- CustomDeck for this card matches the current one for the deck, do nothing + else + -- CustomDeck data conflict + local newDeckId = nil + for deckId, customDeck in pairs(deck.CustomDeck) do + if (customDeckData.FaceURL == customDeck.FaceURL) then + newDeckId = deckId + end + end + if (newDeckId == nil) then + -- No non-conflicting custom deck for this card, add a new one + newDeckId = Spawner.findNextAvailableId(deck.CustomDeck, "1000") + deck.CustomDeck[newDeckId] = customDeckData + end + -- Update the card with the new CustomDeck info + cardData.CardID = newDeckId..string.sub(cardData.CardID, 5) + cardData.CustomDeck[customDeckId] = nil + cardData.CustomDeck[newDeckId] = customDeckData + break + end + end + table.insert(deck.ContainedObjects, cardData) + table.insert(deck.DeckIDs, cardData.CardID) +end + +-- Create an empty deck data table which can have cards added to it. This +-- creates a new table on each call without using metatables or previous +-- definitions because we can't be sure that TTS doesn't modify the structure +---@return: Table containing the minimal TTS deck data structure +Spawner.buildDeckDataTemplate = function() + local deck = {} + deck.Name = "Deck" + + -- Card data. DeckIDs and CustomDeck entries will be built from the cards + deck.ContainedObjects = {} + deck.DeckIDs = {} + deck.CustomDeck = {} + + -- Transform is required, Position and Rotation will be overridden by the spawn call so can be omitted here + deck.Transform = { + scaleX = 1, + scaleY = 1, + scaleZ = 1, + } + + return deck +end + +-- Returns the first ID which does not exist in the given table, starting at startId and increasing +-- @param objectTable Table keyed by strings which are numbers +-- @param startId First possible ID. +-- @return String ID >= startId +Spawner.findNextAvailableId = function(objectTable, startId) + local id = startId + while (objectTable[id] ~= nil) do + id = tostring(tonumber(id) + 1) + end + + return id +end + +-- Get the PBCN (Permanent/Bonded/Customizable/Normal) value from the given metadata. +---@return: 1 for Permanent, 2 for Bonded or 4 for Normal. The actual values are +-- irrelevant as they provide only grouping and the order between them doesn't matter. +Spawner.getpbcn = function(metadata) + if metadata.permanent then + return 1 + elseif metadata.bonded_to ~= nil then + return 2 + else -- Normal card + return 3 + end +end + +-- Comparison function used to sort the cards in a deck. Groups bonded or +-- permanent cards first, then sorts within theose types by name/subname. +-- Normal cards will sort in standard alphabetical order, while +-- permanent/bonded/customizable will be in reverse alphabetical order. +-- +-- Since cards spawn in the order provided by this comparator, with the first +-- cards ending up at the bottom of a pile, this ordering will spawn in reverse +-- alphabetical order. This presents the cards in order for non-face-down +-- areas, and presents them in order when Searching the face-down deck. +Spawner.cardComparator = function(card1, card2) + local pbcn1 = Spawner.getpbcn(card1.metadata) + local pbcn2 = Spawner.getpbcn(card2.metadata) + if pbcn1 ~= pbcn2 then + return pbcn1 > pbcn2 + end + if pbcn1 == 3 then + if card1.data.Nickname ~= card2.data.Nickname then + return card1.data.Nickname < card2.data.Nickname + end + return card1.data.Description < card2.data.Description + else + if card1.data.Nickname ~= card2.data.Nickname then + return card1.data.Nickname > card2.data.Nickname + end + return card1.data.Description > card2.data.Description + end +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/spawnbag/BondedBag") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model Bonded c5261f.yaml b/unpacked/Custom_Model Bonded c5261f.yaml new file mode 100644 index 000000000..ea283a940 --- /dev/null +++ b/unpacked/Custom_Model Bonded c5261f.yaml @@ -0,0 +1,57 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/784110538847770224/4D6AB235B353C755559B14FF6B92C257DBEC075B/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c5261f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: true +LuaScript: !include 'Custom_Model Bonded c5261f.ttslua' +LuaScriptState: '{"spawnBagState":{"placed":[],"placedObjects":[]}}' +MeasureMovement: false +Name: Custom_Model +Nickname: Bonded +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8 + posY: 1.38 + posZ: 91.6 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model Core 2585f4.ttslua b/unpacked/Custom_Model Core 2585f4.ttslua index 92fe71b3b..f122c50de 100644 --- a/unpacked/Custom_Model Core 2585f4.ttslua +++ b/unpacked/Custom_Model Core 2585f4.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model Core 2585f4.yaml b/unpacked/Custom_Model Core 2585f4.yaml index 8e2df63b9..5e5d3b7df 100644 --- a/unpacked/Custom_Model Core 2585f4.yaml +++ b/unpacked/Custom_Model Core 2585f4.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -46,11 +46,11 @@ Sticky: true Tooltip: true Transform: posX: -9.7 - posY: 1.31 + posY: 1.3 posZ: -53.92 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.5 scaleY: 0.14 scaleZ: 0.5 diff --git a/unpacked/Custom_Model CoreNight of the Zealot 64a613.ttslua b/unpacked/Custom_Model CoreNight of the Zealot 64a613.ttslua index 3edb6a725..d25f21689 100644 --- a/unpacked/Custom_Model CoreNight of the Zealot 64a613.ttslua +++ b/unpacked/Custom_Model CoreNight of the Zealot 64a613.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model CoreNight of the Zealot 64a613.yaml b/unpacked/Custom_Model CoreNight of the Zealot 64a613.yaml index 156952534..4ed2baa35 100644 --- a/unpacked/Custom_Model CoreNight of the Zealot 64a613.yaml +++ b/unpacked/Custom_Model CoreNight of the Zealot 64a613.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -46,11 +46,11 @@ Sticky: true Tooltip: true Transform: posX: 58.53 - posY: 1.41 + posY: 1.48 posZ: 28.52 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 0.14 scaleZ: 1.0 diff --git a/unpacked/Custom_Model Custom Data Helper 2547b3.ttslua b/unpacked/Custom_Model Custom Data Helper 2547b3.ttslua index d161eaa34..cf8aa7716 100644 --- a/unpacked/Custom_Model Custom Data Helper 2547b3.ttslua +++ b/unpacked/Custom_Model Custom Data Helper 2547b3.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("core/CustomDataHelper") +end) +__bundle_register("core/CustomDataHelper", function(require, _LOADED, __bundle_register, __bundle_modules) -- set true to enable debug logging DEBUG = false @@ -73,4 +120,6 @@ function onload(save_state) playerMatRed.call("updatePlayerCards", {self.getGUID()}) local dataHelper = getObjectFromGUID('708279') dataHelper.call("updateHiddenCards", {self.getGUID()}) -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model Custom Data Helper 2547b3.yaml b/unpacked/Custom_Model Custom Data Helper 2547b3.yaml index 95b8b50bf..79d9bd30d 100644 --- a/unpacked/Custom_Model Custom Data Helper 2547b3.yaml +++ b/unpacked/Custom_Model Custom Data Helper 2547b3.yaml @@ -45,11 +45,11 @@ Sticky: true Tooltip: true Transform: posX: 32.0 - posY: 1.49 - posZ: -24.49 - rotX: 359.92 - rotY: 270.0 - rotZ: 0.02 + posY: 1.56 + posZ: -24.51 + rotX: 0.0 + rotY: 269.0 + rotZ: 0.0 scaleX: 0.5 scaleY: 0.5 scaleZ: 0.5 diff --git a/unpacked/Custom_Model Edge of the Earth 895eaa.ttslua b/unpacked/Custom_Model Edge of the Earth 895eaa.ttslua index 3edb6a725..d25f21689 100644 --- a/unpacked/Custom_Model Edge of the Earth 895eaa.ttslua +++ b/unpacked/Custom_Model Edge of the Earth 895eaa.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model Edge of the Earth 895eaa.yaml b/unpacked/Custom_Model Edge of the Earth 895eaa.yaml index 54f48b06d..1c8e616c3 100644 --- a/unpacked/Custom_Model Edge of the Earth 895eaa.yaml +++ b/unpacked/Custom_Model Edge of the Earth 895eaa.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -45,12 +45,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 40.29 - posY: 1.43 + posX: 45.41 + posY: 1.49 posZ: 0.38 - rotX: 359.92 - rotY: 269.99 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 0.14 scaleZ: 1.0 diff --git a/unpacked/Custom_Model Edge of the Earth Investigators a32f43.ttslua b/unpacked/Custom_Model Edge of the Earth Investigators a32f43.ttslua index 92fe71b3b..f122c50de 100644 --- a/unpacked/Custom_Model Edge of the Earth Investigators a32f43.ttslua +++ b/unpacked/Custom_Model Edge of the Earth Investigators a32f43.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model Edge of the Earth Investigators a32f43.yaml b/unpacked/Custom_Model Edge of the Earth Investigators a32f43.yaml index 6bf909edb..33bbc167b 100644 --- a/unpacked/Custom_Model Edge of the Earth Investigators a32f43.yaml +++ b/unpacked/Custom_Model Edge of the Earth Investigators a32f43.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -48,9 +48,9 @@ Transform: posX: -33.33 posY: 1.3 posZ: -60.04 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.5 scaleY: 0.14 scaleZ: 0.5 diff --git a/unpacked/Custom_Model Encounter Sets fcfa7f.yaml b/unpacked/Custom_Model Encounter Sets fcfa7f.yaml index b90293d08..f5ad664a4 100644 --- a/unpacked/Custom_Model Encounter Sets fcfa7f.yaml +++ b/unpacked/Custom_Model Encounter Sets fcfa7f.yaml @@ -47,9 +47,9 @@ Transform: posX: 22.95 posY: 1.44 posZ: -30.87 - rotX: 359.92 - rotY: 300.01 - rotZ: 359.97 + rotX: 0.0 + rotY: 300.0 + rotZ: 0.0 scaleX: 4.3 scaleY: 4.3 scaleZ: 4.3 diff --git a/unpacked/Custom_Model Guardian 363ab6.ttslua b/unpacked/Custom_Model Guardian 363ab6.ttslua index 19ea06020..976c016ee 100644 --- a/unpacked/Custom_Model Guardian 363ab6.ttslua +++ b/unpacked/Custom_Model Guardian 363ab6.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/ClassCardContainer") +end) +__bundle_register("playercards/ClassCardContainer", function(require, _LOADED, __bundle_register, __bundle_modules) -- Class card bag implementation. Mimics the behavior of the previous SCED -- card memory bags, but spawns cards from the All Cards Bag instead. -- @@ -268,4 +315,6 @@ end function div(a,b) return (a - a % b) / b -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model Guardian 363ab6.yaml b/unpacked/Custom_Model Guardian 363ab6.yaml index 07397e4f5..f3eb49516 100644 --- a/unpacked/Custom_Model Guardian 363ab6.yaml +++ b/unpacked/Custom_Model Guardian 363ab6.yaml @@ -45,11 +45,11 @@ Sticky: true Tooltip: true Transform: posX: 66.61 - posY: 1.41 + posY: 1.42 posZ: 75.88 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.2 scaleY: 1.2 scaleZ: 1.2 diff --git a/unpacked/Custom_Model Guardian 526d39.ttslua b/unpacked/Custom_Model Guardian 526d39.ttslua index 19ea06020..976c016ee 100644 --- a/unpacked/Custom_Model Guardian 526d39.ttslua +++ b/unpacked/Custom_Model Guardian 526d39.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/ClassCardContainer") +end) +__bundle_register("playercards/ClassCardContainer", function(require, _LOADED, __bundle_register, __bundle_modules) -- Class card bag implementation. Mimics the behavior of the previous SCED -- card memory bags, but spawns cards from the All Cards Bag instead. -- @@ -268,4 +315,6 @@ end function div(a,b) return (a - a % b) / b -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model Guardian 526d39.yaml b/unpacked/Custom_Model Guardian 526d39.yaml index fcc2076aa..0e927aed2 100644 --- a/unpacked/Custom_Model Guardian 526d39.yaml +++ b/unpacked/Custom_Model Guardian 526d39.yaml @@ -45,11 +45,11 @@ Sticky: true Tooltip: true Transform: posX: 66.32 - posY: 1.41 + posY: 1.42 posZ: -63.98 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.2 scaleY: 1.2 scaleZ: 1.2 diff --git a/unpacked/Custom_Model Mystic 8109fb.ttslua b/unpacked/Custom_Model Mystic 8109fb.ttslua index 19ea06020..2ec9606c1 100644 --- a/unpacked/Custom_Model Mystic 8109fb.ttslua +++ b/unpacked/Custom_Model Mystic 8109fb.ttslua @@ -1,3 +1,47 @@ +-- 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/ClassCardContainer", function(require, _LOADED, __bundle_register, __bundle_modules) -- Class card bag implementation. Mimics the behavior of the previous SCED -- card memory bags, but spawns cards from the All Cards Bag instead. -- @@ -268,4 +312,9 @@ end function div(a,b) return (a - a % b) / b -end \ No newline at end of file +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/ClassCardContainer") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model Mystic 8109fb.yaml b/unpacked/Custom_Model Mystic 8109fb.yaml index e0bf9a0b0..4461a67ff 100644 --- a/unpacked/Custom_Model Mystic 8109fb.yaml +++ b/unpacked/Custom_Model Mystic 8109fb.yaml @@ -47,9 +47,9 @@ Transform: posX: 66.3 posY: 1.41 posZ: -80.18 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.2 scaleY: 1.2 scaleZ: 1.2 diff --git a/unpacked/Custom_Model Mystic f39af2.ttslua b/unpacked/Custom_Model Mystic f39af2.ttslua index 19ea06020..976c016ee 100644 --- a/unpacked/Custom_Model Mystic f39af2.ttslua +++ b/unpacked/Custom_Model Mystic f39af2.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/ClassCardContainer") +end) +__bundle_register("playercards/ClassCardContainer", function(require, _LOADED, __bundle_register, __bundle_modules) -- Class card bag implementation. Mimics the behavior of the previous SCED -- card memory bags, but spawns cards from the All Cards Bag instead. -- @@ -268,4 +315,6 @@ end function div(a,b) return (a - a % b) / b -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model Mystic f39af2.yaml b/unpacked/Custom_Model Mystic f39af2.yaml index 2fdb10b21..b3063814f 100644 --- a/unpacked/Custom_Model Mystic f39af2.yaml +++ b/unpacked/Custom_Model Mystic f39af2.yaml @@ -47,9 +47,9 @@ Transform: posX: 66.58 posY: 1.41 posZ: 59.68 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.2 scaleY: 1.2 scaleZ: 1.2 diff --git a/unpacked/Custom_Model Neutral 2eee3b.ttslua b/unpacked/Custom_Model Neutral 2eee3b.ttslua index 19ea06020..976c016ee 100644 --- a/unpacked/Custom_Model Neutral 2eee3b.ttslua +++ b/unpacked/Custom_Model Neutral 2eee3b.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/ClassCardContainer") +end) +__bundle_register("playercards/ClassCardContainer", function(require, _LOADED, __bundle_register, __bundle_modules) -- Class card bag implementation. Mimics the behavior of the previous SCED -- card memory bags, but spawns cards from the All Cards Bag instead. -- @@ -268,4 +315,6 @@ end function div(a,b) return (a - a % b) / b -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model Neutral 2eee3b.yaml b/unpacked/Custom_Model Neutral 2eee3b.yaml index 375384bf8..19b2f3256 100644 --- a/unpacked/Custom_Model Neutral 2eee3b.yaml +++ b/unpacked/Custom_Model Neutral 2eee3b.yaml @@ -47,9 +47,9 @@ Transform: posX: 66.59 posY: 1.41 posZ: 49.02 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.2 scaleY: 1.2 scaleZ: 1.2 diff --git a/unpacked/Custom_Model Neutral 9559e6.ttslua b/unpacked/Custom_Model Neutral 9559e6.ttslua index 19ea06020..2ec9606c1 100644 --- a/unpacked/Custom_Model Neutral 9559e6.ttslua +++ b/unpacked/Custom_Model Neutral 9559e6.ttslua @@ -1,3 +1,47 @@ +-- 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/ClassCardContainer", function(require, _LOADED, __bundle_register, __bundle_modules) -- Class card bag implementation. Mimics the behavior of the previous SCED -- card memory bags, but spawns cards from the All Cards Bag instead. -- @@ -268,4 +312,9 @@ end function div(a,b) return (a - a % b) / b -end \ No newline at end of file +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/ClassCardContainer") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model Neutral 9559e6.yaml b/unpacked/Custom_Model Neutral 9559e6.yaml index 2f5925b07..cab9c7df9 100644 --- a/unpacked/Custom_Model Neutral 9559e6.yaml +++ b/unpacked/Custom_Model Neutral 9559e6.yaml @@ -47,9 +47,9 @@ Transform: posX: 66.31 posY: 1.41 posZ: -90.84 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.2 scaleY: 1.2 scaleZ: 1.2 diff --git a/unpacked/Custom_Model Promo Investigators 5fe24e.ttslua b/unpacked/Custom_Model Promo Investigators 5fe24e.ttslua index 92fe71b3b..f122c50de 100644 --- a/unpacked/Custom_Model Promo Investigators 5fe24e.ttslua +++ b/unpacked/Custom_Model Promo Investigators 5fe24e.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model Promo Investigators 5fe24e.yaml b/unpacked/Custom_Model Promo Investigators 5fe24e.yaml index 2893df7be..ac4ff76bb 100644 --- a/unpacked/Custom_Model Promo Investigators 5fe24e.yaml +++ b/unpacked/Custom_Model Promo Investigators 5fe24e.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -46,11 +46,11 @@ Sticky: true Tooltip: true Transform: posX: -33.33 - posY: 1.29 + posY: 1.3 posZ: -80.0 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.5 scaleY: 0.14 scaleZ: 0.5 diff --git a/unpacked/Custom_Model Return to The Circle Undone 757324.ttslua b/unpacked/Custom_Model Return to The Circle Undone 757324.ttslua index 0690d151a..130f277c0 100644 --- a/unpacked/Custom_Model Return to The Circle Undone 757324.ttslua +++ b/unpacked/Custom_Model Return to The Circle Undone 757324.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model Return to The Circle Undone 757324.yaml b/unpacked/Custom_Model Return to The Circle Undone 757324.yaml index 6dd50fad4..4968e03ac 100644 --- a/unpacked/Custom_Model Return to The Circle Undone 757324.yaml +++ b/unpacked/Custom_Model Return to The Circle Undone 757324.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 - g: 0.996078432 + g: 0.99608 r: 1.0 CustomMesh: CastShadows: true @@ -46,11 +46,11 @@ Sticky: true Tooltip: true Transform: posX: 66.91 - posY: 1.75 + posY: 1.87 posZ: -27.91 - rotX: 359.92 - rotY: 269.99 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.0 scaleY: 0.11 scaleZ: 1.69 diff --git a/unpacked/Custom_Model Return to The Dunwich Legacy ce9130.ttslua b/unpacked/Custom_Model Return to The Dunwich Legacy ce9130.ttslua index 0690d151a..130f277c0 100644 --- a/unpacked/Custom_Model Return to The Dunwich Legacy ce9130.ttslua +++ b/unpacked/Custom_Model Return to The Dunwich Legacy ce9130.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model Return to The Dunwich Legacy ce9130.yaml b/unpacked/Custom_Model Return to The Dunwich Legacy ce9130.yaml index a9f960e1b..ada10b358 100644 --- a/unpacked/Custom_Model Return to The Dunwich Legacy ce9130.yaml +++ b/unpacked/Custom_Model Return to The Dunwich Legacy ce9130.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 - g: 0.996078432 + g: 0.99608 r: 1.0 CustomMesh: CastShadows: true @@ -46,11 +46,11 @@ Sticky: true Tooltip: true Transform: posX: 66.99 - posY: 1.76 + posY: 1.87 posZ: 14.5 - rotX: 359.92 - rotY: 269.98 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.0 scaleY: 0.11 scaleZ: 1.69 diff --git a/unpacked/Custom_Model Return to The Forgotten Age 479ff3.ttslua b/unpacked/Custom_Model Return to The Forgotten Age 479ff3.ttslua index 0690d151a..130f277c0 100644 --- a/unpacked/Custom_Model Return to The Forgotten Age 479ff3.ttslua +++ b/unpacked/Custom_Model Return to The Forgotten Age 479ff3.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model Return to The Forgotten Age 479ff3.yaml b/unpacked/Custom_Model Return to The Forgotten Age 479ff3.yaml index 757957869..581ba068c 100644 --- a/unpacked/Custom_Model Return to The Forgotten Age 479ff3.yaml +++ b/unpacked/Custom_Model Return to The Forgotten Age 479ff3.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 - g: 0.996078432 + g: 0.99608 r: 1.0 CustomMesh: CastShadows: true @@ -46,11 +46,11 @@ Sticky: true Tooltip: true Transform: posX: 66.99 - posY: 1.75 + posY: 1.87 posZ: -14.34 - rotX: 359.92 - rotY: 269.98 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.0 scaleY: 0.11 scaleZ: 1.69 diff --git a/unpacked/Custom_Model Return to The Path to Carcosa e9889a.ttslua b/unpacked/Custom_Model Return to The Path to Carcosa e9889a.ttslua index 0690d151a..130f277c0 100644 --- a/unpacked/Custom_Model Return to The Path to Carcosa e9889a.ttslua +++ b/unpacked/Custom_Model Return to The Path to Carcosa e9889a.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model Return to The Path to Carcosa e9889a.yaml b/unpacked/Custom_Model Return to The Path to Carcosa e9889a.yaml index 4e8323eb5..644a07cd5 100644 --- a/unpacked/Custom_Model Return to The Path to Carcosa e9889a.yaml +++ b/unpacked/Custom_Model Return to The Path to Carcosa e9889a.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.270588249 + a: 0.27059 b: 1.0 - g: 0.996078432 + g: 0.99608 r: 1.0 CustomMesh: CastShadows: true @@ -46,11 +46,11 @@ Sticky: true Tooltip: true Transform: posX: 66.99 - posY: 1.76 + posY: 1.87 posZ: 0.14 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.0 scaleY: 0.11 scaleZ: 1.69 diff --git a/unpacked/Custom_Model Return to the Night of the Zealot 56270d.ttslua b/unpacked/Custom_Model Return to the Night of the Zealot 56270d.ttslua index 0690d151a..130f277c0 100644 --- a/unpacked/Custom_Model Return to the Night of the Zealot 56270d.ttslua +++ b/unpacked/Custom_Model Return to the Night of the Zealot 56270d.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model Return to the Night of the Zealot 56270d.yaml b/unpacked/Custom_Model Return to the Night of the Zealot 56270d.yaml index e1ee85723..6e9d32464 100644 --- a/unpacked/Custom_Model Return to the Night of the Zealot 56270d.yaml +++ b/unpacked/Custom_Model Return to the Night of the Zealot 56270d.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 - g: 0.996078432 + g: 0.99608 r: 1.0 CustomMesh: CastShadows: true @@ -46,11 +46,11 @@ Sticky: true Tooltip: true Transform: posX: 66.98 - posY: 1.77 + posY: 1.87 posZ: 28.53 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 2.0 scaleY: 0.11 scaleZ: 1.69 diff --git a/unpacked/Custom_Model Rogue 449091.ttslua b/unpacked/Custom_Model Rogue 449091.ttslua index 19ea06020..976c016ee 100644 --- a/unpacked/Custom_Model Rogue 449091.ttslua +++ b/unpacked/Custom_Model Rogue 449091.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/ClassCardContainer") +end) +__bundle_register("playercards/ClassCardContainer", function(require, _LOADED, __bundle_register, __bundle_modules) -- Class card bag implementation. Mimics the behavior of the previous SCED -- card memory bags, but spawns cards from the All Cards Bag instead. -- @@ -268,4 +315,6 @@ end function div(a,b) return (a - a % b) / b -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model Rogue 449091.yaml b/unpacked/Custom_Model Rogue 449091.yaml index f9e9025f6..4fab95b00 100644 --- a/unpacked/Custom_Model Rogue 449091.yaml +++ b/unpacked/Custom_Model Rogue 449091.yaml @@ -47,9 +47,9 @@ Transform: posX: 66.31 posY: 1.41 posZ: -74.79 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.2 scaleY: 1.2 scaleZ: 1.2 diff --git a/unpacked/Custom_Model Rogue 7e47e1.ttslua b/unpacked/Custom_Model Rogue 7e47e1.ttslua index 19ea06020..976c016ee 100644 --- a/unpacked/Custom_Model Rogue 7e47e1.ttslua +++ b/unpacked/Custom_Model Rogue 7e47e1.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/ClassCardContainer") +end) +__bundle_register("playercards/ClassCardContainer", function(require, _LOADED, __bundle_register, __bundle_modules) -- Class card bag implementation. Mimics the behavior of the previous SCED -- card memory bags, but spawns cards from the All Cards Bag instead. -- @@ -268,4 +315,6 @@ end function div(a,b) return (a - a % b) / b -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model Rogue 7e47e1.yaml b/unpacked/Custom_Model Rogue 7e47e1.yaml index 43426f731..0184be05a 100644 --- a/unpacked/Custom_Model Rogue 7e47e1.yaml +++ b/unpacked/Custom_Model Rogue 7e47e1.yaml @@ -47,9 +47,9 @@ Transform: posX: 66.59 posY: 1.41 posZ: 65.08 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.2 scaleY: 1.2 scaleZ: 1.2 diff --git a/unpacked/Custom_Model Seeker 7b7648.ttslua b/unpacked/Custom_Model Seeker 7b7648.ttslua index 19ea06020..976c016ee 100644 --- a/unpacked/Custom_Model Seeker 7b7648.ttslua +++ b/unpacked/Custom_Model Seeker 7b7648.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/ClassCardContainer") +end) +__bundle_register("playercards/ClassCardContainer", function(require, _LOADED, __bundle_register, __bundle_modules) -- Class card bag implementation. Mimics the behavior of the previous SCED -- card memory bags, but spawns cards from the All Cards Bag instead. -- @@ -268,4 +315,6 @@ end function div(a,b) return (a - a % b) / b -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model Seeker 7b7648.yaml b/unpacked/Custom_Model Seeker 7b7648.yaml index ad6c16fb1..c6dc17741 100644 --- a/unpacked/Custom_Model Seeker 7b7648.yaml +++ b/unpacked/Custom_Model Seeker 7b7648.yaml @@ -47,9 +47,9 @@ Transform: posX: 66.3 posY: 1.41 posZ: -69.36 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.2 scaleY: 1.2 scaleZ: 1.2 diff --git a/unpacked/Custom_Model Seeker b2f753.ttslua b/unpacked/Custom_Model Seeker b2f753.ttslua index 19ea06020..976c016ee 100644 --- a/unpacked/Custom_Model Seeker b2f753.ttslua +++ b/unpacked/Custom_Model Seeker b2f753.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/ClassCardContainer") +end) +__bundle_register("playercards/ClassCardContainer", function(require, _LOADED, __bundle_register, __bundle_modules) -- Class card bag implementation. Mimics the behavior of the previous SCED -- card memory bags, but spawns cards from the All Cards Bag instead. -- @@ -268,4 +315,6 @@ end function div(a,b) return (a - a % b) / b -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model Seeker b2f753.yaml b/unpacked/Custom_Model Seeker b2f753.yaml index 3f59135c4..b8d05c655 100644 --- a/unpacked/Custom_Model Seeker b2f753.yaml +++ b/unpacked/Custom_Model Seeker b2f753.yaml @@ -47,9 +47,9 @@ Transform: posX: 66.58 posY: 1.41 posZ: 70.51 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.2 scaleY: 1.2 scaleZ: 1.2 diff --git a/unpacked/Custom_Model Starter Deck Investigators 35fb9c.ttslua b/unpacked/Custom_Model Starter Deck Investigators 35fb9c.ttslua index 92fe71b3b..f122c50de 100644 --- a/unpacked/Custom_Model Starter Deck Investigators 35fb9c.ttslua +++ b/unpacked/Custom_Model Starter Deck Investigators 35fb9c.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model Starter Deck Investigators 35fb9c.yaml b/unpacked/Custom_Model Starter Deck Investigators 35fb9c.yaml index 1fe34699e..9e1fe4d16 100644 --- a/unpacked/Custom_Model Starter Deck Investigators 35fb9c.yaml +++ b/unpacked/Custom_Model Starter Deck Investigators 35fb9c.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -46,11 +46,11 @@ Sticky: true Tooltip: true Transform: posX: -33.33 - posY: 1.29 + posY: 1.3 posZ: -73.23 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.5 scaleY: 0.14 scaleZ: 0.5 diff --git a/unpacked/Custom_Model Survivor 52253b.ttslua b/unpacked/Custom_Model Survivor 52253b.ttslua index 19ea06020..976c016ee 100644 --- a/unpacked/Custom_Model Survivor 52253b.ttslua +++ b/unpacked/Custom_Model Survivor 52253b.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/ClassCardContainer") +end) +__bundle_register("playercards/ClassCardContainer", function(require, _LOADED, __bundle_register, __bundle_modules) -- Class card bag implementation. Mimics the behavior of the previous SCED -- card memory bags, but spawns cards from the All Cards Bag instead. -- @@ -268,4 +315,6 @@ end function div(a,b) return (a - a % b) / b -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model Survivor 52253b.yaml b/unpacked/Custom_Model Survivor 52253b.yaml index 7ca760ca3..9dc82e12b 100644 --- a/unpacked/Custom_Model Survivor 52253b.yaml +++ b/unpacked/Custom_Model Survivor 52253b.yaml @@ -47,9 +47,9 @@ Transform: posX: 66.3 posY: 1.41 posZ: -85.51 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.2 scaleY: 1.2 scaleZ: 1.2 diff --git a/unpacked/Custom_Model Survivor 93fc45.ttslua b/unpacked/Custom_Model Survivor 93fc45.ttslua index 19ea06020..976c016ee 100644 --- a/unpacked/Custom_Model Survivor 93fc45.ttslua +++ b/unpacked/Custom_Model Survivor 93fc45.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/ClassCardContainer") +end) +__bundle_register("playercards/ClassCardContainer", function(require, _LOADED, __bundle_register, __bundle_modules) -- Class card bag implementation. Mimics the behavior of the previous SCED -- card memory bags, but spawns cards from the All Cards Bag instead. -- @@ -268,4 +315,6 @@ end function div(a,b) return (a - a % b) / b -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model Survivor 93fc45.yaml b/unpacked/Custom_Model Survivor 93fc45.yaml index bfe626362..d0eaa5e5e 100644 --- a/unpacked/Custom_Model Survivor 93fc45.yaml +++ b/unpacked/Custom_Model Survivor 93fc45.yaml @@ -47,9 +47,9 @@ Transform: posX: 66.58 posY: 1.41 posZ: 54.35 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.2 scaleY: 1.2 scaleZ: 1.2 diff --git a/unpacked/Custom_Model The Circle Undone 0dcbe8.ttslua b/unpacked/Custom_Model The Circle Undone 0dcbe8.ttslua index 92fe71b3b..f122c50de 100644 --- a/unpacked/Custom_Model The Circle Undone 0dcbe8.ttslua +++ b/unpacked/Custom_Model The Circle Undone 0dcbe8.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model The Circle Undone 0dcbe8.yaml b/unpacked/Custom_Model The Circle Undone 0dcbe8.yaml index 747caf0b8..6f8b2d899 100644 --- a/unpacked/Custom_Model The Circle Undone 0dcbe8.yaml +++ b/unpacked/Custom_Model The Circle Undone 0dcbe8.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -48,9 +48,9 @@ Transform: posX: -9.77 posY: 1.3 posZ: -80.0 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.5 scaleY: 0.14 scaleZ: 0.5 diff --git a/unpacked/Custom_Model The Circle Undone 63e097.ttslua b/unpacked/Custom_Model The Circle Undone 63e097.ttslua index 3edb6a725..d25f21689 100644 --- a/unpacked/Custom_Model The Circle Undone 63e097.ttslua +++ b/unpacked/Custom_Model The Circle Undone 63e097.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model The Circle Undone 63e097.yaml b/unpacked/Custom_Model The Circle Undone 63e097.yaml index d22e30780..b135d7ef3 100644 --- a/unpacked/Custom_Model The Circle Undone 63e097.yaml +++ b/unpacked/Custom_Model The Circle Undone 63e097.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -46,11 +46,11 @@ Sticky: true Tooltip: true Transform: posX: 58.45 - posY: 1.4 + posY: 1.49 posZ: -27.88 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 0.14 scaleZ: 1.0 diff --git a/unpacked/Custom_Model The Dream-Eaters a16a1a.ttslua b/unpacked/Custom_Model The Dream-Eaters a16a1a.ttslua index 3edb6a725..d25f21689 100644 --- a/unpacked/Custom_Model The Dream-Eaters a16a1a.ttslua +++ b/unpacked/Custom_Model The Dream-Eaters a16a1a.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model The Dream-Eaters a16a1a.yaml b/unpacked/Custom_Model The Dream-Eaters a16a1a.yaml index 70b34ad1e..72ce70ad4 100644 --- a/unpacked/Custom_Model The Dream-Eaters a16a1a.yaml +++ b/unpacked/Custom_Model The Dream-Eaters a16a1a.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -45,12 +45,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 40.04 - posY: 1.44 + posX: 45.16 + posY: 1.49 posZ: 28.52 - rotX: 359.92 - rotY: 269.97 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 0.14 scaleZ: 1.0 diff --git a/unpacked/Custom_Model The Dream-Eaters a34f34.ttslua b/unpacked/Custom_Model The Dream-Eaters a34f34.ttslua index 92fe71b3b..f122c50de 100644 --- a/unpacked/Custom_Model The Dream-Eaters a34f34.ttslua +++ b/unpacked/Custom_Model The Dream-Eaters a34f34.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model The Dream-Eaters a34f34.yaml b/unpacked/Custom_Model The Dream-Eaters a34f34.yaml index 301452754..961db3538 100644 --- a/unpacked/Custom_Model The Dream-Eaters a34f34.yaml +++ b/unpacked/Custom_Model The Dream-Eaters a34f34.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -48,9 +48,9 @@ Transform: posX: -9.76 posY: 1.3 posZ: -86.78 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.5 scaleY: 0.14 scaleZ: 0.5 diff --git a/unpacked/Custom_Model The Dunwich Legacy 2898f6.ttslua b/unpacked/Custom_Model The Dunwich Legacy 2898f6.ttslua index 3edb6a725..d25f21689 100644 --- a/unpacked/Custom_Model The Dunwich Legacy 2898f6.ttslua +++ b/unpacked/Custom_Model The Dunwich Legacy 2898f6.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model The Dunwich Legacy 2898f6.yaml b/unpacked/Custom_Model The Dunwich Legacy 2898f6.yaml index 85bbb77d1..61abff236 100644 --- a/unpacked/Custom_Model The Dunwich Legacy 2898f6.yaml +++ b/unpacked/Custom_Model The Dunwich Legacy 2898f6.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -46,11 +46,11 @@ Sticky: true Tooltip: true Transform: posX: 58.55 - posY: 1.4 + posY: 1.48 posZ: 14.46 - rotX: 359.92 - rotY: 269.78 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 0.14 scaleZ: 1.0 diff --git a/unpacked/Custom_Model The Dunwich Legacy 5889dd.ttslua b/unpacked/Custom_Model The Dunwich Legacy 5889dd.ttslua index 92fe71b3b..f122c50de 100644 --- a/unpacked/Custom_Model The Dunwich Legacy 5889dd.ttslua +++ b/unpacked/Custom_Model The Dunwich Legacy 5889dd.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model The Dunwich Legacy 5889dd.yaml b/unpacked/Custom_Model The Dunwich Legacy 5889dd.yaml index 60d0a968d..8b8f657a3 100644 --- a/unpacked/Custom_Model The Dunwich Legacy 5889dd.yaml +++ b/unpacked/Custom_Model The Dunwich Legacy 5889dd.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -48,9 +48,9 @@ Transform: posX: -9.77 posY: 1.3 posZ: -60.04 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.5 scaleY: 0.14 scaleZ: 0.5 diff --git a/unpacked/Custom_Model The Forgotten Age 03b888.ttslua b/unpacked/Custom_Model The Forgotten Age 03b888.ttslua index 92fe71b3b..f122c50de 100644 --- a/unpacked/Custom_Model The Forgotten Age 03b888.ttslua +++ b/unpacked/Custom_Model The Forgotten Age 03b888.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model The Forgotten Age 03b888.yaml b/unpacked/Custom_Model The Forgotten Age 03b888.yaml index 8e613a359..94e217246 100644 --- a/unpacked/Custom_Model The Forgotten Age 03b888.yaml +++ b/unpacked/Custom_Model The Forgotten Age 03b888.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -48,9 +48,9 @@ Transform: posX: -9.77 posY: 1.3 posZ: -73.23 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.5 scaleY: 0.14 scaleZ: 0.5 diff --git a/unpacked/Custom_Model The Forgotten Age 0bcf19.ttslua b/unpacked/Custom_Model The Forgotten Age 0bcf19.ttslua index 3edb6a725..d25f21689 100644 --- a/unpacked/Custom_Model The Forgotten Age 0bcf19.ttslua +++ b/unpacked/Custom_Model The Forgotten Age 0bcf19.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model The Forgotten Age 0bcf19.yaml b/unpacked/Custom_Model The Forgotten Age 0bcf19.yaml index b6d507a19..36e4dabe4 100644 --- a/unpacked/Custom_Model The Forgotten Age 0bcf19.yaml +++ b/unpacked/Custom_Model The Forgotten Age 0bcf19.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -46,11 +46,11 @@ Sticky: true Tooltip: true Transform: posX: 58.5 - posY: 1.4 + posY: 1.49 posZ: -14.35 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 0.14 scaleZ: 1.0 diff --git a/unpacked/Custom_Model The Innsmouth Conspiracy 10bd18.ttslua b/unpacked/Custom_Model The Innsmouth Conspiracy 10bd18.ttslua index 92fe71b3b..f122c50de 100644 --- a/unpacked/Custom_Model The Innsmouth Conspiracy 10bd18.ttslua +++ b/unpacked/Custom_Model The Innsmouth Conspiracy 10bd18.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model The Innsmouth Conspiracy 10bd18.yaml b/unpacked/Custom_Model The Innsmouth Conspiracy 10bd18.yaml index 12983d963..68f4a102e 100644 --- a/unpacked/Custom_Model The Innsmouth Conspiracy 10bd18.yaml +++ b/unpacked/Custom_Model The Innsmouth Conspiracy 10bd18.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -48,9 +48,9 @@ Transform: posX: -33.33 posY: 1.3 posZ: -53.92 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.5 scaleY: 0.14 scaleZ: 0.5 diff --git a/unpacked/Custom_Model The Innsmouth Conspiracy 465aab.ttslua b/unpacked/Custom_Model The Innsmouth Conspiracy 465aab.ttslua index 3edb6a725..d25f21689 100644 --- a/unpacked/Custom_Model The Innsmouth Conspiracy 465aab.ttslua +++ b/unpacked/Custom_Model The Innsmouth Conspiracy 465aab.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model The Innsmouth Conspiracy 465aab.yaml b/unpacked/Custom_Model The Innsmouth Conspiracy 465aab.yaml index c92966221..4fe5870ab 100644 --- a/unpacked/Custom_Model The Innsmouth Conspiracy 465aab.yaml +++ b/unpacked/Custom_Model The Innsmouth Conspiracy 465aab.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -45,12 +45,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 40.21 - posY: 1.43 + posX: 45.34 + posY: 1.49 posZ: 14.5 - rotX: 359.92 - rotY: 269.99 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 0.14 scaleZ: 1.0 diff --git a/unpacked/Custom_Model The Path to Carcosa 899c3a.ttslua b/unpacked/Custom_Model The Path to Carcosa 899c3a.ttslua index 92fe71b3b..f122c50de 100644 --- a/unpacked/Custom_Model The Path to Carcosa 899c3a.ttslua +++ b/unpacked/Custom_Model The Path to Carcosa 899c3a.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model The Path to Carcosa 899c3a.yaml b/unpacked/Custom_Model The Path to Carcosa 899c3a.yaml index 406a7ae59..0ff5df8ce 100644 --- a/unpacked/Custom_Model The Path to Carcosa 899c3a.yaml +++ b/unpacked/Custom_Model The Path to Carcosa 899c3a.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -48,9 +48,9 @@ Transform: posX: -9.77 posY: 1.3 posZ: -66.54 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.5 scaleY: 0.14 scaleZ: 0.5 diff --git a/unpacked/Custom_Model The Path to Carcosa aca04c.ttslua b/unpacked/Custom_Model The Path to Carcosa aca04c.ttslua index 3edb6a725..d25f21689 100644 --- a/unpacked/Custom_Model The Path to Carcosa aca04c.ttslua +++ b/unpacked/Custom_Model The Path to Carcosa aca04c.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model The Path to Carcosa aca04c.yaml b/unpacked/Custom_Model The Path to Carcosa aca04c.yaml index ee76fc10d..b53612332 100644 --- a/unpacked/Custom_Model The Path to Carcosa aca04c.yaml +++ b/unpacked/Custom_Model The Path to Carcosa aca04c.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -46,11 +46,11 @@ Sticky: true Tooltip: true Transform: posX: 58.51 - posY: 1.4 + posY: 1.48 posZ: 0.12 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 0.14 scaleZ: 1.0 diff --git a/unpacked/Custom_Model The Scarlet Keys 300fcc.ttslua b/unpacked/Custom_Model The Scarlet Keys 300fcc.ttslua new file mode 100644 index 000000000..d25f21689 --- /dev/null +++ b/unpacked/Custom_Model The Scarlet Keys 300fcc.ttslua @@ -0,0 +1,22 @@ +function onload(saved_data) + createDownloadButton() +end + + +--Beginning Setup + + +--Make Download button +function createDownloadButton() + self.createButton({ + label="Download", click_function="buttonClick_download", function_owner=self, + position={0,0.1,6}, rotation={0,0,0}, height=500, width=1600, + font_size=350, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by download button, +function buttonClick_download() + local params = { url = self.getGMNotes(), replace = self.guid } + Global.call('placeholder_download', params) +end \ No newline at end of file diff --git a/unpacked/Custom_Model The Scarlet Keys 300fcc.yaml b/unpacked/Custom_Model The Scarlet Keys 300fcc.yaml new file mode 100644 index 000000000..83085a90f --- /dev/null +++ b/unpacked/Custom_Model The Scarlet Keys 300fcc.yaml @@ -0,0 +1,58 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + a: 0.27451 + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_COL.obj + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1938266093887658515/82415531F346C35CD4DB13C4CF6913E11B2C1651/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj + NormalURL: '' + TypeIndex: 0 +Description: '' +DragSelectable: true +GMNotes: campaigns/the_scarlet_keys.json +GUID: 300fcc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model The Scarlet Keys 300fcc.ttslua' +LuaScriptState: '{"ml":{"5a6ca1":{"lock":true,"pos":{"x":2.75125026702881,"y":1.27430498600006,"z":71.3502731323242},"rot":{"x":0.0650593191385269,"y":270.014068603516,"z":1.72222244145814E-05}},"6b4f22":{"lock":false,"pos":{"x":-1.46599805355072,"y":1.57899904251099,"z":-26.9300003051758},"rot":{"x":-2.3202953514101E-07,"y":269.999633789063,"z":-9.45610949543152E-08}},"7d88fc":{"lock":false,"pos":{"x":13.0799589157104,"y":1.38603448867798,"z":72.8025131225586},"rot":{"x":359.934814453125,"y":89.9913101196289,"z":5.45348193554673E-05}},"7f515b":{"lock":false,"pos":{"x":12.25,"y":1.48149907588959,"z":27.9860000610352},"rot":{"x":2.676086907627E-08,"y":269.999938964844,"z":-2.29366065696013E-07}},"806c38":{"lock":false,"pos":{"x":12.2490310668945,"y":1.48149907588959,"z":-28.0143337249756},"rot":{"x":2.39074164909425E-08,"y":270.065673828125,"z":-7.62032925649692E-08}},"897309":{"lock":false,"pos":{"x":12.25,"y":1.48149919509888,"z":3.98600006103516},"rot":{"x":-3.67395841749385E-07,"y":270.022552490234,"z":4.67901060119402E-07}},"ad0e70":{"lock":false,"pos":{"x":3.87701344490051,"y":1.45653510093689,"z":-35.9665451049805},"rot":{"x":2.0213208244968E-06,"y":90.0000381469727,"z":-5.54928192286752E-07}},"bcde29":{"lock":false,"pos":{"x":12.2519931793213,"y":1.48149907588959,"z":11.9860334396362},"rot":{"x":3.41768284783939E-08,"y":270.031066894531,"z":-6.93897135306543E-08}},"bfdc5d":{"lock":false,"pos":{"x":12.2489471435547,"y":1.48149907588959,"z":35.9851913452148},"rot":{"x":-1.60663180537313E-08,"y":269.996459960938,"z":8.67960459061123E-09}},"c9578f":{"lock":false,"pos":{"x":12.25,"y":1.48149907588959,"z":-36.0139999389648},"rot":{"x":-1.36203439637939E-08,"y":270.024597167969,"z":-1.31557072791111E-07}},"c98a8a":{"lock":false,"pos":{"x":12.2495489120483,"y":1.4814989566803,"z":-20.0142040252686},"rot":{"x":2.79536127578695E-08,"y":270.033264160156,"z":-1.05192043520219E-07}},"caee08":{"lock":false,"pos":{"x":12.2496786117554,"y":1.48149907588959,"z":-12.0141382217407},"rot":{"x":2.04312726737044E-08,"y":270.02490234375,"z":1.13150697700348E-08}},"d7a48c":{"lock":false,"pos":{"x":12.25,"y":1.48149907588959,"z":-4.01399993896484},"rot":{"x":-1.75013203929097E-09,"y":269.977661132813,"z":1.66571552995265E-07}},"dec1c6":{"lock":false,"pos":{"x":0.255993455648422,"y":1.48149931430817,"z":28.7803783416748},"rot":{"x":1.91669698779151E-07,"y":270.009429931641,"z":-7.73738833004245E-08}},"f1bddd":{"lock":true,"pos":{"x":-6.20291376113892,"y":1.36413764953613,"z":62.0012741088867},"rot":{"x":359.934844970703,"y":90.0040512084961,"z":2.78743918897817E-05}},"fffd49":{"lock":false,"pos":{"x":12.2499771118164,"y":1.48149907588959,"z":19.9860095977783},"rot":{"x":2.49150797770881E-08,"y":269.994537353516,"z":-1.86124644585561E-08}}}}' +MeasureMovement: false +Name: Custom_Model +Nickname: The Scarlet Keys +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 45.41 + posY: 1.49 + posZ: -14.35 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 0.14 + scaleZ: 1.0 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model The Scarlet Keys a4fd1b.ttslua b/unpacked/Custom_Model The Scarlet Keys a4fd1b.ttslua index 92fe71b3b..f122c50de 100644 --- a/unpacked/Custom_Model The Scarlet Keys a4fd1b.ttslua +++ b/unpacked/Custom_Model The Scarlet Keys a4fd1b.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model The Scarlet Keys a4fd1b.yaml b/unpacked/Custom_Model The Scarlet Keys a4fd1b.yaml index f81414afd..60e76f821 100644 --- a/unpacked/Custom_Model The Scarlet Keys a4fd1b.yaml +++ b/unpacked/Custom_Model The Scarlet Keys a4fd1b.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -46,11 +46,11 @@ Sticky: true Tooltip: true Transform: posX: -33.33 - posY: 1.29 + posY: 1.3 posZ: -66.54 - rotX: 0.02 - rotY: 269.91 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.5 scaleY: 0.14 scaleZ: 0.5 diff --git a/unpacked/Custom_Model Upgrade Sheets c3c1a7.ttslua b/unpacked/Custom_Model Upgrade Sheets c3c1a7.ttslua new file mode 100644 index 000000000..04fc38006 --- /dev/null +++ b/unpacked/Custom_Model Upgrade Sheets c3c1a7.ttslua @@ -0,0 +1,556 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/spawnbag/UpgradeSheetBag") +end) +__bundle_register("playercards/spawnbag/UpgradeSheetBag", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/spawnbag/SpawnBag") + +local UPGRADES_SPEC = { + name = "UpgradeSheets", + cards = { + "09040-c", -- Alchemical Distillation + "09023-c", -- Custom Modifications + "09059-c", -- Damning Testimony + "09041-c", -- Emperical Hypothesis + "09060-c", -- Friends in Low Places + "09101-c", -- Grizzled + "09061-c", -- Honed Instinct + "09021-c", -- Hunter's Armor + "09119-c", -- Hyperphysical Shotcaster + "09079-c", -- Living Ink + "09100-c", -- Makeshift Trap + "09099-c", -- Pocket Multi Tool + "09081-c", -- Power Word + "09022-c", -- Runic Axe + "09080-c", -- Summoned Servitor + "09042-c", -- Raven's Quill + }, + globalPos = { x = -42.71, y = 1.5, z = 85.61 }, + rotation = { x = 0, y = 270, z = 0 }, + spread = true, +} +local SERVITOR_SPEC = { + name = "SummonedServitorMini", + cards = { + "09080-m", + }, + globalPos = { x = -45.84, y = 1.5, z = 53.41 }, + rotation = { x = 0, y = 270, z = 0 }, +} + +function onLoad(savedData) + if (savedData ~= nil) then + local saveState = JSON.decode(savedData) + if (saveState.spawnBagState ~= nil) then + SpawnBag.loadFromSave(saveState.spawnBagState) + end + end + createActionButtons() +end + +function onSave() + local saveState = { + spawnBagState = SpawnBag.getStateForSave(), + } + return JSON.encode(saveState) +end + +function createActionButtons() + self.createButton({ + label="Place", + click_function="buttonClick_place", + function_owner=self, + position={1,0.1,2.1}, + rotation={0,0,0}, + height=350, + width=800, + font_size=250, + color={0,0,0}, + font_color={1,1,1} + }) + self.createButton({ + label="Recall", + click_function="buttonClick_recall", + function_owner=self, + position={-1,0.1,2.1}, + rotation={0,0,0}, + height=350, + width=800, + font_size=250, + color={0,0,0}, + font_color={1,1,1} + }) +end + +function buttonClick_place() + SpawnBag.spawn(UPGRADES_SPEC) + SpawnBag.spawn(SERVITOR_SPEC) +end + +-- Recalls objects to bag from table +function buttonClick_recall() + SpawnBag.recall() +end +end) +__bundle_register("playercards/spawnbag/SpawnBag", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/PlayerCardSpawner") + +-- Allows spawning of defined lists of cards which will be created from the template in the All +-- Player Cards bag. SpawnBag.spawn will create objects based on a table definition, while +-- SpawnBag.recall will clean them all up. Recall will be limited to a small area around the +-- spawned objects. Objects moved out of this area will not be cleaned up. +-- +-- SpawnSpec: Spawning requires a spawn specification with the following structure: +-- { +-- name: Name of this spawn content, used for internal tracking. Multiple specs can be spawned, +-- but each requires a separate name +-- cards: A list of card IDs to be spawned +-- globalPos: Where the spawned objects should be placed, in global coordinates. This should be +-- a valid Vector with x, y, and z defined, e.g. { x = 5, y = 1, z = 15 } +-- rotation: Rotation for the spawned objects. X=180 should be used for face down items. As with +-- globalPos, this should be a valid Vector with x, y, and z defined +-- spread: Optional. If present and true, cards will be spawned next to each other in a spread +-- moving to the right. globalPos will define the location of the first card, each after that +-- will be moved a predefined distance +-- } +-- See BondedBag.ttslua for an example + +SpawnBag = { } + +-- To assist debugging, will draw a box around the recall zone when it's set up +local SHOW_RECALL_ZONE = false + +local ALL_CARDS_GUID = "15bb07" + +-- Distance to expand the recall zone around any added object. +local RECALL_BUFFER_X = 0.9 +local RECALL_BUFFER_Z = 0.5 + +-- In order to mimic the behavior of the previous memory buttons we use a temporary bag when +-- recalling objects. This bag is tiny and transparent, and will be placed at the same location as +-- this object. Once all placed cards are recalled bag to this bag, it will be destroyed +local RECALL_BAG = { + Name = "Bag", + Transform = { + scaleX = 0.01, + scaleY = 0.01, + scaleZ = 0.01, + }, + ColorDiffuse = { + r = 0, + g = 0, + b = 0, + a = 0, + }, + Locked = true, + Grid = true, + Snap = false, + Tooltip = false, +} + +-- Tracks what has been placed by this "bag" so they can be recalled +local placedSpecs = { } +local placedObjectGuids = { } +local recallZone = nil + +-- Loads a table of saved state, extracted during the parent object's onLoad +SpawnBag.loadFromSave = function(saveTable) + placedSpecs = saveTable.placed + placedObjectGuids = saveTable.placedObjects + recallZone = saveTable.recall +end + +-- Generates a table of save state that can be included in the parent object's onSave +SpawnBag.getStateForSave = function() + return { + placed = placedSpecs, + placedObjects = placedObjectGuids, + recall = recallZone, + } +end + +-- Places the given spawnSpec on the table. See SpawnBag.ttslua header for spawnSpec table data and +-- examples +SpawnBag.spawn = function(spawnSpec) + -- Limit to one placement at a time + if (placedSpecs[spawnSpec.name]) then + return + end + if (spawnSpec == nil) then + -- TODO: error here + return + end + local cardsToSpawn = { } + local allCardsBag = getObjectFromGUID(ALL_CARDS_GUID) + for _, cardId in ipairs(spawnSpec.cards) do + local cardData = allCardsBag.call("getCardById", { id = cardId }) + if (cardData ~= nil) then + table.insert(cardsToSpawn, cardData) + else + -- TODO: error here + end + end + if (spawnSpec.spread) then + Spawner.spawnCardSpread(cardsToSpawn, spawnSpec.globalPos, spawnSpec.rotation, false, recordPlacedObject) + else + Spawner.spawnCards(cardsToSpawn, spawnSpec.globalPos, spawnSpec.rotation, false, recordPlacedObject) + end + placedSpecs[spawnSpec.name] = true +end + +-- Recalls all spawned objects to the bag, and clears the placedObjectGuids list +SpawnBag.recall = function() + local trash = spawnObjectData({data = RECALL_BAG, position = self.getPosition()}) + for guid, _ in pairs(placedObjectGuids) do + local obj = getObjectFromGUID(guid) + if (obj ~= nil) then + if (isInRecallZone(obj)) then + trash.putObject(obj) + end + placedObjectGuids[guid] = nil + end + end + + trash.destruct() + -- We've recalled everything we can, some cards may have been moved out of the + -- card area. Just reset at this point. + placedSpecs = { } + placedObjectGuids = { } + recallZone = nil +end + +-- Callback for when an object has been spawned. Tracks the object for later recall and updates the +-- recall zone. +function recordPlacedObject(spawned) + placedObjectGuids[spawned.getGUID()] = true + expandRecallZone(spawned) +end + +-- Expands the current recall zone based on the position of the given object. The recall zone will +-- be maintained as the bounding box of the extreme object positions, plus a small amount of buffer +function expandRecallZone(spawnedCard) + local pos = spawnedCard.getPosition() + if (recallZone == nil) then + -- First card out of the bag, initialize surrounding that + recallZone = { } + recallZone.upperLeft = { x = pos.x + RECALL_BUFFER_X, z = pos.z + RECALL_BUFFER_Z } + recallZone.lowerRight = { x = pos.x - RECALL_BUFFER_X, z = pos.z - RECALL_BUFFER_Z } + return + else + if (pos.x > recallZone.upperLeft.x) then + recallZone.upperLeft.x = pos.x + RECALL_BUFFER_X + end + if (pos.x < recallZone.lowerRight.x) then + recallZone.lowerRight.x = pos.x - RECALL_BUFFER_X + end + if (pos.z > recallZone.upperLeft.z) then + recallZone.upperLeft.z = pos.z + RECALL_BUFFER_Z + end + if (pos.z < recallZone.lowerRight.z) then + recallZone.lowerRight.z = pos.z - RECALL_BUFFER_Z + end + end + if (SHOW_RECALL_ZONE) then + local y = 1.5 + local thick = 0.05 + Global.setVectorLines({ + { + points = { {recallZone.upperLeft.x,y,recallZone.upperLeft.z}, {recallZone.upperLeft.x,y,recallZone.lowerRight.z} }, + color = {1,0,0}, + thickness = thick, + rotation = {0,0,0}, + }, + { + points = { {recallZone.upperLeft.x,y,recallZone.lowerRight.z}, {recallZone.lowerRight.x,y,recallZone.lowerRight.z} }, + color = {1,0,0}, + thickness = thick, + rotation = {0,0,0}, + }, + { + points = { {recallZone.lowerRight.x,y,recallZone.lowerRight.z}, {recallZone.lowerRight.x,y,recallZone.upperLeft.z} }, + color = {1,0,0}, + thickness = thick, + rotation = {0,0,0}, + }, + { + points = { {recallZone.lowerRight.x,y,recallZone.upperLeft.z}, {recallZone.upperLeft.x,y,recallZone.upperLeft.z} }, + color = {1,0,0}, + thickness = thick, + rotation = {0,0,0}, + }, + }) + end +end + +-- Checks to see if the given object is in the current recall zone. If there isn't a recall zone, +-- will return true so that everything can be easily cleaned up. +function isInRecallZone(obj) + if (recallZone == nil) then + return true + end + local pos = obj.getPosition() + return (pos.x < recallZone.upperLeft.x and pos.x > recallZone.lowerRight.x + and pos.z < recallZone.upperLeft.z and pos.z > recallZone.lowerRight.z) +end +end) +__bundle_register("playercards/PlayerCardSpawner", function(require, _LOADED, __bundle_register, __bundle_modules) + +-- Amount to shift for the next card (zShift) or next row of cards (xShift) +-- Note that the table rotation is weird, and the X axis is vertical while the +-- Z axis is horizontal +local SPREAD_Z_SHIFT = -2.3 + +Spawner = { } + +-- Spawns a list of cards at the given position/rotation. This will separate cards by size - +-- investigator, standard, and mini, spawning them in that order with larger cards on bottom. If +-- there are different types, the provided callback will be called once for each type as it spawns +-- either a card or deck. +-- @param cardList: A list of Player Card data structures (data/metadata) +-- @param pos Position table where the cards should be spawned (global) +-- @param rot Rotation table for the orientation of the spawned cards (global) +-- @param sort Boolean, true if this list of cards should be sorted before spawning +-- @param callback Function, callback to be called after the card/deck spawns. +Spawner.spawnCards = function(cardList, pos, rot, sort, callback) + if (sort) then + table.sort(cardList, Spawner.cardComparator) + end + + local miniCards = { } + local standardCards = { } + local investigatorCards = { } + + for _, card in ipairs(cardList) do + if (card.metadata.type == "Investigator") then + table.insert(investigatorCards, card) + elseif (card.metadata.type == "Minicard") then + table.insert(miniCards, card) + else + table.insert(standardCards, card) + end + end + -- Spawn each of the three types individually. Each Y position shift accounts for the thickness + -- of the spawned deck + local position = { x = pos.x, y = pos.y, z = pos.z } + Spawner.spawn(investigatorCards, position, { rot.x, rot.y - 90, rot.z}, callback) + + position.y = position.y + (#investigatorCards + #standardCards) * 0.07 + Spawner.spawn(standardCards, position, rot, callback) + + position.y = position.y + (#standardCards + #miniCards) * 0.07 + Spawner.spawn(miniCards, position, rot, callback) +end + +Spawner.spawnCardSpread = function(cardList, startPos, rot, sort, callback) + if (sort) then + table.sort(cardList, Spawner.cardComparator) + end + + local position = { x = startPos.x, y = startPos.y, z = startPos.z } + for _, card in ipairs(cardList) do + Spawner.spawn({ card }, position, rot, callback) + position.z = position.z + SPREAD_Z_SHIFT + end +end + +-- Spawn a specific list of cards. This method is for internal use and should not be called +-- directly, use spawnCards instead. +-- @param cardList: A list of Player Card data structures (data/metadata) +-- @param pos Position table where the cards should be spawned (global) +-- @param rot Rotation table for the orientation of the spawned cards (global) +-- @param callback Function, callback to be called after the card/deck spawns. +Spawner.spawn = function(cardList, pos, rot, callback) + if (#cardList == 0) then + return + end + -- Spawn a single card directly + if (#cardList == 1) then + spawnObjectData({ + data = cardList[1].data, + position = pos, + rotation = rot, + callback_function = callback, + }) + return + end + -- For multiple cards, construct a deck and spawn that + local deck = Spawner.buildDeckDataTemplate() + -- Decks won't inherently scale to the cards in them. The card list being spawned should be all + -- the same type/size by this point, so use the first card to set the size + deck.Transform = { + scaleX = cardList[1].data.Transform.scaleX, + scaleY = 1, + scaleZ = cardList[1].data.Transform.scaleZ, + } + for _, spawnCard in ipairs(cardList) do + Spawner.addCardToDeck(deck, spawnCard.data) + end + spawnObjectData({ + data = deck, + position = pos, + rotation = rot, + callback_function = callback, + }) +end + +-- Inserts a card into the given deck. This does three things: +-- 1. Add the card's data to ContainedObjects +-- 2. Add the card's ID (the TTS CardID, not the Arkham ID) to the deck's +-- ID list. Note that the deck's ID list is "DeckIDs" even though it +-- contains a list of card Ids +-- 3. Extract the card's CustomDeck table and add it to the deck. The deck's +-- "CustomDeck" field is a list of all CustomDecks used by cards within the +-- deck, keyed by the DeckID and referencing the custom deck table +---@param deck: TTS deck data structure to add to +---@param card: Data for the card to be inserted +Spawner.addCardToDeck = function(deck, cardData) + for customDeckId, customDeckData in pairs(cardData.CustomDeck) do + if (deck.CustomDeck[customDeckId] == nil) then + -- CustomDeck not added to deck yet, add it + deck.CustomDeck[customDeckId] = customDeckData + elseif (deck.CustomDeck[customDeckId].FaceURL == customDeckData.FaceURL) then + -- CustomDeck for this card matches the current one for the deck, do nothing + else + -- CustomDeck data conflict + local newDeckId = nil + for deckId, customDeck in pairs(deck.CustomDeck) do + if (customDeckData.FaceURL == customDeck.FaceURL) then + newDeckId = deckId + end + end + if (newDeckId == nil) then + -- No non-conflicting custom deck for this card, add a new one + newDeckId = Spawner.findNextAvailableId(deck.CustomDeck, "1000") + deck.CustomDeck[newDeckId] = customDeckData + end + -- Update the card with the new CustomDeck info + cardData.CardID = newDeckId..string.sub(cardData.CardID, 5) + cardData.CustomDeck[customDeckId] = nil + cardData.CustomDeck[newDeckId] = customDeckData + break + end + end + table.insert(deck.ContainedObjects, cardData) + table.insert(deck.DeckIDs, cardData.CardID) +end + +-- Create an empty deck data table which can have cards added to it. This +-- creates a new table on each call without using metatables or previous +-- definitions because we can't be sure that TTS doesn't modify the structure +---@return: Table containing the minimal TTS deck data structure +Spawner.buildDeckDataTemplate = function() + local deck = {} + deck.Name = "Deck" + + -- Card data. DeckIDs and CustomDeck entries will be built from the cards + deck.ContainedObjects = {} + deck.DeckIDs = {} + deck.CustomDeck = {} + + -- Transform is required, Position and Rotation will be overridden by the spawn call so can be omitted here + deck.Transform = { + scaleX = 1, + scaleY = 1, + scaleZ = 1, + } + + return deck +end + +-- Returns the first ID which does not exist in the given table, starting at startId and increasing +-- @param objectTable Table keyed by strings which are numbers +-- @param startId First possible ID. +-- @return String ID >= startId +Spawner.findNextAvailableId = function(objectTable, startId) + local id = startId + while (objectTable[id] ~= nil) do + id = tostring(tonumber(id) + 1) + end + + return id +end + +-- Get the PBCN (Permanent/Bonded/Customizable/Normal) value from the given metadata. +---@return: 1 for Permanent, 2 for Bonded or 4 for Normal. The actual values are +-- irrelevant as they provide only grouping and the order between them doesn't matter. +Spawner.getpbcn = function(metadata) + if metadata.permanent then + return 1 + elseif metadata.bonded_to ~= nil then + return 2 + else -- Normal card + return 3 + end +end + +-- Comparison function used to sort the cards in a deck. Groups bonded or +-- permanent cards first, then sorts within theose types by name/subname. +-- Normal cards will sort in standard alphabetical order, while +-- permanent/bonded/customizable will be in reverse alphabetical order. +-- +-- Since cards spawn in the order provided by this comparator, with the first +-- cards ending up at the bottom of a pile, this ordering will spawn in reverse +-- alphabetical order. This presents the cards in order for non-face-down +-- areas, and presents them in order when Searching the face-down deck. +Spawner.cardComparator = function(card1, card2) + local pbcn1 = Spawner.getpbcn(card1.metadata) + local pbcn2 = Spawner.getpbcn(card2.metadata) + if pbcn1 ~= pbcn2 then + return pbcn1 > pbcn2 + end + if pbcn1 == 3 then + if card1.data.Nickname ~= card2.data.Nickname then + return card1.data.Nickname < card2.data.Nickname + end + return card1.data.Description < card2.data.Description + else + if card1.data.Nickname ~= card2.data.Nickname then + return card1.data.Nickname > card2.data.Nickname + end + return card1.data.Description > card2.data.Description + end +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model Upgrade Sheets c3c1a7.yaml b/unpacked/Custom_Model Upgrade Sheets c3c1a7.yaml new file mode 100644 index 000000000..8509261f9 --- /dev/null +++ b/unpacked/Custom_Model Upgrade Sheets c3c1a7.yaml @@ -0,0 +1,57 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1850441528397417973/D32DAA4E3C4B2F5AE65D4AAD2972178060B730BE/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c3c1a7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: true +LuaScript: !include 'Custom_Model Upgrade Sheets c3c1a7.ttslua' +LuaScriptState: '{"spawnBagState":{"placed":[],"placedObjects":[]}}' +MeasureMovement: false +Name: Custom_Model +Nickname: Upgrade Sheets +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -42.7 + posY: 1.38 + posZ: 91.59 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model Weakness Generator dc36b4.ttslua b/unpacked/Custom_Model Weakness Generator dc36b4.ttslua index a435267de..c8b091cb5 100644 --- a/unpacked/Custom_Model Weakness Generator dc36b4.ttslua +++ b/unpacked/Custom_Model Weakness Generator dc36b4.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playercards/RandomWeaknessGenerator") +end) +__bundle_register("playercards/RandomWeaknessGenerator", function(require, _LOADED, __bundle_register, __bundle_modules) local allCardsBagGuid = "15bb07" function onLoad(saved_data) @@ -25,4 +72,6 @@ function buttonClick_draw() data = card.data, position = self.positionToWorld({0, 1, 5.5}), rotation = self.getRotation()}) -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model Weakness Generator dc36b4.yaml b/unpacked/Custom_Model Weakness Generator dc36b4.yaml index e8ff7a57e..59d4aceae 100644 --- a/unpacked/Custom_Model Weakness Generator dc36b4.yaml +++ b/unpacked/Custom_Model Weakness Generator dc36b4.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.249987066 - g: 0.249987066 - r: 0.249987066 + b: 0.249989867 + g: 0.249989867 + r: 0.249989867 CustomMesh: CastShadows: true ColliderURL: '' @@ -47,9 +47,9 @@ Transform: posX: -54.89 posY: 1.35 posZ: -72.71 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.7 scaleY: 0.7 scaleZ: 0.7 diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5.ttslua b/unpacked/Custom_Model_Bag Battle Goes On dd90c5.ttslua deleted file mode 100644 index d08a19f8d..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5.ttslua +++ /dev/null @@ -1,503 +0,0 @@ --- Utility memory bag by Directsun --- Version 2.5.2 --- Fork of Memory Bag 2.0 by MrStump - -function updateSave() - local data_to_save = {["ml"]=memoryList} - saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - -function combineMemoryFromBagsWithin() - local bagObjList = self.getObjects() - for _, bagObj in ipairs(bagObjList) do - local data = bagObj.lua_script_state - if data ~= nil then - local j = JSON.decode(data) - if j ~= nil and j.ml ~= nil then - for guid, entry in pairs(j.ml) do - memoryList[guid] = entry - end - end - end - end -end - -function updateMemoryWithMoves() - memoryList = memoryListBackup - --get the first transposed object's coordinates - local obj = getObjectFromGUID(moveGuid) - - -- p1 is where needs to go, p2 is where it was - local refObjPos = memoryList[moveGuid].pos - local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) - local movedRotation = obj.getRotation() - for guid, entry in pairs(memoryList) do - memoryList[guid].pos.x = entry.pos.x - deltaPos.x - memoryList[guid].pos.y = entry.pos.y - deltaPos.y - memoryList[guid].pos.z = entry.pos.z - deltaPos.z - -- memoryList[guid].rot.x = movedRotation.x - -- memoryList[guid].rot.y = movedRotation.y - -- memoryList[guid].rot.z = movedRotation.z - end - - --theList[obj.getGUID()] = { - -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, - -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, - -- lock=obj.getLock() - --} - moveList = {} -end - -function onload(saved_data) - fresh = true - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - --Set up information off of loaded_data - memoryList = loaded_data.ml - else - --Set up information for if there is no saved saved data - memoryList = {} - end - - moveList = {} - moveGuid = nil - - if next(memoryList) == nil then - createSetupButton() - else - fresh = false - createMemoryActionButtons() - end -end - - ---Beginning Setup - - ---Make setup button -function createSetupButton() - self.createButton({ - label="Setup", click_function="buttonClick_setup", function_owner=self, - position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, - font_size=130, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by Transpose button -function buttonClick_transpose() - moveGuid = nil - broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) - memoryListBackup = duplicateTable(memoryList) - memoryList = {} - moveList = {} - self.clearButtons() - createButtonsOnAllObjects(true) - createSetupActionButtons(true) -end - ---Triggered by setup button, -function buttonClick_setup() - memoryListBackup = duplicateTable(memoryList) - memoryList = {} - self.clearButtons() - createButtonsOnAllObjects(false) - createSetupActionButtons(false) -end - -function getAllObjectsInMemory() - local objTable = {} - local curObj = {} - - for guid in pairs(memoryListBackup) do - curObj = getObjectFromGUID(guid) - table.insert(objTable, curObj) - end - - return objTable - -- return getAllObjects() -end - ---Creates selection buttons on objects -function createButtonsOnAllObjects(move) - local howManyButtons = 0 - - local objsToHaveButtons = {} - if move == true then - objsToHaveButtons = getAllObjectsInMemory() - else - objsToHaveButtons = getAllObjects() - end - - for _, obj in ipairs(objsToHaveButtons) do - if obj ~= self then - local dummyIndex = howManyButtons - --On a normal bag, the button positions aren't the same size as the bag. - globalScaleFactor = 1 * 1/self.getScale().x - --Super sweet math to set button positions - local selfPos = self.getPosition() - local objPos = obj.getPosition() - local deltaPos = findOffsetDistance(selfPos, objPos, obj) - local objPos = rotateLocalCoordinates(deltaPos, self) - objPos.x = -objPos.x * globalScaleFactor - objPos.y = objPos.y * globalScaleFactor + 2 - objPos.z = objPos.z * globalScaleFactor * 0.9 - --Offset rotation of bag - local rot = self.getRotation() - rot.y = -rot.y + 180 - --Create function - local funcName = "selectButton_" .. howManyButtons - local func = function() buttonClick_selection(dummyIndex, obj, move) end - local color = {0.75,0.25,0.25,0.6} - local colorMove = {0,0,1,0.6} - if move == true then - color = colorMove - end - self.setVar(funcName, func) - self.createButton({ - click_function=funcName, function_owner=self, - position=objPos, rotation=rot, height=500, width=500, - color=color, - }) - howManyButtons = howManyButtons + 1 - end - end -end - ---Creates submit and cancel buttons -function createSetupActionButtons(move) - self.createButton({ - label="Cancel", click_function="buttonClick_cancel", function_owner=self, - position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550, - font_size=130, color={0,0,0}, font_color={1,1,1} - }) - - self.createButton({ - label="Submit", click_function="buttonClick_submit", function_owner=self, - position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, - font_size=130, color={0,0,0}, font_color={1,1,1} - }) - - if move == false then - self.createButton({ - label="Add", click_function="buttonClick_add", function_owner=self, - position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550, - font_size=130, color={0,0,0}, font_color={0.25,1,0.25} - }) - - if fresh == false then - self.createButton({ - label="Set New", click_function="buttonClick_setNew", function_owner=self, - position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, - font_size=130, color={0,0,0}, font_color={0.75,0.75,1} - }) - self.createButton({ - label="Remove", click_function="buttonClick_remove", function_owner=self, - position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550, - font_size=130, color={0,0,0}, font_color={1,0.25,0.25} - }) - end - end - - self.createButton({ - label="Reset", click_function="buttonClick_reset", function_owner=self, - position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550, - font_size=130, color={0,0,0}, font_color={1,1,1} - }) -end - - ---During Setup - - ---Checks or unchecks buttons -function buttonClick_selection(index, obj, move) - local colorMove = {0,0,1,0.6} - local color = {0,1,0,0.6} - - previousGuid = selectedGuid - selectedGuid = obj.getGUID() - - theList = memoryList - if move == true then - theList = moveList - if previousGuid ~= nil and previousGuid ~= selectedGuid then - local prevObj = getObjectFromGUID(previousGuid) - prevObj.highlightOff() - self.editButton({index=previousIndex, color=colorMove}) - theList[previousGuid] = nil - end - previousIndex = index - end - - if theList[selectedGuid] == nil then - self.editButton({index=index, color=color}) - --Adding pos/rot to memory table - local pos, rot = obj.getPosition(), obj.getRotation() - --I need to add it like this or it won't save due to indexing issue - theList[obj.getGUID()] = { - pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, - rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, - lock=obj.getLock() - } - obj.highlightOn({0,1,0}) - else - color = {0.75,0.25,0.25,0.6} - if move == true then - color = colorMove - end - self.editButton({index=index, color=color}) - theList[obj.getGUID()] = nil - obj.highlightOff() - end -end - ---Cancels selection process -function buttonClick_cancel() - memoryList = memoryListBackup - moveList = {} - self.clearButtons() - if next(memoryList) == nil then - createSetupButton() - else - createMemoryActionButtons() - end - removeAllHighlights() - broadcastToAll("Selection Canceled", {1,1,1}) - moveGuid = nil -end - ---Saves selections -function buttonClick_submit() - fresh = false - if next(moveList) ~= nil then - for guid in pairs(moveList) do - moveGuid = guid - end - if memoryListBackup[moveGuid] == nil then - broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) - else - broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) - self.clearButtons() - createMemoryActionButtons() - local count = 0 - for guid in pairs(moveList) do - moveGuid = guid - count = count + 1 - local obj = getObjectFromGUID(guid) - if obj ~= nil then obj.highlightOff() end - end - updateMemoryWithMoves() - updateSave() - buttonClick_place() - end - elseif next(memoryList) == nil and moveGuid == nil then - memoryList = memoryListBackup - broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) - end - combineMemoryFromBagsWithin() - self.clearButtons() - createMemoryActionButtons() - local count = 0 - for guid in pairs(memoryList) do - count = count + 1 - local obj = getObjectFromGUID(guid) - if obj ~= nil then obj.highlightOff() end - end - broadcastToAll(count.." Objects Saved", {1,1,1}) - updateSave() - moveGuid = nil -end - -function combineTables(first_table, second_table) - for k,v in pairs(second_table) do first_table[k] = v end -end - -function buttonClick_add() - fresh = false - combineTables(memoryList, memoryListBackup) - broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) - combineMemoryFromBagsWithin() - self.clearButtons() - createMemoryActionButtons() - local count = 0 - for guid in pairs(memoryList) do - count = count + 1 - local obj = getObjectFromGUID(guid) - if obj ~= nil then obj.highlightOff() end - end - broadcastToAll(count.." Objects Saved", {1,1,1}) - updateSave() -end - -function buttonClick_remove() - broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) - self.clearButtons() - createMemoryActionButtons() - local count = 0 - for guid in pairs(memoryList) do - count = count + 1 - memoryListBackup[guid] = nil - local obj = getObjectFromGUID(guid) - if obj ~= nil then obj.highlightOff() end - end - broadcastToAll(count.." Objects Removed", {1,1,1}) - memoryList = memoryListBackup - updateSave() -end - -function buttonClick_setNew() - broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) - self.clearButtons() - createMemoryActionButtons() - local count = 0 - for _, obj in ipairs(getAllObjects()) do - guid = obj.guid - if memoryListBackup[guid] ~= nil then - count = count + 1 - memoryListBackup[guid].pos = obj.getPosition() - memoryListBackup[guid].rot = obj.getRotation() - memoryListBackup[guid].lock = obj.getLock() - end - end - broadcastToAll(count.." Objects Saved", {1,1,1}) - memoryList = memoryListBackup - updateSave() -end - ---Resets bag to starting status -function buttonClick_reset() - fresh = true - memoryList = {} - self.clearButtons() - createSetupButton() - removeAllHighlights() - broadcastToAll("Tool Reset", {1,1,1}) - updateSave() -end - - ---After Setup - - ---Creates recall and place buttons -function createMemoryActionButtons() - self.createButton({ - label="Place", click_function="buttonClick_place", function_owner=self, - position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, - font_size=130, color={0,0,0}, font_color={1,1,1} - }) - self.createButton({ - label="Recall", click_function="buttonClick_recall", function_owner=self, - position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500, - font_size=130, color={0,0,0}, font_color={1,1,1} - }) - self.createButton({ - label="Setup", click_function="buttonClick_setup", function_owner=self, - position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500, - font_size=130, color={0,0,0}, font_color={1,1,1} - }) ---- self.createButton({ ---- label="Move", click_function="buttonClick_transpose", function_owner=self, ---- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, ---- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} ---- }) -end - ---Sends objects from bag/table to their saved position/rotation -function buttonClick_place() - local bagObjList = self.getObjects() - for guid, entry in pairs(memoryList) do - local obj = getObjectFromGUID(guid) - --If obj is out on the table, move it to the saved pos/rot - if obj ~= nil then - obj.setPositionSmooth(entry.pos) - obj.setRotationSmooth(entry.rot) - obj.setLock(entry.lock) - else - --If obj is inside of the bag - for _, bagObj in ipairs(bagObjList) do - if bagObj.guid == guid then - local item = self.takeObject({ - guid=guid, position=entry.pos, rotation=entry.rot, smooth=false - }) - item.setLock(entry.lock) - break - end - end - end - end - broadcastToAll("Objects Placed", {1,1,1}) -end - ---Recalls objects to bag from table -function buttonClick_recall() - for guid, entry in pairs(memoryList) do - local obj = getObjectFromGUID(guid) - if obj ~= nil then self.putObject(obj) end - end - broadcastToAll("Objects Recalled", {1,1,1}) -end - - ---Utility functions - - ---Find delta (difference) between 2 x/y/z coordinates -function findOffsetDistance(p1, p2, obj) - local yOffset = 0 - if obj ~= nil then - local bounds = obj.getBounds() - yOffset = (bounds.size.y - bounds.offset.y) - end - local deltaPos = {} - deltaPos.x = (p2.x-p1.x) - deltaPos.y = (p2.y-p1.y) + yOffset - deltaPos.z = (p2.z-p1.z) - return deltaPos -end - ---Used to rotate a set of coordinates by an angle -function rotateLocalCoordinates(desiredPos, obj) - local objPos, objRot = obj.getPosition(), obj.getRotation() - local angle = math.rad(objRot.y) - local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) - local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) - --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} - return {x=x, y=desiredPos.y, z=z} -end - -function rotateMyCoordinates(desiredPos, obj) - local angle = math.rad(obj.getRotation().y) - local x = desiredPos.x * math.sin(angle) - local z = desiredPos.z * math.cos(angle) - return {x=x, y=desiredPos.y, z=z} -end - ---Coroutine delay, in seconds -function wait(time) - local start = os.time() - repeat coroutine.yield(0) until os.time() > start + time -end - ---Duplicates a table (needed to prevent it making reference to the same objects) -function duplicateTable(oldTable) - local newTable = {} - for k, v in pairs(oldTable) do - newTable[k] = v - end - return newTable -end - ---Moves scripted highlight from all objects -function removeAllHighlights() - for _, obj in ipairs(getAllObjects()) do - obj.highlightOff() - end -end - ---Round number (num) to the Nth decimal (dec) -function round(num, dec) - local mult = 10^(dec or 0) - return math.floor(num * mult + 0.5) / mult -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Ancient Compass ffcf21.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Ancient Compass ffcf21.yaml deleted file mode 100644 index 01391f41f..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Ancient Compass ffcf21.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592401 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: ffcf21 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Ancient Compass -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.39 - posY: 1.32 - posZ: -65.35 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Butcher's Hatchet 4225c0.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Butcher's Hatchet 4225c0.yaml deleted file mode 100644 index 6d0515479..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Butcher's Hatchet 4225c0.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592415 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 4225c0 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Butcher's Hatchet -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 2.11 - posY: 1.32 - posZ: -69.95 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Canonical Texts 23a0e7.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Canonical Texts 23a0e7.yaml deleted file mode 100644 index 432a6a249..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Canonical Texts 23a0e7.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592405 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 23a0e7 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Canonical Texts -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.39 - posY: 1.32 - posZ: -74.55 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Cao Cao 6999ce.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Cao Cao 6999ce.yaml deleted file mode 100644 index c91f0cf0f..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Cao Cao 6999ce.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 591600 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5916': - BackIsHidden: true - BackURL: https://i.imgur.com/MkXqO5J.jpg - FaceURL: https://i.imgur.com/cxcVPn9.jpg - NumHeight: 2 - NumWidth: 5 - Type: 0 - UniqueBack: true -Description: Mini Card -DragSelectable: true -GMNotes: '' -GUID: 6999ce -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Cao Cao -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -19.3 - posY: 1.32 - posZ: -53.44 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 0.6 - scaleY: 1.0 - scaleZ: 0.6 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Cao Cao a9b4ce.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Cao Cao a9b4ce.yaml deleted file mode 100644 index 41f340911..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Cao Cao a9b4ce.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592500 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5925': - BackIsHidden: true - BackURL: https://i.imgur.com/icgJdJQ.jpg - FaceURL: https://i.imgur.com/VnGUaFg.jpg - NumHeight: 2 - NumWidth: 4 - Type: 0 - UniqueBack: true -Description: Emperor Wu of Wei -DragSelectable: true -GMNotes: '' -GUID: a9b4ce -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Cao Cao -SidewaysCard: true -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -22.61 - posY: 1.32 - posZ: -53.44 - rotX: 0.02 - rotY: 179.96 - rotZ: 359.98 - scaleX: 1.1 - scaleY: 1.0 - scaleZ: 1.1 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Changban Recog 77d5c3.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Changban Recog 77d5c3.yaml deleted file mode 100644 index 711fee65b..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Changban Recog 77d5c3.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592409 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 77d5c3 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Changban Recog -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 5.75 - posY: 1.32 - posZ: -69.95 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Chen Shou 763a27.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Chen Shou 763a27.yaml deleted file mode 100644 index a1304713f..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Chen Shou 763a27.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 591604 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5916': - BackIsHidden: true - BackURL: https://i.imgur.com/MkXqO5J.jpg - FaceURL: https://i.imgur.com/cxcVPn9.jpg - NumHeight: 2 - NumWidth: 5 - Type: 0 - UniqueBack: true -Description: Mini Card -DragSelectable: true -GMNotes: '' -GUID: 763a27 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Chen Shou -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -19.3 - posY: 1.31 - posZ: -84.82 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 0.6 - scaleY: 1.0 - scaleZ: 0.6 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Escaping Tong Pass 196394.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Escaping Tong Pass 196394.yaml deleted file mode 100644 index ff7dc1c30..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Escaping Tong Pass 196394.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592403 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '196394' -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Escaping Tong Pass -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.39 - posY: 1.32 - posZ: -69.95 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Fulu 668b93.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Fulu 668b93.yaml deleted file mode 100644 index 530ac1f24..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Fulu 668b93.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592402 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 668b93 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Fulu -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.39 - posY: 1.32 - posZ: -67.65 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Historical Novel a836d9.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Historical Novel a836d9.yaml deleted file mode 100644 index 5ca7adad6..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Historical Novel a836d9.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592417 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: a836d9 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Historical Novel -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 2.11 - posY: 1.32 - posZ: -74.55 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Infant Care 321c5a.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Infant Care 321c5a.yaml deleted file mode 100644 index 36b2222e2..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Infant Care 321c5a.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592410 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 321c5a -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Infant Care -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 5.75 - posY: 1.32 - posZ: -72.25 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Liu Bei ac8f35.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Liu Bei ac8f35.yaml deleted file mode 100644 index 13cbecff8..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Liu Bei ac8f35.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592501 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5925': - BackIsHidden: true - BackURL: https://i.imgur.com/icgJdJQ.jpg - FaceURL: https://i.imgur.com/VnGUaFg.jpg - NumHeight: 2 - NumWidth: 4 - Type: 0 - UniqueBack: true -Description: The Humane Ruler -DragSelectable: true -GMNotes: '' -GUID: ac8f35 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Liu Bei -SidewaysCard: true -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -22.62 - posY: 1.31 - posZ: -61.24 - rotX: 0.02 - rotY: 180.02 - rotZ: 359.98 - scaleX: 1.1 - scaleY: 1.0 - scaleZ: 1.1 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Liu Bei d3dcdd.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Liu Bei d3dcdd.yaml deleted file mode 100644 index 48992fa58..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Liu Bei d3dcdd.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592001 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5920': - BackIsHidden: true - BackURL: https://i.imgur.com/MkXqO5J.jpg - FaceURL: https://i.imgur.com/cxcVPn9.jpg - NumHeight: 2 - NumWidth: 5 - Type: 0 - UniqueBack: true -Description: Mini Card -DragSelectable: true -GMNotes: '' -GUID: d3dcdd -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Liu Bei -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -19.3 - posY: 1.31 - posZ: -61.23 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 0.6 - scaleY: 1.0 - scaleZ: 0.6 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Monumental History 9341d5.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Monumental History 9341d5.yaml deleted file mode 100644 index 60347a4dc..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Monumental History 9341d5.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592411 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 9341d5 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Monumental History -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 5.75 - posY: 1.32 - posZ: -74.55 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Mysterious Suspense 91a0fc.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Mysterious Suspense 91a0fc.yaml deleted file mode 100644 index 9ad3f5269..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Mysterious Suspense 91a0fc.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592413 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 91a0fc -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Mysterious Suspense -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 2.11 - posY: 1.32 - posZ: -65.35 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Nan Hua 3bdb8f.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Nan Hua 3bdb8f.yaml deleted file mode 100644 index 5c1b39755..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Nan Hua 3bdb8f.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592503 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5925': - BackIsHidden: true - BackURL: https://i.imgur.com/icgJdJQ.jpg - FaceURL: https://i.imgur.com/VnGUaFg.jpg - NumHeight: 2 - NumWidth: 4 - Type: 0 - UniqueBack: true -Description: Saint Hermit of the Southern Land -DragSelectable: true -GMNotes: '' -GUID: 3bdb8f -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Nan Hua -SidewaysCard: true -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -22.62 - posY: 1.31 - posZ: -76.95 - rotX: 0.02 - rotY: 179.97 - rotZ: 359.98 - scaleX: 1.1 - scaleY: 1.0 - scaleZ: 1.1 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Nan Hua 93d0b4.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Nan Hua 93d0b4.yaml deleted file mode 100644 index 2d6505188..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Nan Hua 93d0b4.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 591703 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5917': - BackIsHidden: true - BackURL: https://i.imgur.com/MkXqO5J.jpg - FaceURL: https://i.imgur.com/cxcVPn9.jpg - NumHeight: 2 - NumWidth: 5 - Type: 0 - UniqueBack: true -Description: Mini Card -DragSelectable: true -GMNotes: '' -GUID: 93d0b4 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Nan Hua -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -19.29 - posY: 1.31 - posZ: -76.94 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 0.6 - scaleY: 1.0 - scaleZ: 0.6 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card On a Streak 06ba48.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card On a Streak 06ba48.yaml deleted file mode 100644 index 7cf97a2d0..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card On a Streak 06ba48.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592406 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 06ba48 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: On a Streak -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 5.75 - posY: 1.32 - posZ: -63.05 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Prodigy Healing a9d598.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Prodigy Healing a9d598.yaml deleted file mode 100644 index 5472aa06e..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Prodigy Healing a9d598.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592404 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: a9d598 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Prodigy Healing -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.39 - posY: 1.32 - posZ: -72.25 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Seven Stars 621b3f.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Seven Stars 621b3f.yaml deleted file mode 100644 index 055076e02..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Seven Stars 621b3f.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592400 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 621b3f -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Seven Stars -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.39 - posY: 1.32 - posZ: -63.05 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Sky Lantern 13f8ae.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Sky Lantern 13f8ae.yaml deleted file mode 100644 index 11fa38417..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Sky Lantern 13f8ae.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592407 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 13f8ae -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Sky Lantern -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 5.75 - posY: 1.32 - posZ: -65.35 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Spiked Mace 97f078.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Spiked Mace 97f078.yaml deleted file mode 100644 index e0c34ab41..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Spiked Mace 97f078.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592416 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 97f078 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Spiked Mace -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 2.11 - posY: 1.32 - posZ: -72.25 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Straw Shoes 884c7e.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Straw Shoes 884c7e.yaml deleted file mode 100644 index c79a4f596..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Straw Shoes 884c7e.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592414 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 884c7e -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Straw Shoes -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 2.11 - posY: 1.32 - posZ: -67.65 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Sun Quan 2f9839.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Sun Quan 2f9839.yaml deleted file mode 100644 index 64f6d52c1..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Sun Quan 2f9839.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592502 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5925': - BackIsHidden: true - BackURL: https://i.imgur.com/icgJdJQ.jpg - FaceURL: https://i.imgur.com/VnGUaFg.jpg - NumHeight: 2 - NumWidth: 4 - Type: 0 - UniqueBack: true -Description: The Young Monarch -DragSelectable: true -GMNotes: '' -GUID: 2f9839 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Sun Quan -SidewaysCard: true -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -22.62 - posY: 1.31 - posZ: -69.08 - rotX: 0.02 - rotY: 179.99 - rotZ: 359.98 - scaleX: 1.1 - scaleY: 1.0 - scaleZ: 1.1 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Sun Quan bccf2a.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Sun Quan bccf2a.yaml deleted file mode 100644 index 10ce2a9c1..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Sun Quan bccf2a.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 591902 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5919': - BackIsHidden: true - BackURL: https://i.imgur.com/MkXqO5J.jpg - FaceURL: https://i.imgur.com/cxcVPn9.jpg - NumHeight: 2 - NumWidth: 5 - Type: 0 - UniqueBack: true -Description: Mini Card -DragSelectable: true -GMNotes: '' -GUID: bccf2a -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Sun Quan -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -19.3 - posY: 1.31 - posZ: -69.06 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 0.6 - scaleY: 1.0 - scaleZ: 0.6 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Taoism Flag 3ca139.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Taoism Flag 3ca139.yaml deleted file mode 100644 index 3c9cde06d..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Taoism Flag 3ca139.yaml +++ /dev/null @@ -1,54 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592429 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: 'You found me! - - - Now you may add the first copy of this card to your deck for free!' -DragSelectable: true -GMNotes: '' -GUID: 3ca139 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Taoism Flag -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 11.3 - posY: 1.91 - posZ: -45.39 - rotX: 0.0 - rotY: 270.01 - rotZ: 0.22 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Treasure Bowl b041a2.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Treasure Bowl b041a2.yaml deleted file mode 100644 index 311fb57ae..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Card Treasure Bowl b041a2.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592408 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: b041a2 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Treasure Bowl -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 5.75 - posY: 1.32 - posZ: -67.65 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 197103.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 197103.yaml deleted file mode 100644 index 77cee67a5..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 197103.yaml +++ /dev/null @@ -1,49 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/ - MaterialIndex: 3 - MeshURL: https://pastebin.com/raw/ALrYhQGb - NormalURL: '' - TypeIndex: 4 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '197103' -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Model -Nickname: Survivor turn token -Snap: true -Sticky: true -Tooltip: false -Transform: - posX: -16.62 - posY: 1.36 - posZ: -76.93 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 0.45 - scaleY: 0.6 - scaleZ: 0.45 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 1c4e12.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 1c4e12.yaml deleted file mode 100644 index fb9732e55..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 1c4e12.yaml +++ /dev/null @@ -1,49 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/ - MaterialIndex: 3 - MeshURL: https://pastebin.com/raw/ALrYhQGb - NormalURL: '' - TypeIndex: 4 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 1c4e12 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Model -Nickname: Survivor turn token -Snap: true -Sticky: true -Tooltip: false -Transform: - posX: -16.62 - posY: 1.36 - posZ: -54.6 - rotX: 0.02 - rotY: 270.03 - rotZ: 0.02 - scaleX: 0.45 - scaleY: 0.6 - scaleZ: 0.45 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 3d2067.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 3d2067.yaml deleted file mode 100644 index e0406dd58..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 3d2067.yaml +++ /dev/null @@ -1,49 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/ - MaterialIndex: 3 - MeshURL: https://pastebin.com/raw/ALrYhQGb - NormalURL: '' - TypeIndex: 4 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 3d2067 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Model -Nickname: Survivor turn token -Snap: true -Sticky: true -Tooltip: false -Transform: - posX: -16.62 - posY: 1.36 - posZ: -52.14 - rotX: 0.02 - rotY: 270.03 - rotZ: 0.02 - scaleX: 0.45 - scaleY: 0.6 - scaleZ: 0.45 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 488fe7.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 488fe7.yaml deleted file mode 100644 index 7c4d39c33..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 488fe7.yaml +++ /dev/null @@ -1,49 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/ - MaterialIndex: 3 - MeshURL: https://pastebin.com/raw/ALrYhQGb - NormalURL: '' - TypeIndex: 4 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 488fe7 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Model -Nickname: Survivor turn token -Snap: true -Sticky: true -Tooltip: false -Transform: - posX: -16.62 - posY: 1.36 - posZ: -53.37 - rotX: 0.02 - rotY: 270.03 - rotZ: 0.02 - scaleX: 0.45 - scaleY: 0.6 - scaleZ: 0.45 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 52e670.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 52e670.yaml deleted file mode 100644 index dd9967943..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 52e670.yaml +++ /dev/null @@ -1,49 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/ - MaterialIndex: 3 - MeshURL: https://pastebin.com/raw/ALrYhQGb - NormalURL: '' - TypeIndex: 4 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 52e670 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Model -Nickname: Survivor turn token -Snap: true -Sticky: true -Tooltip: false -Transform: - posX: -16.62 - posY: 1.36 - posZ: -61.21 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 0.45 - scaleY: 0.6 - scaleZ: 0.45 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 585744.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 585744.yaml deleted file mode 100644 index 3adda2a44..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 585744.yaml +++ /dev/null @@ -1,49 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/ - MaterialIndex: 3 - MeshURL: https://pastebin.com/raw/ALrYhQGb - NormalURL: '' - TypeIndex: 4 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '585744' -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Model -Nickname: Survivor turn token -Snap: true -Sticky: true -Tooltip: false -Transform: - posX: -16.62 - posY: 1.36 - posZ: -75.69 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 0.45 - scaleY: 0.6 - scaleZ: 0.45 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 5bbf47.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 5bbf47.yaml deleted file mode 100644 index 5bded8bd5..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 5bbf47.yaml +++ /dev/null @@ -1,49 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/ - MaterialIndex: 3 - MeshURL: https://pastebin.com/raw/ALrYhQGb - NormalURL: '' - TypeIndex: 4 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 5bbf47 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Model -Nickname: Survivor turn token -Snap: true -Sticky: true -Tooltip: false -Transform: - posX: -16.62 - posY: 1.36 - posZ: -59.98 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 0.45 - scaleY: 0.6 - scaleZ: 0.45 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 909fa7.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 909fa7.yaml deleted file mode 100644 index 4bcfe49c0..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token 909fa7.yaml +++ /dev/null @@ -1,49 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/ - MaterialIndex: 3 - MeshURL: https://pastebin.com/raw/ALrYhQGb - NormalURL: '' - TypeIndex: 4 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 909fa7 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Model -Nickname: Survivor turn token -Snap: true -Sticky: true -Tooltip: false -Transform: - posX: -16.62 - posY: 1.36 - posZ: -62.44 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 0.45 - scaleY: 0.6 - scaleZ: 0.45 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token f9f51a.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token f9f51a.yaml deleted file mode 100644 index adad9a252..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token f9f51a.yaml +++ /dev/null @@ -1,49 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/ - MaterialIndex: 3 - MeshURL: https://pastebin.com/raw/ALrYhQGb - NormalURL: '' - TypeIndex: 4 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: f9f51a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Model -Nickname: Survivor turn token -Snap: true -Sticky: true -Tooltip: false -Transform: - posX: -16.62 - posY: 1.36 - posZ: -78.16 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 0.45 - scaleY: 0.6 - scaleZ: 0.45 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 080508.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 080508.yaml deleted file mode 100644 index e35538962..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 080508.yaml +++ /dev/null @@ -1,49 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/ - MaterialIndex: 3 - MeshURL: https://pastebin.com/raw/ALrYhQGb - NormalURL: '' - TypeIndex: 4 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 080508 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Model -Nickname: Turn token -Snap: true -Sticky: true -Tooltip: false -Transform: - posX: -16.62 - posY: 1.35 - posZ: -84.8 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 0.45 - scaleY: 0.6 - scaleZ: 0.45 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 104c1e.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 104c1e.yaml deleted file mode 100644 index 659d0828e..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 104c1e.yaml +++ /dev/null @@ -1,49 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/ - MaterialIndex: 3 - MeshURL: https://pastebin.com/raw/ALrYhQGb - NormalURL: '' - TypeIndex: 4 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 104c1e -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Model -Nickname: Turn token -Snap: true -Sticky: true -Tooltip: false -Transform: - posX: -16.62 - posY: 1.36 - posZ: -83.52 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 0.45 - scaleY: 0.6 - scaleZ: 0.45 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 5de79f.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 5de79f.yaml deleted file mode 100644 index 71294693d..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 5de79f.yaml +++ /dev/null @@ -1,49 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/ - MaterialIndex: 3 - MeshURL: https://pastebin.com/raw/ALrYhQGb - NormalURL: '' - TypeIndex: 4 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 5de79f -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Model -Nickname: Turn token -Snap: true -Sticky: true -Tooltip: false -Transform: - posX: -16.62 - posY: 1.36 - posZ: -70.27 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 0.45 - scaleY: 0.6 - scaleZ: 0.45 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 68e686.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 68e686.yaml deleted file mode 100644 index 5417adbe7..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 68e686.yaml +++ /dev/null @@ -1,49 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/ - MaterialIndex: 3 - MeshURL: https://pastebin.com/raw/ALrYhQGb - NormalURL: '' - TypeIndex: 4 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 68e686 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Model -Nickname: Turn token -Snap: true -Sticky: true -Tooltip: false -Transform: - posX: -16.62 - posY: 1.35 - posZ: -86.0 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 0.45 - scaleY: 0.6 - scaleZ: 0.45 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 9725e1.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 9725e1.yaml deleted file mode 100644 index 87716a8b2..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 9725e1.yaml +++ /dev/null @@ -1,49 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/ - MaterialIndex: 3 - MeshURL: https://pastebin.com/raw/ALrYhQGb - NormalURL: '' - TypeIndex: 4 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 9725e1 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Model -Nickname: Turn token -Snap: true -Sticky: true -Tooltip: false -Transform: - posX: -16.62 - posY: 1.36 - posZ: -67.8 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 0.45 - scaleY: 0.6 - scaleZ: 0.45 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token e7550c.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token e7550c.yaml deleted file mode 100644 index 44c38273d..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token e7550c.yaml +++ /dev/null @@ -1,49 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/ - MaterialIndex: 3 - MeshURL: https://pastebin.com/raw/ALrYhQGb - NormalURL: '' - TypeIndex: 4 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: e7550c -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Model -Nickname: Turn token -Snap: true -Sticky: true -Tooltip: false -Transform: - posX: -16.62 - posY: 1.36 - posZ: -69.04 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 0.45 - scaleY: 0.6 - scaleZ: 0.45 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 024a88.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 024a88.yaml deleted file mode 100644 index 08f8e6ee8..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 024a88.yaml +++ /dev/null @@ -1,69 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 0.02148666 - g: 0.00100758043 - r: 0.02148666 -ContainedObjects: -- !include 'Custom_Model_Bag starter deck & cards 024a88/Deck A Battle Goes On deck - 5d2d7e.yaml' -- !include 'Custom_Model_Bag starter deck & cards 024a88/Card River of No Return 889fc6.yaml' -- !include 'Custom_Model_Bag starter deck & cards 024a88/Card Seamless Planning 0d6929.yaml' -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/ - MaterialIndex: 1 - MeshURL: http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/ - NormalURL: http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/ - TypeIndex: 6 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 024a88 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: starter deck & cards -PhysicsMaterial: - BounceCombine: 0 - Bounciness: 0.0 - DynamicFriction: 0.6 - FrictionCombine: 0 - StaticFriction: 0.6 -Rigidbody: - AngularDrag: 5.0 - Drag: 5.0 - Mass: 1.375 - UseGravity: true -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -26.3 - posY: 1.27 - posZ: -69.06 - rotX: 359.98 - rotY: 89.99 - rotZ: 359.98 - scaleX: 2.0 - scaleY: 2.0 - scaleZ: 2.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 024a88/Card River of No Return 889fc6.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 024a88/Card River of No Return 889fc6.yaml deleted file mode 100644 index f5c7e9943..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 024a88/Card River of No Return 889fc6.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592424 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: A Sun Quan Weakness -DragSelectable: true -GMNotes: '' -GUID: 889fc6 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: River of No Return -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -25.84 - posY: 3.37 - posZ: -69.6 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 024a88/Card Seamless Planning 0d6929.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 024a88/Card Seamless Planning 0d6929.yaml deleted file mode 100644 index f8f0b57e8..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 024a88/Card Seamless Planning 0d6929.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592423 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: A Sun Quan Signature -DragSelectable: true -GMNotes: '' -GUID: 0d6929 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Seamless Planning -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -25.49 - posY: 3.37 - posZ: -69.41 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 024a88/Deck A Battle Goes On deck 5d2d7e.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 024a88/Deck A Battle Goes On deck 5d2d7e.yaml deleted file mode 100644 index 104b5e3fe..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 024a88/Deck A Battle Goes On deck 5d2d7e.yaml +++ /dev/null @@ -1,990 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -ContainedObjects: -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592400 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8a775d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Seven Stars - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.985302 - posY: 1.29232764 - posZ: -77.30829 - rotX: 0.0208061524 - rotY: 270.008545 - rotZ: 0.0167743545 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592401 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8f85af - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ancient Compass - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.9665146 - posY: 1.32576036 - posZ: -77.27228 - rotX: 0.020806523 - rotY: 270.008545 - rotZ: 0.0167748854 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592402 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6223c5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fulu - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.03376 - posY: 1.35986257 - posZ: -77.92008 - rotX: 0.0208064932 - rotY: 270.008545 - rotZ: 0.0167746544 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592403 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f60e82 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Escaping Tong Pass - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.5135078 - posY: 1.36986566 - posZ: -76.51876 - rotX: 0.0208062325 - rotY: 270.008545 - rotZ: 0.01677456 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592404 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d71d31 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Prodigy Healing - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.930748 - posY: 1.37883461 - posZ: -77.75735 - rotX: 0.020806063 - rotY: 270.008545 - rotZ: 0.016774809 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592405 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 72e480 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Canonical Texts - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.07592 - posY: 1.38860857 - posZ: -77.05106 - rotX: 0.0208064876 - rotY: 270.008545 - rotZ: 0.0167748984 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592406 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 840b9f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: On a Streak - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.2717323 - posY: 1.39860189 - posZ: -77.83151 - rotX: 0.020806564 - rotY: 270.008545 - rotZ: 0.0167747661 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592407 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 17ecf7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sky Lantern - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.6919022 - posY: 1.4088378 - posZ: -77.93121 - rotX: 0.0208065063 - rotY: 270.008545 - rotZ: 0.0167749133 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592408 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ba93cc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Treasure Bowl - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.6176147 - posY: 1.41838038 - posZ: -78.0556946 - rotX: 0.0208064448 - rotY: 270.008545 - rotZ: 0.01677476 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592409 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: eaa1bc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Changban Recog - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.167 - posY: 1.42713022 - posZ: -77.08057 - rotX: 0.02080646 - rotY: 270.008545 - rotZ: 0.0167749077 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592410 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4b3ed6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Infant Care - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.67992 - posY: 1.43674386 - posZ: -77.177124 - rotX: 0.02080631 - rotY: 270.008545 - rotZ: 0.0167748556 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592411 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d60bb0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Monumental History - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.5731354 - posY: 1.44770479 - posZ: -76.9989548 - rotX: 0.0208059344 - rotY: 270.008545 - rotZ: 0.0167736337 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592412 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0d98cd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Empty Fort - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.292202 - posY: 1.45130634 - posZ: -77.37188 - rotX: 0.008660985 - rotY: 270.047455 - rotZ: 0.0138463965 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592413 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d776e7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mysterious Suspense - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.89086 - posY: 1.46551156 - posZ: -77.67901 - rotX: 0.020806551 - rotY: 270.008545 - rotZ: 0.0167746115 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592414 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bcf3b0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Straw Shoes - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.54368 - posY: 1.4751339 - posZ: -77.33252 - rotX: 0.020806592 - rotY: 270.008545 - rotZ: 0.0167746376 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592415 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5bd99d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Butcher's Hatchet - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.6979866 - posY: 1.48481083 - posZ: -77.11732 - rotX: 0.02080632 - rotY: 270.008545 - rotZ: 0.0167744532 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592416 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0b3db4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Spiked Mace - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.5693169 - posY: 1.49432123 - posZ: -77.63921 - rotX: 0.0208065361 - rotY: 270.008545 - rotZ: 0.0167747047 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592417 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b9ec5e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Historical Novel - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.03647 - posY: 1.50409186 - posZ: -77.3271942 - rotX: 0.0208064523 - rotY: 270.008545 - rotZ: 0.0167748816 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -DeckIDs: -- 592400 -- 592401 -- 592402 -- 592403 -- 592404 -- 592405 -- 592406 -- 592407 -- 592408 -- 592409 -- 592410 -- 592411 -- 592412 -- 592413 -- 592414 -- 592415 -- 592416 -- 592417 -Description: Everyone in play shares the same "BGO" deck. When a card from the "BGO" - deck enters a play area, it's considered a part of that player's deck during this - game. It will go into the player's discard pile once you discard it. -DragSelectable: true -GMNotes: '' -GUID: 5d2d7e -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Deck -Nickname: A "Battle Goes On" deck -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -26.3 - posY: 3.46 - posZ: -69.06 - rotX: 0.02 - rotY: 270.0 - rotZ: 180.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 112830.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 112830.yaml deleted file mode 100644 index a5a9ea5a5..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 112830.yaml +++ /dev/null @@ -1,69 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 0.02148666 - g: 0.00100758043 - r: 0.02148666 -ContainedObjects: -- !include 'Custom_Model_Bag starter deck & cards 112830/Deck A Battle Goes On deck - bc1f8d.yaml' -- !include 'Custom_Model_Bag starter deck & cards 112830/Card Shed a Tear 8d963e.yaml' -- !include 'Custom_Model_Bag starter deck & cards 112830/Card Peach Garden Oath 03cf28.yaml' -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/ - MaterialIndex: 1 - MeshURL: http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/ - NormalURL: http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/ - TypeIndex: 6 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '112830' -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: starter deck & cards -PhysicsMaterial: - BounceCombine: 0 - Bounciness: 0.0 - DynamicFriction: 0.6 - FrictionCombine: 0 - StaticFriction: 0.6 -Rigidbody: - AngularDrag: 5.0 - Drag: 5.0 - Mass: 1.375 - UseGravity: true -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -26.31 - posY: 1.27 - posZ: -61.21 - rotX: 359.98 - rotY: 89.86 - rotZ: 359.98 - scaleX: 2.0 - scaleY: 2.0 - scaleZ: 2.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 112830/Card Peach Garden Oath 03cf28.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 112830/Card Peach Garden Oath 03cf28.yaml deleted file mode 100644 index 804f6187f..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 112830/Card Peach Garden Oath 03cf28.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592421 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: A Liu Bei Signature -DragSelectable: true -GMNotes: '' -GUID: 03cf28 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Peach Garden Oath -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -26.7 - posY: 3.37 - posZ: -60.64 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 112830/Card Shed a Tear 8d963e.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 112830/Card Shed a Tear 8d963e.yaml deleted file mode 100644 index b8141a227..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 112830/Card Shed a Tear 8d963e.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592422 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: A Liu Bei Weakness -DragSelectable: true -GMNotes: '' -GUID: 8d963e -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Shed a Tear -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -26.04 - posY: 3.37 - posZ: -61.07 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 112830/Deck A Battle Goes On deck bc1f8d.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 112830/Deck A Battle Goes On deck bc1f8d.yaml deleted file mode 100644 index 67e47a4bc..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards 112830/Deck A Battle Goes On deck bc1f8d.yaml +++ /dev/null @@ -1,990 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -ContainedObjects: -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592400 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8a775d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Seven Stars - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.985302 - posY: 1.29232764 - posZ: -77.30829 - rotX: 0.0208061524 - rotY: 270.008545 - rotZ: 0.0167743545 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592401 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8f85af - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ancient Compass - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.9665146 - posY: 1.32576036 - posZ: -77.27228 - rotX: 0.020806523 - rotY: 270.008545 - rotZ: 0.0167748854 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592402 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6223c5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fulu - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.03376 - posY: 1.35986257 - posZ: -77.92008 - rotX: 0.0208064932 - rotY: 270.008545 - rotZ: 0.0167746544 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592403 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f60e82 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Escaping Tong Pass - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.5135078 - posY: 1.36986566 - posZ: -76.51876 - rotX: 0.0208062325 - rotY: 270.008545 - rotZ: 0.01677456 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592404 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d71d31 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Prodigy Healing - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.930748 - posY: 1.37883461 - posZ: -77.75735 - rotX: 0.020806063 - rotY: 270.008545 - rotZ: 0.016774809 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592405 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 72e480 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Canonical Texts - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.07592 - posY: 1.38860857 - posZ: -77.05106 - rotX: 0.0208064876 - rotY: 270.008545 - rotZ: 0.0167748984 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592406 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 840b9f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: On a Streak - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.2717323 - posY: 1.39860189 - posZ: -77.83151 - rotX: 0.020806564 - rotY: 270.008545 - rotZ: 0.0167747661 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592407 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 17ecf7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sky Lantern - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.6919022 - posY: 1.4088378 - posZ: -77.93121 - rotX: 0.0208065063 - rotY: 270.008545 - rotZ: 0.0167749133 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592408 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ba93cc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Treasure Bowl - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.6176147 - posY: 1.41838038 - posZ: -78.0556946 - rotX: 0.0208064448 - rotY: 270.008545 - rotZ: 0.01677476 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592409 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: eaa1bc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Changban Recog - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.167 - posY: 1.42713022 - posZ: -77.08057 - rotX: 0.02080646 - rotY: 270.008545 - rotZ: 0.0167749077 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592410 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4b3ed6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Infant Care - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.67992 - posY: 1.43674386 - posZ: -77.177124 - rotX: 0.02080631 - rotY: 270.008545 - rotZ: 0.0167748556 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592411 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d60bb0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Monumental History - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.5731354 - posY: 1.44770479 - posZ: -76.9989548 - rotX: 0.0208059344 - rotY: 270.008545 - rotZ: 0.0167736337 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592412 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0d98cd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Empty Fort - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.292202 - posY: 1.45130634 - posZ: -77.37188 - rotX: 0.008660985 - rotY: 270.047455 - rotZ: 0.0138463965 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592413 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d776e7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mysterious Suspense - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.89086 - posY: 1.46551156 - posZ: -77.67901 - rotX: 0.020806551 - rotY: 270.008545 - rotZ: 0.0167746115 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592414 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bcf3b0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Straw Shoes - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.54368 - posY: 1.4751339 - posZ: -77.33252 - rotX: 0.020806592 - rotY: 270.008545 - rotZ: 0.0167746376 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592415 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5bd99d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Butcher's Hatchet - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.6979866 - posY: 1.48481083 - posZ: -77.11732 - rotX: 0.02080632 - rotY: 270.008545 - rotZ: 0.0167744532 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592416 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0b3db4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Spiked Mace - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.5693169 - posY: 1.49432123 - posZ: -77.63921 - rotX: 0.0208065361 - rotY: 270.008545 - rotZ: 0.0167747047 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592417 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b9ec5e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Historical Novel - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.03647 - posY: 1.50409186 - posZ: -77.3271942 - rotX: 0.0208064523 - rotY: 270.008545 - rotZ: 0.0167748816 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -DeckIDs: -- 592400 -- 592401 -- 592402 -- 592403 -- 592404 -- 592405 -- 592406 -- 592407 -- 592408 -- 592409 -- 592410 -- 592411 -- 592412 -- 592413 -- 592414 -- 592415 -- 592416 -- 592417 -Description: Everyone in play shares the same "BGO" deck. When a card from the "BGO" - deck enters a play area, it's considered a part of that player's deck during this - game. It will go into the player's discard pile once you discard it. -DragSelectable: true -GMNotes: '' -GUID: bc1f8d -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Deck -Nickname: A "Battle Goes On" deck -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -26.3 - posY: 3.47 - posZ: -61.24 - rotX: 0.02 - rotY: 270.0 - rotZ: 180.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards a768fb.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards a768fb.yaml deleted file mode 100644 index 70aa98fec..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards a768fb.yaml +++ /dev/null @@ -1,70 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 0.02148666 - g: 0.00100758043 - r: 0.02148666 -ContainedObjects: -- !include 'Custom_Model_Bag starter deck & cards a768fb/Deck A Battle Goes On deck - ab2bad.yaml' -- !include 'Custom_Model_Bag starter deck & cards a768fb/Card Chronic Headache 1c134f.yaml' -- !include 'Custom_Model_Bag starter deck & cards a768fb/Card Proud Aspirations e8d9ba.yaml' -- !include 'Custom_Model_Bag starter deck & cards a768fb/Card Shadow Runner d65904.yaml' -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/ - MaterialIndex: 1 - MeshURL: http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/ - NormalURL: http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/ - TypeIndex: 6 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: a768fb -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: starter deck & cards -PhysicsMaterial: - BounceCombine: 0 - Bounciness: 0.0 - DynamicFriction: 0.6 - FrictionCombine: 0 - StaticFriction: 0.6 -Rigidbody: - AngularDrag: 5.0 - Drag: 5.0 - Mass: 1.375 - UseGravity: true -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -26.3 - posY: 1.28 - posZ: -53.44 - rotX: 359.98 - rotY: 89.98 - rotZ: 359.98 - scaleX: 2.0 - scaleY: 2.0 - scaleZ: 2.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards a768fb/Card Chronic Headache 1c134f.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards a768fb/Card Chronic Headache 1c134f.yaml deleted file mode 100644 index 52b606435..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards a768fb/Card Chronic Headache 1c134f.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592420 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: A Cao Cao Weakness -DragSelectable: true -GMNotes: '' -GUID: 1c134f -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Chronic Headache -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -25.02 - posY: 3.38 - posZ: -54.04 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards a768fb/Card Proud Aspirations e8d9ba.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards a768fb/Card Proud Aspirations e8d9ba.yaml deleted file mode 100644 index 519dffa5f..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards a768fb/Card Proud Aspirations e8d9ba.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592419 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: A Cao Cao Signature -DragSelectable: true -GMNotes: '' -GUID: e8d9ba -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Proud Aspirations -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -26.49 - posY: 3.38 - posZ: -53.59 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards a768fb/Card Shadow Runner d65904.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards a768fb/Card Shadow Runner d65904.yaml deleted file mode 100644 index 0059765f6..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards a768fb/Card Shadow Runner d65904.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592418 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: A Cao Cao Signature -DragSelectable: true -GMNotes: '' -GUID: d65904 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Shadow Runner -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -25.6 - posY: 3.38 - posZ: -53.31 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards a768fb/Deck A Battle Goes On deck ab2bad.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards a768fb/Deck A Battle Goes On deck ab2bad.yaml deleted file mode 100644 index 7dc1b4a65..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards a768fb/Deck A Battle Goes On deck ab2bad.yaml +++ /dev/null @@ -1,990 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -ContainedObjects: -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592400 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8a775d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Seven Stars - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.985302 - posY: 1.29232764 - posZ: -77.30829 - rotX: 0.0208061524 - rotY: 270.008545 - rotZ: 0.0167743545 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592401 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8f85af - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ancient Compass - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.9665146 - posY: 1.32576036 - posZ: -77.27228 - rotX: 0.020806523 - rotY: 270.008545 - rotZ: 0.0167748854 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592402 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6223c5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fulu - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.03376 - posY: 1.35986257 - posZ: -77.92008 - rotX: 0.0208064932 - rotY: 270.008545 - rotZ: 0.0167746544 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592403 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f60e82 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Escaping Tong Pass - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.5135078 - posY: 1.36986566 - posZ: -76.51876 - rotX: 0.0208062325 - rotY: 270.008545 - rotZ: 0.01677456 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592404 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d71d31 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Prodigy Healing - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.930748 - posY: 1.37883461 - posZ: -77.75735 - rotX: 0.020806063 - rotY: 270.008545 - rotZ: 0.016774809 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592405 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 72e480 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Canonical Texts - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.07592 - posY: 1.38860857 - posZ: -77.05106 - rotX: 0.0208064876 - rotY: 270.008545 - rotZ: 0.0167748984 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592406 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 840b9f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: On a Streak - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.2717323 - posY: 1.39860189 - posZ: -77.83151 - rotX: 0.020806564 - rotY: 270.008545 - rotZ: 0.0167747661 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592407 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 17ecf7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sky Lantern - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.6919022 - posY: 1.4088378 - posZ: -77.93121 - rotX: 0.0208065063 - rotY: 270.008545 - rotZ: 0.0167749133 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592408 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ba93cc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Treasure Bowl - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.6176147 - posY: 1.41838038 - posZ: -78.0556946 - rotX: 0.0208064448 - rotY: 270.008545 - rotZ: 0.01677476 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592409 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: eaa1bc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Changban Recog - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.167 - posY: 1.42713022 - posZ: -77.08057 - rotX: 0.02080646 - rotY: 270.008545 - rotZ: 0.0167749077 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592410 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4b3ed6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Infant Care - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.67992 - posY: 1.43674386 - posZ: -77.177124 - rotX: 0.02080631 - rotY: 270.008545 - rotZ: 0.0167748556 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592411 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d60bb0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Monumental History - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.5731354 - posY: 1.44770479 - posZ: -76.9989548 - rotX: 0.0208059344 - rotY: 270.008545 - rotZ: 0.0167736337 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592412 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0d98cd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Empty Fort - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.292202 - posY: 1.45130634 - posZ: -77.37188 - rotX: 0.008660985 - rotY: 270.047455 - rotZ: 0.0138463965 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592413 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d776e7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mysterious Suspense - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.89086 - posY: 1.46551156 - posZ: -77.67901 - rotX: 0.020806551 - rotY: 270.008545 - rotZ: 0.0167746115 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592414 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bcf3b0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Straw Shoes - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.54368 - posY: 1.4751339 - posZ: -77.33252 - rotX: 0.020806592 - rotY: 270.008545 - rotZ: 0.0167746376 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592415 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5bd99d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Butcher's Hatchet - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.6979866 - posY: 1.48481083 - posZ: -77.11732 - rotX: 0.02080632 - rotY: 270.008545 - rotZ: 0.0167744532 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592416 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0b3db4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Spiked Mace - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.5693169 - posY: 1.49432123 - posZ: -77.63921 - rotX: 0.0208065361 - rotY: 270.008545 - rotZ: 0.0167747047 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592417 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b9ec5e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Historical Novel - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.03647 - posY: 1.50409186 - posZ: -77.3271942 - rotX: 0.0208064523 - rotY: 270.008545 - rotZ: 0.0167748816 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -DeckIDs: -- 592400 -- 592401 -- 592402 -- 592403 -- 592404 -- 592405 -- 592406 -- 592407 -- 592408 -- 592409 -- 592410 -- 592411 -- 592412 -- 592413 -- 592414 -- 592415 -- 592416 -- 592417 -Description: Everyone in play shares the same "BGO" deck. When a card from the "BGO" - deck enters a play area, it's considered a part of that player's deck during this - game. It will go into the player's discard pile once you discard it. -DragSelectable: true -GMNotes: '' -GUID: ab2bad -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Deck -Nickname: A "Battle Goes On" deck -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -26.3 - posY: 3.47 - posZ: -53.44 - rotX: 0.02 - rotY: 270.0 - rotZ: 180.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards b2b405.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards b2b405.yaml deleted file mode 100644 index e7d20c6c6..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards b2b405.yaml +++ /dev/null @@ -1,70 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 0.02148666 - g: 0.00100758043 - r: 0.02148666 -ContainedObjects: -- !include 'Custom_Model_Bag starter deck & cards b2b405/Deck A Battle Goes On deck - 907f2f.yaml' -- !include 'Custom_Model_Bag starter deck & cards b2b405/Card Battle Goes On c86631.yaml' -- !include 'Custom_Model_Bag starter deck & cards b2b405/Card Essential Arts of Peace - 4dc7fa.yaml' -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/ - MaterialIndex: 1 - MeshURL: http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/ - NormalURL: http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/ - TypeIndex: 6 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: b2b405 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: starter deck & cards -PhysicsMaterial: - BounceCombine: 0 - Bounciness: 0.0 - DynamicFriction: 0.6 - FrictionCombine: 0 - StaticFriction: 0.6 -Rigidbody: - AngularDrag: 5.0 - Drag: 5.0 - Mass: 1.375 - UseGravity: true -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -26.31 - posY: 1.27 - posZ: -76.95 - rotX: 359.98 - rotY: 89.92 - rotZ: 359.98 - scaleX: 2.0 - scaleY: 2.0 - scaleZ: 2.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards b2b405/Card Battle Goes On c86631.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards b2b405/Card Battle Goes On c86631.yaml deleted file mode 100644 index 01aad9b4e..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards b2b405/Card Battle Goes On c86631.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592426 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: A Nan Hua Weakness -DragSelectable: true -GMNotes: '' -GUID: c86631 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Battle Goes On -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -25.14 - posY: 3.37 - posZ: -77.34 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards b2b405/Card Essential Arts of Peace 4dc7fa.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards b2b405/Card Essential Arts of Peace 4dc7fa.yaml deleted file mode 100644 index 2c21875bd..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards b2b405/Card Essential Arts of Peace 4dc7fa.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592425 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: A Nan Hua Signature -DragSelectable: true -GMNotes: '' -GUID: 4dc7fa -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Essential Arts of Peace -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -25.74 - posY: 3.37 - posZ: -76.26 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards b2b405/Deck A Battle Goes On deck 907f2f.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards b2b405/Deck A Battle Goes On deck 907f2f.yaml deleted file mode 100644 index 656338423..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards b2b405/Deck A Battle Goes On deck 907f2f.yaml +++ /dev/null @@ -1,990 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -ContainedObjects: -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592400 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8a775d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Seven Stars - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.985302 - posY: 1.29232764 - posZ: -77.30829 - rotX: 0.0208061524 - rotY: 270.008545 - rotZ: 0.0167743545 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592401 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8f85af - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ancient Compass - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.9665146 - posY: 1.32576036 - posZ: -77.27228 - rotX: 0.020806523 - rotY: 270.008545 - rotZ: 0.0167748854 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592402 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6223c5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fulu - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.03376 - posY: 1.35986257 - posZ: -77.92008 - rotX: 0.0208064932 - rotY: 270.008545 - rotZ: 0.0167746544 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592403 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f60e82 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Escaping Tong Pass - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.5135078 - posY: 1.36986566 - posZ: -76.51876 - rotX: 0.0208062325 - rotY: 270.008545 - rotZ: 0.01677456 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592404 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d71d31 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Prodigy Healing - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.930748 - posY: 1.37883461 - posZ: -77.75735 - rotX: 0.020806063 - rotY: 270.008545 - rotZ: 0.016774809 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592405 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 72e480 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Canonical Texts - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.07592 - posY: 1.38860857 - posZ: -77.05106 - rotX: 0.0208064876 - rotY: 270.008545 - rotZ: 0.0167748984 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592406 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 840b9f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: On a Streak - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.2717323 - posY: 1.39860189 - posZ: -77.83151 - rotX: 0.020806564 - rotY: 270.008545 - rotZ: 0.0167747661 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592407 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 17ecf7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sky Lantern - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.6919022 - posY: 1.4088378 - posZ: -77.93121 - rotX: 0.0208065063 - rotY: 270.008545 - rotZ: 0.0167749133 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592408 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ba93cc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Treasure Bowl - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.6176147 - posY: 1.41838038 - posZ: -78.0556946 - rotX: 0.0208064448 - rotY: 270.008545 - rotZ: 0.01677476 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592409 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: eaa1bc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Changban Recog - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.167 - posY: 1.42713022 - posZ: -77.08057 - rotX: 0.02080646 - rotY: 270.008545 - rotZ: 0.0167749077 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592410 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4b3ed6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Infant Care - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.67992 - posY: 1.43674386 - posZ: -77.177124 - rotX: 0.02080631 - rotY: 270.008545 - rotZ: 0.0167748556 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592411 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d60bb0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Monumental History - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.5731354 - posY: 1.44770479 - posZ: -76.9989548 - rotX: 0.0208059344 - rotY: 270.008545 - rotZ: 0.0167736337 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592412 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0d98cd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Empty Fort - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.292202 - posY: 1.45130634 - posZ: -77.37188 - rotX: 0.008660985 - rotY: 270.047455 - rotZ: 0.0138463965 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592413 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d776e7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mysterious Suspense - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.89086 - posY: 1.46551156 - posZ: -77.67901 - rotX: 0.020806551 - rotY: 270.008545 - rotZ: 0.0167746115 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592414 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bcf3b0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Straw Shoes - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.54368 - posY: 1.4751339 - posZ: -77.33252 - rotX: 0.020806592 - rotY: 270.008545 - rotZ: 0.0167746376 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592415 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5bd99d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Butcher's Hatchet - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.6979866 - posY: 1.48481083 - posZ: -77.11732 - rotX: 0.02080632 - rotY: 270.008545 - rotZ: 0.0167744532 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592416 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0b3db4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Spiked Mace - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.5693169 - posY: 1.49432123 - posZ: -77.63921 - rotX: 0.0208065361 - rotY: 270.008545 - rotZ: 0.0167747047 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592417 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b9ec5e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Historical Novel - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.03647 - posY: 1.50409186 - posZ: -77.3271942 - rotX: 0.0208064523 - rotY: 270.008545 - rotZ: 0.0167748816 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -DeckIDs: -- 592400 -- 592401 -- 592402 -- 592403 -- 592404 -- 592405 -- 592406 -- 592407 -- 592408 -- 592409 -- 592410 -- 592411 -- 592412 -- 592413 -- 592414 -- 592415 -- 592416 -- 592417 -Description: Everyone in play shares the same "BGO" deck. When a card from the "BGO" - deck enters a play area, it's considered a part of that player's deck during this - game. It will go into the player's discard pile once you discard it. -DragSelectable: true -GMNotes: '' -GUID: 907f2f -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Deck -Nickname: A "Battle Goes On" deck -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -26.3 - posY: 3.46 - posZ: -76.95 - rotX: 0.02 - rotY: 270.0 - rotZ: 180.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards fd8d58.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards fd8d58.yaml deleted file mode 100644 index 32e8ed3cb..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards fd8d58.yaml +++ /dev/null @@ -1,69 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 0.02148666 - g: 0.00100758043 - r: 0.02148666 -ContainedObjects: -- !include 'Custom_Model_Bag starter deck & cards fd8d58/Deck A Battle Goes On deck - 6fb32b.yaml' -- !include 'Custom_Model_Bag starter deck & cards fd8d58/Card Just a Dream 9ee779.yaml' -- !include 'Custom_Model_Bag starter deck & cards fd8d58/Card Through It All c6ffb1.yaml' -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/ - MaterialIndex: 1 - MeshURL: http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/ - NormalURL: http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/ - TypeIndex: 6 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: fd8d58 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: starter deck & cards -PhysicsMaterial: - BounceCombine: 0 - Bounciness: 0.0 - DynamicFriction: 0.6 - FrictionCombine: 0 - StaticFriction: 0.6 -Rigidbody: - AngularDrag: 5.0 - Drag: 5.0 - Mass: 1.375 - UseGravity: true -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 29.81 - posY: 1.89 - posZ: -5.81 - rotX: 359.98 - rotY: 89.98 - rotZ: 359.98 - scaleX: 2.0 - scaleY: 2.0 - scaleZ: 2.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards fd8d58/Card Just a Dream 9ee779.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards fd8d58/Card Just a Dream 9ee779.yaml deleted file mode 100644 index 069f3c91c..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards fd8d58/Card Just a Dream 9ee779.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592428 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: A Chen Shou Weakness -DragSelectable: true -GMNotes: '' -GUID: 9ee779 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Just a Dream? -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -25.71 - posY: 3.37 - posZ: -84.56 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards fd8d58/Card Through It All c6ffb1.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards fd8d58/Card Through It All c6ffb1.yaml deleted file mode 100644 index 5c7f80bfa..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards fd8d58/Card Through It All c6ffb1.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 592427 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -Description: A Chen Shou Signature -DragSelectable: true -GMNotes: '' -GUID: c6ffb1 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Through It All -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -25.33 - posY: 3.37 - posZ: -84.59 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards fd8d58/Deck A Battle Goes On deck 6fb32b.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards fd8d58/Deck A Battle Goes On deck 6fb32b.yaml deleted file mode 100644 index 99e0981f3..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & cards fd8d58/Deck A Battle Goes On deck 6fb32b.yaml +++ /dev/null @@ -1,990 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -ContainedObjects: -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592400 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8a775d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Seven Stars - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.985302 - posY: 1.29232764 - posZ: -77.30829 - rotX: 0.0208061524 - rotY: 270.008545 - rotZ: 0.0167743545 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592401 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8f85af - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ancient Compass - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.9665146 - posY: 1.32576036 - posZ: -77.27228 - rotX: 0.020806523 - rotY: 270.008545 - rotZ: 0.0167748854 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592402 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6223c5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fulu - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.03376 - posY: 1.35986257 - posZ: -77.92008 - rotX: 0.0208064932 - rotY: 270.008545 - rotZ: 0.0167746544 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592403 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f60e82 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Escaping Tong Pass - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.5135078 - posY: 1.36986566 - posZ: -76.51876 - rotX: 0.0208062325 - rotY: 270.008545 - rotZ: 0.01677456 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592404 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d71d31 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Prodigy Healing - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.930748 - posY: 1.37883461 - posZ: -77.75735 - rotX: 0.020806063 - rotY: 270.008545 - rotZ: 0.016774809 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592405 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 72e480 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Canonical Texts - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.07592 - posY: 1.38860857 - posZ: -77.05106 - rotX: 0.0208064876 - rotY: 270.008545 - rotZ: 0.0167748984 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592406 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 840b9f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: On a Streak - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.2717323 - posY: 1.39860189 - posZ: -77.83151 - rotX: 0.020806564 - rotY: 270.008545 - rotZ: 0.0167747661 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592407 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 17ecf7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sky Lantern - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.6919022 - posY: 1.4088378 - posZ: -77.93121 - rotX: 0.0208065063 - rotY: 270.008545 - rotZ: 0.0167749133 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592408 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ba93cc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Treasure Bowl - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.6176147 - posY: 1.41838038 - posZ: -78.0556946 - rotX: 0.0208064448 - rotY: 270.008545 - rotZ: 0.01677476 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592409 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: eaa1bc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Changban Recog - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.167 - posY: 1.42713022 - posZ: -77.08057 - rotX: 0.02080646 - rotY: 270.008545 - rotZ: 0.0167749077 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592410 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4b3ed6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Infant Care - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.67992 - posY: 1.43674386 - posZ: -77.177124 - rotX: 0.02080631 - rotY: 270.008545 - rotZ: 0.0167748556 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592411 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d60bb0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Monumental History - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.5731354 - posY: 1.44770479 - posZ: -76.9989548 - rotX: 0.0208059344 - rotY: 270.008545 - rotZ: 0.0167736337 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592412 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0d98cd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Empty Fort - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.292202 - posY: 1.45130634 - posZ: -77.37188 - rotX: 0.008660985 - rotY: 270.047455 - rotZ: 0.0138463965 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592413 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d776e7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mysterious Suspense - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.89086 - posY: 1.46551156 - posZ: -77.67901 - rotX: 0.020806551 - rotY: 270.008545 - rotZ: 0.0167746115 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592414 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bcf3b0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Straw Shoes - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.54368 - posY: 1.4751339 - posZ: -77.33252 - rotX: 0.020806592 - rotY: 270.008545 - rotZ: 0.0167746376 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592415 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5bd99d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Butcher's Hatchet - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.6979866 - posY: 1.48481083 - posZ: -77.11732 - rotX: 0.02080632 - rotY: 270.008545 - rotZ: 0.0167744532 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592416 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0b3db4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Spiked Mace - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 32.5693169 - posY: 1.49432123 - posZ: -77.63921 - rotX: 0.0208065361 - rotY: 270.008545 - rotZ: 0.0167747047 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592417 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b9ec5e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Historical Novel - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 33.03647 - posY: 1.50409186 - posZ: -77.3271942 - rotX: 0.0208064523 - rotY: 270.008545 - rotZ: 0.0167748816 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - Value: 0 - XmlUI: '' -CustomDeck: - '5924': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: https://i.imgur.com/566aMnO.jpg - NumHeight: 5 - NumWidth: 6 - Type: 0 - UniqueBack: false -DeckIDs: -- 592400 -- 592401 -- 592402 -- 592403 -- 592404 -- 592405 -- 592406 -- 592407 -- 592408 -- 592409 -- 592410 -- 592411 -- 592412 -- 592413 -- 592414 -- 592415 -- 592416 -- 592417 -Description: Everyone in play shares the same "BGO" deck. When a card from the "BGO" - deck enters a play area, it's considered a part of that player's deck during this - game. It will go into the player's discard pile once you discard it. -DragSelectable: true -GMNotes: '' -GUID: 6fb32b -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Deck -Nickname: A "Battle Goes On" deck -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -26.3 - posY: 3.46 - posZ: -84.82 - rotX: 0.02 - rotY: 270.0 - rotZ: 180.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Deck d4c471.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Deck d4c471.yaml deleted file mode 100644 index 6d9f8be41..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Deck d4c471.yaml +++ /dev/null @@ -1,208 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -ContainedObjects: -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592506 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5925': - BackIsHidden: true - BackURL: https://i.imgur.com/icgJdJQ.jpg - FaceURL: https://i.imgur.com/VnGUaFg.jpg - NumHeight: 2 - NumWidth: 4 - Type: 0 - UniqueBack: true - Description: The Historian - DragSelectable: true - GMNotes: '' - GUID: 01b1e1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Chen Shou - Rogue / Seeker - SidewaysCard: true - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -22.6168957 - posY: 1.30638278 - posZ: -84.81849 - rotX: 0.0167603921 - rotY: 179.969711 - rotZ: 359.9792 - scaleX: 1.1 - scaleY: 1.0 - scaleZ: 1.1 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592505 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5925': - BackIsHidden: true - BackURL: https://i.imgur.com/icgJdJQ.jpg - FaceURL: https://i.imgur.com/VnGUaFg.jpg - NumHeight: 2 - NumWidth: 4 - Type: 0 - UniqueBack: true - Description: The Historian - DragSelectable: true - GMNotes: '' - GUID: '571676' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Chen Shou - Guardian / Mythic - SidewaysCard: true - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -22.7244835 - posY: 1.33982444 - posZ: -85.02744 - rotX: 0.0167624373 - rotY: 179.975357 - rotZ: 359.9792 - scaleX: 1.1 - scaleY: 1.0 - scaleZ: 1.1 - Value: 0 - XmlUI: '' -- AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 - Autoraise: true - CardID: 592504 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5925': - BackIsHidden: true - BackURL: https://i.imgur.com/icgJdJQ.jpg - FaceURL: https://i.imgur.com/VnGUaFg.jpg - NumHeight: 2 - NumWidth: 4 - Type: 0 - UniqueBack: true - Description: Skill Value Card - DragSelectable: true - GMNotes: '' - GUID: 9dd0d1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - LayoutGroupSortIndex: 0 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Chen Shou - SidewaysCard: true - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -23.48657 - posY: 1.37356687 - posZ: -84.96272 - rotX: 0.0165218785 - rotY: 180.005463 - rotZ: 359.978882 - scaleX: 1.1 - scaleY: 1.0 - scaleZ: 1.1 - Value: 0 - XmlUI: '' -CustomDeck: - '5925': - BackIsHidden: true - BackURL: https://i.imgur.com/icgJdJQ.jpg - FaceURL: https://i.imgur.com/VnGUaFg.jpg - NumHeight: 2 - NumWidth: 4 - Type: 0 - UniqueBack: true -DeckIDs: -- 592506 -- 592505 -- 592504 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: d4c471 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Deck -Nickname: '' -SidewaysCard: true -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -22.62 - posY: 1.33 - posZ: -84.82 - rotX: 0.02 - rotY: 179.97 - rotZ: 359.98 - scaleX: 1.1 - scaleY: 1.0 - scaleZ: 1.1 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Notecard “Battle Goes On” Player Cards 5b9142.yaml b/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Notecard “Battle Goes On” Player Cards 5b9142.yaml deleted file mode 100644 index 8fccd4e13..000000000 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5/Notecard “Battle Goes On” Player Cards 5b9142.yaml +++ /dev/null @@ -1,45 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -Description: "You may purchase & include cards like you normally would. \nDuring setup,\ - \ build a \"BGO\" deck using the 18 cards on the right, one copy of each. (Other\ - \ players purchasing cards won't affect the deck) Everyone in play shares the same\ - \ \"BGO\" deck. When a card from the \"BGO\" deck enters a play area, it's considered\ - \ a part of that player's deck during this game. It will go into the player's discard\ - \ pile once you discard it." -DragSelectable: true -GMNotes: '' -GUID: 5b9142 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Notecard -Nickname: "\u201CBattle Goes On\u201D Player Cards" -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 5.74 - posY: 1.38 - posZ: -58.15 - rotX: 359.98 - rotY: 90.0 - rotZ: 359.98 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bless tokens afa06b.yaml b/unpacked/Custom_Model_Bag Bless tokens afa06b.yaml index afc3a6336..e8895ec13 100644 --- a/unpacked/Custom_Model_Bag Bless tokens afa06b.yaml +++ b/unpacked/Custom_Model_Bag Bless tokens afa06b.yaml @@ -64,9 +64,9 @@ Transform: posX: 2.84 posY: 1.64 posZ: -11.24 - rotX: 359.96 - rotY: 224.99 - rotZ: 0.07 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 scaleX: 0.7 scaleY: 0.7 scaleZ: 0.7 diff --git a/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile 09aa04.yaml b/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile 09aa04.yaml index c64dbfb85..18b34c27b 100644 --- a/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile 09aa04.yaml +++ b/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile 09aa04.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.0489412472 - g: 0.328594118 - r: 0.3745644 + b: 0.04894 + g: 0.32859 + r: 0.37456 CustomImage: CustomTile: Stackable: false @@ -40,9 +40,9 @@ Transform: posX: -1.47 posY: 1.69 posZ: -26.93 - rotX: 0.08 + rotX: 0.0 rotY: 90.0 - rotZ: 359.98 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile 5ca99d.yaml b/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile 5ca99d.yaml index 915ebc1cc..19e2e72d1 100644 --- a/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile 5ca99d.yaml +++ b/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile 5ca99d.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.0489412472 - g: 0.328594118 - r: 0.3745644 + b: 0.04894 + g: 0.32859 + r: 0.37456 CustomImage: CustomTile: Stackable: false @@ -40,9 +40,9 @@ Transform: posX: -1.47 posY: 1.71 posZ: -26.93 - rotX: 0.08 + rotX: 0.0 rotY: 90.0 - rotZ: 359.98 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile 90e57c.yaml b/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile 90e57c.yaml index 1f033356b..adba7784b 100644 --- a/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile 90e57c.yaml +++ b/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile 90e57c.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.0489412472 - g: 0.328594118 - r: 0.3745644 + b: 0.04894 + g: 0.32859 + r: 0.37456 CustomImage: CustomTile: Stackable: false @@ -40,9 +40,9 @@ Transform: posX: -1.47 posY: 1.71 posZ: -26.93 - rotX: 0.08 + rotX: 0.0 rotY: 90.0 - rotZ: 359.98 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile b2b7be.yaml b/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile b2b7be.yaml index 5e92b3da5..e9605c16a 100644 --- a/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile b2b7be.yaml +++ b/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile b2b7be.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.0489412472 - g: 0.328594118 - r: 0.3745644 + b: 0.04894 + g: 0.32859 + r: 0.37456 CustomImage: CustomTile: Stackable: false @@ -40,9 +40,9 @@ Transform: posX: -1.47 posY: 1.7 posZ: -26.93 - rotX: 0.08 + rotX: 0.0 rotY: 90.0 - rotZ: 359.98 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile bc1c12.yaml b/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile bc1c12.yaml index abef9f221..19e45d260 100644 --- a/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile bc1c12.yaml +++ b/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile bc1c12.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.0489412472 - g: 0.328594118 - r: 0.3745644 + b: 0.04894 + g: 0.32859 + r: 0.37456 CustomImage: CustomTile: Stackable: false @@ -40,9 +40,9 @@ Transform: posX: -1.47 posY: 1.69 posZ: -26.93 - rotX: 0.08 + rotX: 0.0 rotY: 90.0 - rotZ: 359.98 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile e9c4f9.yaml b/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile e9c4f9.yaml index af49544e4..0947b8904 100644 --- a/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile e9c4f9.yaml +++ b/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile e9c4f9.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.0489412472 - g: 0.328594118 - r: 0.3745644 + b: 0.04894 + g: 0.32859 + r: 0.37456 CustomImage: CustomTile: Stackable: false @@ -40,9 +40,9 @@ Transform: posX: -1.47 posY: 1.7 posZ: -26.93 - rotX: 0.08 + rotX: 0.0 rotY: 90.0 - rotZ: 359.98 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile eb0b16.yaml b/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile eb0b16.yaml index f28017477..e2e0154b6 100644 --- a/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile eb0b16.yaml +++ b/unpacked/Custom_Model_Bag Bless tokens afa06b/Custom_Tile eb0b16.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.04894092 - g: 0.328593671 - r: 0.374563962 + b: 0.04894 + g: 0.32859 + r: 0.37456 CustomImage: CustomTile: Stackable: false @@ -40,9 +40,9 @@ Transform: posX: -45.93 posY: 1.81 posZ: 4.08 - rotX: 0.03 + rotX: 0.0 rotY: 90.0 - rotZ: 359.98 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Bonded c5261f.ttslua b/unpacked/Custom_Model_Bag Bonded c5261f.ttslua deleted file mode 100644 index f999547e7..000000000 --- a/unpacked/Custom_Model_Bag Bonded c5261f.ttslua +++ /dev/null @@ -1,503 +0,0 @@ --- Utility memory bag by Directsun --- Version 2.5.2 --- Fork of Memory Bag 2.0 by MrStump - -function updateSave() - local data_to_save = {["ml"]=memoryList} - saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - -function combineMemoryFromBagsWithin() - local bagObjList = self.getObjects() - for _, bagObj in ipairs(bagObjList) do - local data = bagObj.lua_script_state - if data ~= nil then - local j = JSON.decode(data) - if j ~= nil and j.ml ~= nil then - for guid, entry in pairs(j.ml) do - memoryList[guid] = entry - end - end - end - end -end - -function updateMemoryWithMoves() - memoryList = memoryListBackup - --get the first transposed object's coordinates - local obj = getObjectFromGUID(moveGuid) - - -- p1 is where needs to go, p2 is where it was - local refObjPos = memoryList[moveGuid].pos - local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil) - local movedRotation = obj.getRotation() - for guid, entry in pairs(memoryList) do - memoryList[guid].pos.x = entry.pos.x - deltaPos.x - memoryList[guid].pos.y = entry.pos.y - deltaPos.y - memoryList[guid].pos.z = entry.pos.z - deltaPos.z - -- memoryList[guid].rot.x = movedRotation.x - -- memoryList[guid].rot.y = movedRotation.y - -- memoryList[guid].rot.z = movedRotation.z - end - - --theList[obj.getGUID()] = { - -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, - -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, - -- lock=obj.getLock() - --} - moveList = {} -end - -function onload(saved_data) - fresh = true - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - --Set up information off of loaded_data - memoryList = loaded_data.ml - else - --Set up information for if there is no saved saved data - memoryList = {} - end - - moveList = {} - moveGuid = nil - - if next(memoryList) == nil then - createSetupButton() - else - fresh = false - createMemoryActionButtons() - end -end - - ---Beginning Setup - - ---Make setup button -function createSetupButton() - self.createButton({ - label="Setup", click_function="buttonClick_setup", function_owner=self, - position={0,0.1,-2.1}, rotation={0,0,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} - }) -end - ---Triggered by Transpose button -function buttonClick_transpose() - moveGuid = nil - broadcastToAll("Select one object and move it- all objects will move relative to the new location", {0.75, 0.75, 1}) - memoryListBackup = duplicateTable(memoryList) - memoryList = {} - moveList = {} - self.clearButtons() - createButtonsOnAllObjects(true) - createSetupActionButtons(true) -end - ---Triggered by setup button, -function buttonClick_setup() - memoryListBackup = duplicateTable(memoryList) - memoryList = {} - self.clearButtons() - createButtonsOnAllObjects(false) - createSetupActionButtons(false) -end - -function getAllObjectsInMemory() - local objTable = {} - local curObj = {} - - for guid in pairs(memoryListBackup) do - curObj = getObjectFromGUID(guid) - table.insert(objTable, curObj) - end - - return objTable - -- return getAllObjects() -end - ---Creates selection buttons on objects -function createButtonsOnAllObjects(move) - local howManyButtons = 0 - - local objsToHaveButtons = {} - if move == true then - objsToHaveButtons = getAllObjectsInMemory() - else - objsToHaveButtons = getAllObjects() - end - - for _, obj in ipairs(objsToHaveButtons) do - if obj ~= self then - local dummyIndex = howManyButtons - --On a normal bag, the button positions aren't the same size as the bag. - globalScaleFactor = 1 * 1/self.getScale().x - --Super sweet math to set button positions - local selfPos = self.getPosition() - local objPos = obj.getPosition() - local deltaPos = findOffsetDistance(selfPos, objPos, obj) - local objPos = rotateLocalCoordinates(deltaPos, self) - objPos.x = -objPos.x * globalScaleFactor - objPos.y = objPos.y * globalScaleFactor - objPos.z = objPos.z * globalScaleFactor - --Offset rotation of bag - local rot = self.getRotation() - rot.y = -rot.y + 180 - --Create function - local funcName = "selectButton_" .. howManyButtons - local func = function() buttonClick_selection(dummyIndex, obj, move) end - local color = {0.75,0.25,0.25,0.6} - local colorMove = {0,0,1,0.6} - if move == true then - color = colorMove - end - self.setVar(funcName, func) - self.createButton({ - click_function=funcName, function_owner=self, - position=objPos, rotation=rot, height=500, width=500, - color=color, - }) - howManyButtons = howManyButtons + 1 - end - end -end - ---Creates submit and cancel buttons -function createSetupActionButtons(move) - self.createButton({ - label="Cancel", click_function="buttonClick_cancel", function_owner=self, - position={-1,0.1,-2.1}, rotation={0,0,0}, height=350, width=900, - font_size=250, color={0,0,0}, font_color={1,1,1} - }) - - self.createButton({ - label="Submit", click_function="buttonClick_submit", function_owner=self, - position={-1,0.1,-3.7}, rotation={0,0,0}, height=350, width=900, - font_size=250, color={0,0,0}, font_color={1,1,1} - }) - - if move == false then - self.createButton({ - label="Add", click_function="buttonClick_add", function_owner=self, - position={1,0.1,-2.1}, rotation={0,0,0}, height=350, width=900, - font_size=250, color={0,0,0}, font_color={0.25,1,0.25} - }) - - if fresh == false then - self.createButton({ - label="Set New", click_function="buttonClick_setNew", function_owner=self, - position={1,0.1,-3.7}, rotation={0,0,0}, height=350, width=900, - font_size=250, color={0,0,0}, font_color={0.75,0.75,1} - }) - self.createButton({ - label="Remove", click_function="buttonClick_remove", function_owner=self, - position={1,0.1,-2.9}, rotation={0,0,0}, height=350, width=900, - font_size=250, color={0,0,0}, font_color={1,0.25,0.25} - }) - end - end - - self.createButton({ - label="Reset", click_function="buttonClick_reset", function_owner=self, - position={-1,0.1,-2.9}, rotation={0,0,0}, height=350, width=900, - font_size=250, color={0,0,0}, font_color={1,1,1} - }) -end - - ---During Setup - - ---Checks or unchecks buttons -function buttonClick_selection(index, obj, move) - local colorMove = {0,0,1,0.6} - local color = {0,1,0,0.6} - - previousGuid = selectedGuid - selectedGuid = obj.getGUID() - - theList = memoryList - if move == true then - theList = moveList - if previousGuid ~= nil and previousGuid ~= selectedGuid then - local prevObj = getObjectFromGUID(previousGuid) - prevObj.highlightOff() - self.editButton({index=previousIndex, color=colorMove}) - theList[previousGuid] = nil - end - previousIndex = index - end - - if theList[selectedGuid] == nil then - self.editButton({index=index, color=color}) - --Adding pos/rot to memory table - local pos, rot = obj.getPosition(), obj.getRotation() - --I need to add it like this or it won't save due to indexing issue - theList[obj.getGUID()] = { - pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)}, - rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)}, - lock=obj.getLock() - } - obj.highlightOn({0,1,0}) - else - color = {0.75,0.25,0.25,0.6} - if move == true then - color = colorMove - end - self.editButton({index=index, color=color}) - theList[obj.getGUID()] = nil - obj.highlightOff() - end -end - ---Cancels selection process -function buttonClick_cancel() - memoryList = memoryListBackup - moveList = {} - self.clearButtons() - if next(memoryList) == nil then - createSetupButton() - else - createMemoryActionButtons() - end - removeAllHighlights() - broadcastToAll("Selection Canceled", {1,1,1}) - moveGuid = nil -end - ---Saves selections -function buttonClick_submit() - fresh = false - if next(moveList) ~= nil then - for guid in pairs(moveList) do - moveGuid = guid - end - if memoryListBackup[moveGuid] == nil then - broadcastToAll("Item selected for moving is not already in memory", {1, 0.25, 0.25}) - else - broadcastToAll("Moving all items in memory relative to new objects position!", {0.75, 0.75, 1}) - self.clearButtons() - createMemoryActionButtons() - local count = 0 - for guid in pairs(moveList) do - moveGuid = guid - count = count + 1 - local obj = getObjectFromGUID(guid) - if obj ~= nil then obj.highlightOff() end - end - updateMemoryWithMoves() - updateSave() - buttonClick_place() - end - elseif next(memoryList) == nil and moveGuid == nil then - memoryList = memoryListBackup - broadcastToAll("No selections made.", {0.75, 0.25, 0.25}) - end - combineMemoryFromBagsWithin() - self.clearButtons() - createMemoryActionButtons() - local count = 0 - for guid in pairs(memoryList) do - count = count + 1 - local obj = getObjectFromGUID(guid) - if obj ~= nil then obj.highlightOff() end - end - broadcastToAll(count.." Objects Saved", {1,1,1}) - updateSave() - moveGuid = nil -end - -function combineTables(first_table, second_table) - for k,v in pairs(second_table) do first_table[k] = v end -end - -function buttonClick_add() - fresh = false - combineTables(memoryList, memoryListBackup) - broadcastToAll("Adding internal bags and selections to existing memory", {0.25, 0.75, 0.25}) - combineMemoryFromBagsWithin() - self.clearButtons() - createMemoryActionButtons() - local count = 0 - for guid in pairs(memoryList) do - count = count + 1 - local obj = getObjectFromGUID(guid) - if obj ~= nil then obj.highlightOff() end - end - broadcastToAll(count.." Objects Saved", {1,1,1}) - updateSave() -end - -function buttonClick_remove() - broadcastToAll("Removing Selected Entries From Memory", {1.0, 0.25, 0.25}) - self.clearButtons() - createMemoryActionButtons() - local count = 0 - for guid in pairs(memoryList) do - count = count + 1 - memoryListBackup[guid] = nil - local obj = getObjectFromGUID(guid) - if obj ~= nil then obj.highlightOff() end - end - broadcastToAll(count.." Objects Removed", {1,1,1}) - memoryList = memoryListBackup - updateSave() -end - -function buttonClick_setNew() - broadcastToAll("Setting new position relative to items in memory", {0.75, 0.75, 1}) - self.clearButtons() - createMemoryActionButtons() - local count = 0 - for _, obj in ipairs(getAllObjects()) do - guid = obj.guid - if memoryListBackup[guid] ~= nil then - count = count + 1 - memoryListBackup[guid].pos = obj.getPosition() - memoryListBackup[guid].rot = obj.getRotation() - memoryListBackup[guid].lock = obj.getLock() - end - end - broadcastToAll(count.." Objects Saved", {1,1,1}) - memoryList = memoryListBackup - updateSave() -end - ---Resets bag to starting status -function buttonClick_reset() - fresh = true - memoryList = {} - self.clearButtons() - createSetupButton() - removeAllHighlights() - broadcastToAll("Tool Reset", {1,1,1}) - updateSave() -end - - ---After Setup - - ---Creates recall and place buttons -function createMemoryActionButtons() - self.createButton({ - label="Place", click_function="buttonClick_place", function_owner=self, - position={1,0.1,2.1}, rotation={0,0,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} - }) - self.createButton({ - label="Recall", click_function="buttonClick_recall", function_owner=self, - position={-1,0.1,2.1}, rotation={0,0,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} - }) - self.createButton({ - label="Setup", click_function="buttonClick_setup", function_owner=self, - position={0,0.1,-2.1}, rotation={0,0,0}, height=350, width=800, - font_size=250, color={0,0,0}, font_color={1,1,1} - }) ---- self.createButton({ ---- label="Move", click_function="buttonClick_transpose", function_owner=self, ---- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800, ---- font_size=250, color={0,0,0}, font_color={0.75,0.75,1} ---- }) -end - ---Sends objects from bag/table to their saved position/rotation -function buttonClick_place() - local bagObjList = self.getObjects() - for guid, entry in pairs(memoryList) do - local obj = getObjectFromGUID(guid) - --If obj is out on the table, move it to the saved pos/rot - if obj ~= nil then - obj.setPositionSmooth(entry.pos) - obj.setRotationSmooth(entry.rot) - obj.setLock(entry.lock) - else - --If obj is inside of the bag - for _, bagObj in ipairs(bagObjList) do - if bagObj.guid == guid then - local item = self.takeObject({ - guid=guid, position=entry.pos, rotation=entry.rot, smooth=false - }) - item.setLock(entry.lock) - break - end - end - end - end - broadcastToAll("Objects Placed", {1,1,1}) -end - ---Recalls objects to bag from table -function buttonClick_recall() - for guid, entry in pairs(memoryList) do - local obj = getObjectFromGUID(guid) - if obj ~= nil then self.putObject(obj) end - end - broadcastToAll("Objects Recalled", {1,1,1}) -end - - ---Utility functions - - ---Find delta (difference) between 2 x/y/z coordinates -function findOffsetDistance(p1, p2, obj) - local yOffset = 0 - if obj ~= nil then - local bounds = obj.getBounds() - yOffset = (bounds.size.y - bounds.offset.y) - end - local deltaPos = {} - deltaPos.x = (p2.x-p1.x) - deltaPos.y = (p2.y-p1.y) + yOffset - deltaPos.z = (p2.z-p1.z) - return deltaPos -end - ---Used to rotate a set of coordinates by an angle -function rotateLocalCoordinates(desiredPos, obj) - local objPos, objRot = obj.getPosition(), obj.getRotation() - local angle = math.rad(objRot.y) - local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle) - local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle) - --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z} - return {x=x, y=desiredPos.y, z=z} -end - -function rotateMyCoordinates(desiredPos, obj) - local angle = math.rad(obj.getRotation().y) - local x = desiredPos.x * math.sin(angle) - local z = desiredPos.z * math.cos(angle) - return {x=x, y=desiredPos.y, z=z} -end - ---Coroutine delay, in seconds -function wait(time) - local start = os.time() - repeat coroutine.yield(0) until os.time() > start + time -end - ---Duplicates a table (needed to prevent it making reference to the same objects) -function duplicateTable(oldTable) - local newTable = {} - for k, v in pairs(oldTable) do - newTable[k] = v - end - return newTable -end - ---Moves scripted highlight from all objects -function removeAllHighlights() - for _, obj in ipairs(getAllObjects()) do - obj.highlightOff() - end -end - ---Round number (num) to the Nth decimal (dec) -function round(num, dec) - local mult = 10^(dec or 0) - return math.floor(num * mult + 0.5) / mult -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Bonded c5261f.yaml b/unpacked/Custom_Model_Bag Bonded c5261f.yaml deleted file mode 100644 index 85539a5df..000000000 --- a/unpacked/Custom_Model_Bag Bonded c5261f.yaml +++ /dev/null @@ -1,76 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -ContainedObjects: -- !include 'Custom_Model_Bag Bonded c5261f/Card Guardian of the Crystallizer 100e24.yaml' -- !include 'Custom_Model_Bag Bonded c5261f/Card Augur 143e38.yaml' -- !include 'Custom_Model_Bag Bonded c5261f/Card Bloodlust 14c7e0.yaml' -- !include 'Custom_Model_Bag Bonded c5261f/Card Wish Eater 20570c.yaml' -- !include 'Custom_Model_Bag Bonded c5261f/Card Pendant of the Queen 29f699.yaml' -- !include 'Custom_Model_Bag Bonded c5261f/Card The Stars Are Right 406a2b.yaml' -- !include 'Custom_Model_Bag Bonded c5261f/Card Unbound Beast 4a8eef.yaml' -- !include 'Custom_Model_Bag Bonded c5261f/Card Blood-Rite 4cc413.yaml' -- !include 'Custom_Model_Bag Bonded c5261f/Card Hope 4da36d.yaml' -- !include 'Custom_Model_Bag Bonded c5261f/Card Zeal 506382.yaml' -- !include 'Custom_Model_Bag Bonded c5261f/Card Essence of the Dream 6ad46b.yaml' -- !include 'Custom_Model_Bag Bonded c5261f/Card Soothing Melody 6ced1f.yaml' -- !include 'Custom_Model_Bag Bonded c5261f/Card Dream Parasite cb91bd.yaml' -- !include 'Custom_Model_Bag Bonded c5261f/Card Dream-Gate fa4c1e.yaml' -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - CustomShader: - FresnelStrength: 0.0 - SpecularColor: - b: 1.0 - g: 1.0 - r: 1.0 - SpecularIntensity: 0.0 - SpecularSharpness: 2.0 - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/784110538847770224/4D6AB235B353C755559B14FF6B92C257DBEC075B/ - MaterialIndex: 3 - MeshURL: https://pastebin.com/raw/ALrYhQGb - NormalURL: '' - TypeIndex: 6 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: c5261f -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: true -LuaScript: !include 'Custom_Model_Bag Bonded c5261f.ttslua' -LuaScriptState: '{"ml":{"100e24":{"lock":false,"pos":{"x":-33.8782,"y":1.3296,"z":69.509},"rot":{"x":0.0208,"y":269.9948,"z":0.0168}},"143e38":{"lock":false,"pos":{"x":-33.8782,"y":1.3269,"z":60.3088},"rot":{"x":0.0208,"y":269.9949,"z":0.0168}},"14c7e0":{"lock":false,"pos":{"x":-33.8782,"y":1.333,"z":81.009},"rot":{"x":0.0208,"y":269.9948,"z":0.0168}},"20570c":{"lock":false,"pos":{"x":-33.8782,"y":1.3337,"z":83.309},"rot":{"x":0.0208,"y":269.9898,"z":0.0168}},"29f699":{"lock":false,"pos":{"x":-33.8782,"y":1.3323,"z":78.709},"rot":{"x":0.0208,"y":269.9948,"z":0.0168}},"406a2b":{"lock":false,"pos":{"x":-33.8782,"y":1.3303,"z":71.809},"rot":{"x":0.0208,"y":269.9946,"z":0.0168}},"4a8eef":{"lock":false,"pos":{"x":-33.8782,"y":1.329,"z":67.209},"rot":{"x":0.0208,"y":269.9872,"z":0.0168}},"4cc413":{"lock":false,"pos":{"x":-33.8782,"y":1.3316,"z":76.409},"rot":{"x":0.0208,"y":269.9948,"z":0.0168}},"4da36d":{"lock":false,"pos":{"x":-33.8782,"y":1.3276,"z":62.6088},"rot":{"x":0.0208,"y":269.9948,"z":0.0168}},"506382":{"lock":false,"pos":{"x":-33.8782,"y":1.3283,"z":64.909},"rot":{"x":0.0208,"y":269.9948,"z":0.0168}},"6ad46b":{"lock":false,"pos":{"x":-33.8782,"y":1.331,"z":74.109},"rot":{"x":0.0208,"y":269.9683,"z":0.0168}},"6ced1f":{"lock":false,"pos":{"x":-33.8782,"y":1.3343,"z":85.609},"rot":{"x":0.0208,"y":269.9947,"z":0.0168}},"cb91bd":{"lock":false,"pos":{"x":-33.8782,"y":1.3263,"z":58.0087},"rot":{"x":0.0208,"y":270.021,"z":0.0168}},"fa4c1e":{"lock":false,"pos":{"x":-33.8782,"y":1.2675,"z":55.7088},"rot":{"x":0.0208,"y":270,"z":0.0168}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: Bonded -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -33.8 - posY: 1.38 - posZ: 91.6 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.2 - scaleY: 1.2 - scaleZ: 1.2 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bonded c5261f/Card Augur 143e38.yaml b/unpacked/Custom_Model_Bag Bonded c5261f/Card Augur 143e38.yaml deleted file mode 100644 index c2677bbe3..000000000 --- a/unpacked/Custom_Model_Bag Bonded c5261f/Card Augur 143e38.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 440626 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '4406': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 143e38 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Augur -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -33.88 - posY: 1.26 - posZ: 60.31 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bonded c5261f/Card Blood-Rite 4cc413.yaml b/unpacked/Custom_Model_Bag Bonded c5261f/Card Blood-Rite 4cc413.yaml deleted file mode 100644 index 7a9ac01bb..000000000 --- a/unpacked/Custom_Model_Bag Bonded c5261f/Card Blood-Rite 4cc413.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 848021 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '8480': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 4cc413 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Blood-Rite -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -33.88 - posY: 1.27 - posZ: 76.41 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bonded c5261f/Card Bloodlust 14c7e0.yaml b/unpacked/Custom_Model_Bag Bonded c5261f/Card Bloodlust 14c7e0.yaml deleted file mode 100644 index 1894d2c78..000000000 --- a/unpacked/Custom_Model_Bag Bonded c5261f/Card Bloodlust 14c7e0.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 449225 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '4492': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false -Description: Treachery -DragSelectable: true -GMNotes: '' -GUID: 14c7e0 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Bloodlust -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -33.88 - posY: 1.27 - posZ: 81.01 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bonded c5261f/Card Dream Parasite cb91bd.yaml b/unpacked/Custom_Model_Bag Bonded c5261f/Card Dream Parasite cb91bd.yaml deleted file mode 100644 index 807c3b405..000000000 --- a/unpacked/Custom_Model_Bag Bonded c5261f/Card Dream Parasite cb91bd.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 448736 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '4487': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false -Description: Weakness -DragSelectable: true -GMNotes: '' -GUID: cb91bd -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Dream Parasite -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -33.88 - posY: 1.26 - posZ: 58.01 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bonded c5261f/Card Dream-Gate fa4c1e.yaml b/unpacked/Custom_Model_Bag Bonded c5261f/Card Dream-Gate fa4c1e.yaml deleted file mode 100644 index cee3fcf54..000000000 --- a/unpacked/Custom_Model_Bag Bonded c5261f/Card Dream-Gate fa4c1e.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 541109 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '5411': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/775107869050061525/A759DF697FFB26F0F5B75E116A923E33F88FCA7B/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: fa4c1e -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Dream-Gate -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -33.88 - posY: 1.26 - posZ: 55.71 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bonded c5261f/Card Essence of the Dream 6ad46b.yaml b/unpacked/Custom_Model_Bag Bonded c5261f/Card Essence of the Dream 6ad46b.yaml deleted file mode 100644 index 67d149b23..000000000 --- a/unpacked/Custom_Model_Bag Bonded c5261f/Card Essence of the Dream 6ad46b.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 379929 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '3799': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 6ad46b -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Essence of the Dream -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -33.88 - posY: 1.27 - posZ: 74.11 - rotX: 0.02 - rotY: 269.97 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bonded c5261f/Card Guardian of the Crystallizer 100e24.yaml b/unpacked/Custom_Model_Bag Bonded c5261f/Card Guardian of the Crystallizer 100e24.yaml deleted file mode 100644 index ae75c7f9d..000000000 --- a/unpacked/Custom_Model_Bag Bonded c5261f/Card Guardian of the Crystallizer 100e24.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 440723 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '4407': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 100e24 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Guardian of the Crystallizer -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -33.88 - posY: 1.27 - posZ: 69.51 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bonded c5261f/Card Hope 4da36d.yaml b/unpacked/Custom_Model_Bag Bonded c5261f/Card Hope 4da36d.yaml deleted file mode 100644 index ac8df813e..000000000 --- a/unpacked/Custom_Model_Bag Bonded c5261f/Card Hope 4da36d.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 440624 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '4406': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 4da36d -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Hope -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -33.88 - posY: 1.26 - posZ: 62.61 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bonded c5261f/Card Pendant of the Queen 29f699.yaml b/unpacked/Custom_Model_Bag Bonded c5261f/Card Pendant of the Queen 29f699.yaml deleted file mode 100644 index ce3886fda..000000000 --- a/unpacked/Custom_Model_Bag Bonded c5261f/Card Pendant of the Queen 29f699.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 449327 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '4493': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false -Description: Of Nothing at All -DragSelectable: true -GMNotes: '' -GUID: 29f699 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Pendant of the Queen -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -33.88 - posY: 1.27 - posZ: 78.71 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bonded c5261f/Card Soothing Melody 6ced1f.yaml b/unpacked/Custom_Model_Bag Bonded c5261f/Card Soothing Melody 6ced1f.yaml deleted file mode 100644 index 3189c9909..000000000 --- a/unpacked/Custom_Model_Bag Bonded c5261f/Card Soothing Melody 6ced1f.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 378621 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '3786': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 6ced1f -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Soothing Melody -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -33.88 - posY: 1.27 - posZ: 85.61 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bonded c5261f/Card The Stars Are Right 406a2b.yaml b/unpacked/Custom_Model_Bag Bonded c5261f/Card The Stars Are Right 406a2b.yaml deleted file mode 100644 index edf3ef66a..000000000 --- a/unpacked/Custom_Model_Bag Bonded c5261f/Card The Stars Are Right 406a2b.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 449423 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '4494': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 406a2b -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: The Stars Are Right -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -33.88 - posY: 1.27 - posZ: 71.81 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bonded c5261f/Card Unbound Beast 4a8eef.yaml b/unpacked/Custom_Model_Bag Bonded c5261f/Card Unbound Beast 4a8eef.yaml deleted file mode 100644 index 14a958b14..000000000 --- a/unpacked/Custom_Model_Bag Bonded c5261f/Card Unbound Beast 4a8eef.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 449136 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '4491': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false -Description: Monster. Extradimensional. Tindalos. -DragSelectable: true -GMNotes: '' -GUID: 4a8eef -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Unbound Beast -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -33.88 - posY: 1.27 - posZ: 67.21 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bonded c5261f/Card Wish Eater 20570c.yaml b/unpacked/Custom_Model_Bag Bonded c5261f/Card Wish Eater 20570c.yaml deleted file mode 100644 index f748111d6..000000000 --- a/unpacked/Custom_Model_Bag Bonded c5261f/Card Wish Eater 20570c.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 448937 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '4489': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false -Description: Jewel of the Gods -DragSelectable: true -GMNotes: '' -GUID: 20570c -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Wish Eater -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -33.88 - posY: 1.27 - posZ: 83.31 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Bonded c5261f/Card Zeal 506382.yaml b/unpacked/Custom_Model_Bag Bonded c5261f/Card Zeal 506382.yaml deleted file mode 100644 index b688aa36c..000000000 --- a/unpacked/Custom_Model_Bag Bonded c5261f/Card Zeal 506382.yaml +++ /dev/null @@ -1,51 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -CardID: 440625 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '4406': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '506382' -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Card -Nickname: Zeal -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -33.88 - posY: 1.27 - posZ: 64.91 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079.ttslua b/unpacked/Custom_Model_Bag Chaos Bag fea079.ttslua index 8983dba69..afcab36a8 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079.ttslua +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079.ttslua @@ -1,3 +1,50 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("chaosbag/ChaosBag") +end) +__bundle_register("chaosbag/ChaosBag", function(require, _LOADED, __bundle_register, __bundle_modules) function filterObjectEnter(obj) local props = obj.getCustomObject() if props ~= nil and props.image ~= nil then @@ -10,4 +57,6 @@ function onCollisionEnter(collision_info) self.shuffle() self.shuffle() self.shuffle() -end \ No newline at end of file +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079.yaml index f97e9a8f3..ee5874d67 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079.yaml @@ -10,22 +10,22 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 b8dc75.yaml' -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile Auto-fail 17e7c4.yaml' -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 238252.yaml' -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile -4 8e06b9.yaml' - !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile Elder Sign 957602.yaml' - !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile -3 6f16f0.yaml' -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 25f01b.yaml' -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 540149.yaml' - !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile Tablet 6ca146.yaml' -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 b08198.yaml' -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 6633aa.yaml' -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile +1 6e0c0d.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 540149.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 b8dc75.yaml' - !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 e30eb1.yaml' -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile Cultist 370e96.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile Auto-fail 17e7c4.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile +1 6e0c0d.yaml' - !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 15e190.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile -4 8e06b9.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 25f01b.yaml' - !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 90356c.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 238252.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 6633aa.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile Cultist 370e96.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 b08198.yaml' CustomMesh: CastShadows: true ColliderURL: '' @@ -68,11 +68,11 @@ Tags: Tooltip: true Transform: posX: 1.6 - posY: 1.58 + posY: 1.59 posZ: -13.75 - rotX: 359.93 - rotY: 315.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 3.0 scaleY: 3.0 scaleZ: 3.0 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile +1 6e0c0d.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile +1 6e0c0d.yaml index b5faf6da3..93e2aa1de 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile +1 6e0c0d.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile +1 6e0c0d.yaml @@ -40,9 +40,9 @@ Transform: posX: 0.0 posY: 8.71 posZ: 0.0 - rotX: 359.93 - rotY: 315.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 15e190.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 15e190.yaml index 1e39d7a35..8c0b01c1a 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 15e190.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 15e190.yaml @@ -40,9 +40,9 @@ Transform: posX: 0.0 posY: 8.71 posZ: 0.0 - rotX: 359.93 - rotY: 315.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 6633aa.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 6633aa.yaml index 225f7d8d2..3cd7e036c 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 6633aa.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 6633aa.yaml @@ -40,9 +40,9 @@ Transform: posX: 0.0 posY: 8.71 posZ: 0.0 - rotX: 359.93 - rotY: 315.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 b08198.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 b08198.yaml index 25af6094c..4d61b1743 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 b08198.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -1 b08198.yaml @@ -40,9 +40,9 @@ Transform: posX: 0.0 posY: 8.71 posZ: 0.0 - rotX: 359.93 - rotY: 315.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 540149.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 540149.yaml index b7078a7f9..42723c2b3 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 540149.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 540149.yaml @@ -40,9 +40,9 @@ Transform: posX: 0.0 posY: 4.62 posZ: 0.0 - rotX: 359.93 - rotY: 315.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 e30eb1.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 e30eb1.yaml index f93cd20dc..a318b33e2 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 e30eb1.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -2 e30eb1.yaml @@ -40,9 +40,9 @@ Transform: posX: 0.0 posY: 6.26 posZ: 0.0 - rotX: 359.93 - rotY: 315.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -3 6f16f0.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -3 6f16f0.yaml index 843cd9517..5ae035c4c 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -3 6f16f0.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -3 6f16f0.yaml @@ -40,9 +40,9 @@ Transform: posX: 0.0 posY: 8.71 posZ: 0.0 - rotX: 359.93 - rotY: 315.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -4 8e06b9.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -4 8e06b9.yaml index 1515e09e2..61be19537 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -4 8e06b9.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile -4 8e06b9.yaml @@ -40,9 +40,9 @@ Transform: posX: 0.0 posY: 8.71 posZ: 0.0 - rotX: 359.93 - rotY: 315.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 90356c.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 90356c.yaml index 84719050d..f80788aa8 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 90356c.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 90356c.yaml @@ -40,9 +40,9 @@ Transform: posX: 0.0 posY: 8.71 posZ: 0.0 - rotX: 359.93 - rotY: 315.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 b8dc75.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 b8dc75.yaml index d496f5b3c..1150dd3d1 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 b8dc75.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 0 b8dc75.yaml @@ -40,9 +40,9 @@ Transform: posX: 0.0 posY: 8.71 posZ: 0.0 - rotX: 359.93 - rotY: 315.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Auto-fail 17e7c4.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Auto-fail 17e7c4.yaml index 09d06669f..cdf5015f6 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Auto-fail 17e7c4.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Auto-fail 17e7c4.yaml @@ -40,9 +40,9 @@ Transform: posX: 0.0 posY: 7.89 posZ: 0.0 - rotX: 359.93 - rotY: 315.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Cultist 370e96.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Cultist 370e96.yaml index dc257c91b..dbcbda9ce 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Cultist 370e96.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Cultist 370e96.yaml @@ -40,9 +40,9 @@ Transform: posX: 0.0 posY: 8.71 posZ: 0.0 - rotX: 359.93 - rotY: 315.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Elder Sign 957602.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Elder Sign 957602.yaml index 8b46fe196..91e101465 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Elder Sign 957602.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Elder Sign 957602.yaml @@ -40,9 +40,9 @@ Transform: posX: 0.0 posY: 8.71 posZ: 0.0 - rotX: 359.93 - rotY: 315.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 238252.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 238252.yaml index 9057ba85c..ddc8f1692 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 238252.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 238252.yaml @@ -38,11 +38,11 @@ Sticky: true Tooltip: true Transform: posX: 0.0 - posY: 7.07 + posY: 7.08 posZ: 0.0 - rotX: 359.93 - rotY: 315.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 25f01b.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 25f01b.yaml index 2ce157c03..886f886f1 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 25f01b.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Skull 25f01b.yaml @@ -40,9 +40,9 @@ Transform: posX: 0.0 posY: 5.44 posZ: 0.0 - rotX: 359.93 - rotY: 315.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Tablet 6ca146.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Tablet 6ca146.yaml index 891cb8803..197bb2692 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Tablet 6ca146.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile Tablet 6ca146.yaml @@ -40,9 +40,9 @@ Transform: posX: 0.0 posY: 8.71 posZ: 0.0 - rotX: 359.93 - rotY: 315.01 - rotZ: 359.96 + rotX: 0.0 + rotY: 315.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418.yaml index 26ba7e08c..6f095a405 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418.yaml @@ -68,12 +68,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 25.63 + posX: 25.64 posY: 1.45 - posZ: -22.53 - rotX: 359.93 + posZ: -22.52 + rotX: 0.0 rotY: 315.0 - rotZ: 359.95 + rotZ: 0.0 scaleX: 3.0 scaleY: 3.0 scaleZ: 3.0 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile +1 a15273.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile +1 a15273.yaml index 48d75f886..d7e6f23df 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile +1 a15273.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile +1 a15273.yaml @@ -37,12 +37,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 28.51 + posX: 28.5 posY: 8.45 posZ: -28.95 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -1 b644d2.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -1 b644d2.yaml index 2b7906912..45f7ef4a9 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -1 b644d2.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -1 b644d2.yaml @@ -40,9 +40,9 @@ Transform: posX: 28.79 posY: 5.22 posZ: -31.25 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -2 8af600.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -2 8af600.yaml index 38758d904..a7b1b585e 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -2 8af600.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -2 8af600.yaml @@ -40,9 +40,9 @@ Transform: posX: 29.18 posY: 5.22 posZ: -31.92 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -3 a7a9cb.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -3 a7a9cb.yaml index b0eb5c243..022df5613 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -3 a7a9cb.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -3 a7a9cb.yaml @@ -40,9 +40,9 @@ Transform: posX: 26.46 posY: 3.44 posZ: -28.09 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -4 984eec.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -4 984eec.yaml index befb081a2..ed9f820ad 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -4 984eec.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -4 984eec.yaml @@ -40,9 +40,9 @@ Transform: posX: 26.4 posY: 3.44 posZ: -28.85 - rotX: 359.92 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -5 1df0a5.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -5 1df0a5.yaml index 8f5b33e32..e196b3db9 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -5 1df0a5.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -5 1df0a5.yaml @@ -40,9 +40,9 @@ Transform: posX: 26.24 posY: 3.44 posZ: -29.09 - rotX: 359.92 - rotY: 270.03 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -6 2460df.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -6 2460df.yaml index db55a7884..5c5101453 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -6 2460df.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -6 2460df.yaml @@ -40,9 +40,9 @@ Transform: posX: 26.3 posY: 3.44 posZ: -30.5 - rotX: 359.92 - rotY: 270.03 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -7 81a1d7.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -7 81a1d7.yaml index 56662acb8..d6c254487 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -7 81a1d7.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -7 81a1d7.yaml @@ -40,9 +40,9 @@ Transform: posX: 25.13 posY: 3.45 posZ: -27.69 - rotX: 359.92 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -8 298b5f.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -8 298b5f.yaml index 5322305d0..a118a402b 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -8 298b5f.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile -8 298b5f.yaml @@ -40,9 +40,9 @@ Transform: posX: 25.12 posY: 3.45 posZ: -28.34 - rotX: 359.92 - rotY: 269.98 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 0 0a8592.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 0 0a8592.yaml index 62f669ad9..eb48ed9b9 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 0 0a8592.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 0 0a8592.yaml @@ -40,9 +40,9 @@ Transform: posX: 28.78 posY: 8.49 posZ: -28.69 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Auto-Fail e31821.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Auto-Fail e31821.yaml index 7cbe6be1b..db6df86a1 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Auto-Fail e31821.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Auto-Fail e31821.yaml @@ -40,9 +40,9 @@ Transform: posX: 23.65 posY: 3.45 posZ: -29.38 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Bless 8e3aab.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Bless 8e3aab.yaml index ff563d5e9..f4baea041 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Bless 8e3aab.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Bless 8e3aab.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.04894101 - g: 0.32859382 - r: 0.3745641 + b: 0.04894 + g: 0.32859 + r: 0.37456 CustomImage: CustomTile: Stackable: false @@ -40,9 +40,9 @@ Transform: posX: 22.55 posY: 3.45 posZ: -27.08 - rotX: 359.93 - rotY: 0.02 - rotZ: 359.96 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Cultist 7d6103.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Cultist 7d6103.yaml index 6cc4bec7c..25f1d4ea2 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Cultist 7d6103.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Cultist 7d6103.yaml @@ -38,11 +38,11 @@ Sticky: true Tooltip: true Transform: posX: 25.4 - posY: 3.45 + posY: 3.44 posZ: -29.87 - rotX: 359.92 - rotY: 269.99 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Curse 16a9a7.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Curse 16a9a7.yaml index e719144a0..2ad70b9af 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Curse 16a9a7.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Curse 16a9a7.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.444250643 - g: 0.00386983459 - r: 0.270718 + b: 0.44425 + g: 0.00387 + r: 0.27072 CustomImage: CustomTile: Stackable: false @@ -40,9 +40,9 @@ Transform: posX: 22.65 posY: 3.45 posZ: -27.77 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Elder Sign 0b1aca.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Elder Sign 0b1aca.yaml index e1aa7477d..e6c9a773b 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Elder Sign 0b1aca.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Elder Sign 0b1aca.yaml @@ -40,9 +40,9 @@ Transform: posX: 23.83 posY: 3.45 posZ: -30.13 - rotX: 359.92 - rotY: 269.97 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Elder Thing 38609c.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Elder Thing 38609c.yaml index 7c51f8320..48f99a416 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Elder Thing 38609c.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Elder Thing 38609c.yaml @@ -40,9 +40,9 @@ Transform: posX: 23.82 posY: 3.45 posZ: -28.11 - rotX: 359.92 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Frost b2b7be.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Frost b2b7be.yaml index e14546002..4f33545bc 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Frost b2b7be.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Frost b2b7be.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.0489408 - g: 0.328593522 - r: 0.3745638 + b: 0.04894 + g: 0.32859 + r: 0.37456 CustomImage: CustomTile: Stackable: false @@ -40,9 +40,9 @@ Transform: posX: -19.35 posY: 2.41 posZ: -75.74 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 180.02 + rotZ: 180.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Skull cc8bbb.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Skull cc8bbb.yaml index 79d48687e..ab36e57db 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Skull cc8bbb.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Skull cc8bbb.yaml @@ -40,9 +40,9 @@ Transform: posX: 24.81 posY: 3.45 posZ: -29.04 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Tablet 1a1506.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Tablet 1a1506.yaml index 2fcf3ca35..5893d2054 100644 --- a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Tablet 1a1506.yaml +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile Tablet 1a1506.yaml @@ -40,9 +40,9 @@ Transform: posX: 23.72 posY: 3.45 posZ: -26.78 - rotX: 359.92 - rotY: 269.97 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6.ttslua b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6.ttslua index 446d6c7fd..c6760716e 100644 --- a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6.ttslua +++ b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6.ttslua @@ -1,3 +1,47 @@ +-- 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("util/ClueCounterSwapper", function(require, _LOADED, __bundle_register, __bundle_modules) function updateSave() local data_to_save = { ["ml"] = memoryList } saved_data = JSON.encode(data_to_save) @@ -291,4 +335,9 @@ end function round(num, dec) local mult = 10 ^ (dec or 0) return math.floor(num * mult + 0.5) / mult -end \ No newline at end of file +end +end) +__bundle_register("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("util/ClueCounterSwapper") +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6.yaml b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6.yaml index fe73a40f2..ac7d08655 100644 --- a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6.yaml +++ b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6.yaml @@ -6,16 +6,14 @@ Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0.9999998 - g: 0.992168248 - r: 0.9999998 + b: 1.0 + g: 0.9921699 + r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Doom counter - 19768a.yaml' -- !include 'Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 3f22e5.yaml' -- !include 'Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 4111de.yaml' -- !include 'Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 891403.yaml' -- !include 'Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources db85d6.yaml' +- !include 'Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 3f22e5.yaml' +- !include 'Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 4111de.yaml' +- !include 'Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 891403.yaml' +- !include 'Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues db85d6.yaml' CustomMesh: CastShadows: true ColliderURL: '' @@ -45,7 +43,7 @@ IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: true LuaScript: !include 'Custom_Model_Bag Clue Counter Swapper d919d6.ttslua' -LuaScriptState: '{"ml":{"19768a":{"lock":true,"pos":{"x":-5.3639,"y":1.6575,"z":-5.1003},"rot":{"x":359.9197,"y":270.0688,"z":0.0167}},"3f22e5":{"lock":true,"pos":{"x":-59.3181,"y":1.64,"z":-17.674},"rot":{"x":359.9201,"y":269.9747,"z":0.0169}},"4111de":{"lock":true,"pos":{"x":-23.81,"y":1.5885,"z":-30.9272},"rot":{"x":0.0169,"y":180.0104,"z":0.0799}},"891403":{"lock":true,"pos":{"x":-31.9109,"y":1.5644,"z":30.9195},"rot":{"x":359.9831,"y":359.9875,"z":359.9201}},"db85d6":{"lock":true,"pos":{"x":-59.439,"y":1.6367,"z":9.472},"rot":{"x":359.9201,"y":269.9797,"z":0.0169}}}}' +LuaScriptState: '{"ml":{"3f22e5":{"lock":true,"pos":{"x":-59.50,"y":1.54,"z":9.56},"rot":{"x":0,"y":280,"z":0}},"4111de":{"lock":true,"pos":{"x":-59.45,"y":1.54,"z":-22.63},"rot":{"x":0,"y":280,"z":0}},"891403":{"lock":true,"pos":{"x":-31.91,"y":1.54,"z":30.97},"rot":{"x":0,"y":10,"z":0}},"db85d6":{"lock":true,"pos":{"x":-18.98,"y":1.54,"z":-31.01},"rot":{"x":0,"y":190,"z":0}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 @@ -55,14 +53,14 @@ Snap: true Sticky: true Tooltip: false Transform: - posX: -50.5 - posY: 1.58 + posX: -50.9 + posY: 1.51 posZ: 0.0 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 - scaleX: 0.42 + rotZ: 0.0 + scaleX: 0.4 scaleY: 0.01 - scaleZ: 0.37 + scaleZ: 0.4 Value: 0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 3f22e5.ttslua b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 3f22e5.ttslua new file mode 100644 index 000000000..7b0276740 --- /dev/null +++ b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 3f22e5.ttslua @@ -0,0 +1,99 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playermat/GenericCounter") +end) +__bundle_register("playermat/GenericCounter", function(require, _LOADED, __bundle_register, __bundle_modules) +MIN_VALUE = -99 +MAX_VALUE = 999 +val = 0 + +function onSave() return JSON.encode(val) end + +function onLoad(saved_data) + if saved_data ~= nil then + val = JSON.decode(saved_data) + end + + local name = self.getName() + local position = {} + + if name == "Damage" or name == "Resources" then + position = { 0, 0.06, 0.1 } + elseif name == "Horror" then + position = { -0.025, 0.06, -0.025 } + else + position = { 0, 0.06, 0 } + end + + self.createButton({ + label = tostring(val), + click_function = "addOrSubtract", + function_owner = self, + position = position, + height = 600, + width = 1000, + scale = { 1.5, 1.5, 1.5 }, + font_size = 600, + font_color = { 1, 1, 1, 100 }, + color = { 0, 0, 0, 0 } + }) +end + +function updateVal(newVal) + if tonumber(newVal) then + val = newVal + self.editButton({ + index = 0, + label = tostring(val) + }) + end +end + +function addOrSubtract(_, _, alt_click) + val = math.min(math.max(val + (alt_click and -1 or 1), MIN_VALUE), MAX_VALUE) + self.editButton({ index = 0, label = tostring(val) }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 3f22e5.yaml b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 3f22e5.yaml similarity index 84% rename from unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 3f22e5.yaml rename to unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 3f22e5.yaml index d643f963a..d912f8663 100644 --- a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 3f22e5.yaml +++ b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 3f22e5.yaml @@ -30,11 +30,11 @@ HideWhenFaceDown: false IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: true -LuaScript: !include 'Custom_Token Resources 3f22e5.ttslua' -LuaScriptState: '[true,0]' +LuaScript: !include 'Custom_Token Clues 3f22e5.ttslua' +LuaScriptState: '0' MeasureMovement: false Name: Custom_Token -Nickname: Resources +Nickname: Clues Snap: true Sticky: true Tooltip: false @@ -42,9 +42,9 @@ Transform: posX: -59.32 posY: 1.64 posZ: -17.67 - rotX: 359.92 - rotY: 269.97 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.26 scaleY: 1.0 scaleZ: 0.26 diff --git a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 4111de.ttslua b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 4111de.ttslua new file mode 100644 index 000000000..7b0276740 --- /dev/null +++ b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 4111de.ttslua @@ -0,0 +1,99 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playermat/GenericCounter") +end) +__bundle_register("playermat/GenericCounter", function(require, _LOADED, __bundle_register, __bundle_modules) +MIN_VALUE = -99 +MAX_VALUE = 999 +val = 0 + +function onSave() return JSON.encode(val) end + +function onLoad(saved_data) + if saved_data ~= nil then + val = JSON.decode(saved_data) + end + + local name = self.getName() + local position = {} + + if name == "Damage" or name == "Resources" then + position = { 0, 0.06, 0.1 } + elseif name == "Horror" then + position = { -0.025, 0.06, -0.025 } + else + position = { 0, 0.06, 0 } + end + + self.createButton({ + label = tostring(val), + click_function = "addOrSubtract", + function_owner = self, + position = position, + height = 600, + width = 1000, + scale = { 1.5, 1.5, 1.5 }, + font_size = 600, + font_color = { 1, 1, 1, 100 }, + color = { 0, 0, 0, 0 } + }) +end + +function updateVal(newVal) + if tonumber(newVal) then + val = newVal + self.editButton({ + index = 0, + label = tostring(val) + }) + end +end + +function addOrSubtract(_, _, alt_click) + val = math.min(math.max(val + (alt_click and -1 or 1), MIN_VALUE), MAX_VALUE) + self.editButton({ index = 0, label = tostring(val) }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 4111de.yaml b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 4111de.yaml similarity index 84% rename from unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 4111de.yaml rename to unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 4111de.yaml index 49169cbb2..fbd09af77 100644 --- a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 4111de.yaml +++ b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 4111de.yaml @@ -30,11 +30,11 @@ HideWhenFaceDown: false IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: true -LuaScript: !include 'Custom_Token Resources 4111de.ttslua' -LuaScriptState: '[true,0]' +LuaScript: !include 'Custom_Token Clues 4111de.ttslua' +LuaScriptState: '0' MeasureMovement: false Name: Custom_Token -Nickname: Resources +Nickname: Clues Snap: true Sticky: true Tooltip: false @@ -42,9 +42,9 @@ Transform: posX: -23.81 posY: 1.59 posZ: -30.93 - rotX: 0.02 - rotY: 180.01 - rotZ: 0.08 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 scaleX: 0.26 scaleY: 1.0 scaleZ: 0.26 diff --git a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 891403.ttslua b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 891403.ttslua new file mode 100644 index 000000000..7b0276740 --- /dev/null +++ b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 891403.ttslua @@ -0,0 +1,99 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playermat/GenericCounter") +end) +__bundle_register("playermat/GenericCounter", function(require, _LOADED, __bundle_register, __bundle_modules) +MIN_VALUE = -99 +MAX_VALUE = 999 +val = 0 + +function onSave() return JSON.encode(val) end + +function onLoad(saved_data) + if saved_data ~= nil then + val = JSON.decode(saved_data) + end + + local name = self.getName() + local position = {} + + if name == "Damage" or name == "Resources" then + position = { 0, 0.06, 0.1 } + elseif name == "Horror" then + position = { -0.025, 0.06, -0.025 } + else + position = { 0, 0.06, 0 } + end + + self.createButton({ + label = tostring(val), + click_function = "addOrSubtract", + function_owner = self, + position = position, + height = 600, + width = 1000, + scale = { 1.5, 1.5, 1.5 }, + font_size = 600, + font_color = { 1, 1, 1, 100 }, + color = { 0, 0, 0, 0 } + }) +end + +function updateVal(newVal) + if tonumber(newVal) then + val = newVal + self.editButton({ + index = 0, + label = tostring(val) + }) + end +end + +function addOrSubtract(_, _, alt_click) + val = math.min(math.max(val + (alt_click and -1 or 1), MIN_VALUE), MAX_VALUE) + self.editButton({ index = 0, label = tostring(val) }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 891403.yaml b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 891403.yaml similarity index 84% rename from unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 891403.yaml rename to unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 891403.yaml index a1cf0e5b9..33700fd43 100644 --- a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 891403.yaml +++ b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues 891403.yaml @@ -30,11 +30,11 @@ HideWhenFaceDown: false IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: true -LuaScript: !include 'Custom_Token Resources 891403.ttslua' -LuaScriptState: '[true,0]' +LuaScript: !include 'Custom_Token Clues 891403.ttslua' +LuaScriptState: '0' MeasureMovement: false Name: Custom_Token -Nickname: Resources +Nickname: Clues Snap: true Sticky: true Tooltip: false @@ -42,9 +42,9 @@ Transform: posX: -31.91 posY: 1.56 posZ: 30.92 - rotX: 359.98 - rotY: 359.99 - rotZ: 359.92 + rotX: 0.0 + rotY: 0.0 + rotZ: 0.0 scaleX: 0.26 scaleY: 1.0 scaleZ: 0.26 diff --git a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues db85d6.ttslua b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues db85d6.ttslua new file mode 100644 index 000000000..7b0276740 --- /dev/null +++ b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues db85d6.ttslua @@ -0,0 +1,99 @@ +-- 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("__root", function(require, _LOADED, __bundle_register, __bundle_modules) +require("playermat/GenericCounter") +end) +__bundle_register("playermat/GenericCounter", function(require, _LOADED, __bundle_register, __bundle_modules) +MIN_VALUE = -99 +MAX_VALUE = 999 +val = 0 + +function onSave() return JSON.encode(val) end + +function onLoad(saved_data) + if saved_data ~= nil then + val = JSON.decode(saved_data) + end + + local name = self.getName() + local position = {} + + if name == "Damage" or name == "Resources" then + position = { 0, 0.06, 0.1 } + elseif name == "Horror" then + position = { -0.025, 0.06, -0.025 } + else + position = { 0, 0.06, 0 } + end + + self.createButton({ + label = tostring(val), + click_function = "addOrSubtract", + function_owner = self, + position = position, + height = 600, + width = 1000, + scale = { 1.5, 1.5, 1.5 }, + font_size = 600, + font_color = { 1, 1, 1, 100 }, + color = { 0, 0, 0, 0 } + }) +end + +function updateVal(newVal) + if tonumber(newVal) then + val = newVal + self.editButton({ + index = 0, + label = tostring(val) + }) + end +end + +function addOrSubtract(_, _, alt_click) + val = math.min(math.max(val + (alt_click and -1 or 1), MIN_VALUE), MAX_VALUE) + self.editButton({ index = 0, label = tostring(val) }) +end +end) +return __bundle_require("__root") \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources db85d6.yaml b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues db85d6.yaml similarity index 84% rename from unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources db85d6.yaml rename to unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues db85d6.yaml index ddfc77c31..07028c0a4 100644 --- a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources db85d6.yaml +++ b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Clues db85d6.yaml @@ -30,11 +30,11 @@ HideWhenFaceDown: false IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: true -LuaScript: !include 'Custom_Token Resources db85d6.ttslua' -LuaScriptState: '[true,0]' +LuaScript: !include 'Custom_Token Clues db85d6.ttslua' +LuaScriptState: '0' MeasureMovement: false Name: Custom_Token -Nickname: Resources +Nickname: Clues Snap: true Sticky: true Tooltip: false @@ -42,9 +42,9 @@ Transform: posX: -59.44 posY: 1.64 posZ: 9.47 - rotX: 359.92 - rotY: 269.98 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.26 scaleY: 1.0 scaleZ: 0.26 diff --git a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Doom counter 19768a.ttslua b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Doom counter 19768a.ttslua deleted file mode 100644 index 7aacde2cb..000000000 --- a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Doom counter 19768a.ttslua +++ /dev/null @@ -1,132 +0,0 @@ -MIN_VALUE = -99 -MAX_VALUE = 999 - -function onload(saved_data) - light_mode = false - val = 0 - - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - light_mode = loaded_data[1] - val = loaded_data[2] - end - - createAll() -end - -function updateSave() - local data_to_save = {light_mode, val} - saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - -function createAll() - s_color = {0.5, 0.5, 0.5, 95} - - if light_mode then - f_color = {1,1,1,95} - else - f_color = {0,0,0,100} - end - - - - self.createButton({ - label=tostring(val), - click_function="add_subtract", - function_owner=self, - position={0,0.05,0}, - height=600, - width=1000, - alignment = 3, - scale={x=1.5, y=1.5, z=1.5}, - font_size=600, - font_color=f_color, - color={0,0,0,0} - }) - - - - - if light_mode then - lightButtonText = "[ Set dark ]" - else - lightButtonText = "[ Set light ]" - end - -end - -function removeAll() - self.removeInput(0) - self.removeInput(1) - self.removeButton(0) - self.removeButton(1) - self.removeButton(2) -end - -function reloadAll() - removeAll() - createAll() - - updateSave() -end - -function swap_fcolor(_obj, _color, alt_click) - light_mode = not light_mode - reloadAll() -end - -function swap_align(_obj, _color, alt_click) - center_mode = not center_mode - reloadAll() -end - -function editName(_obj, _string, value) - self.setName(value) - setTooltips() -end - -function add_subtract(_obj, _color, alt_click) - mod = alt_click and -1 or 1 - new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) - if val ~= new_value then - val = new_value - updateVal() - updateSave() - end -end - -function updateVal() - - self.editButton({ - index = 0, - label = tostring(val), - - }) -end - -function reset_val() - val = 0 - updateVal() - updateSave() -end - -function setTooltips() - self.editInput({ - index = 0, - value = self.getName(), - tooltip = ttText - }) - self.editButton({ - index = 0, - value = tostring(val), - tooltip = ttText - }) -end - -function null() -end - -function keepSample(_obj, _string, value) - reloadAll() -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Doom counter 19768a.yaml b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Doom counter 19768a.yaml deleted file mode 100644 index 93661be41..000000000 --- a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Doom counter 19768a.yaml +++ /dev/null @@ -1,54 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 0.8745098 - g: 0.8745098 - r: 0.8745098 -CustomImage: - CustomToken: - MergeDistancePixels: 5.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: http://cloud-3.steamusercontent.com/ugc/1758068501357164917/1D06F1DC4D6888B6F57124BD2AFE20D0B0DA15A8/ - WidthScale: 0.0 -Description: 'Left click - Increase - - Right click - Decrease' -DragSelectable: true -GMNotes: '' -GUID: 19768a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: true -LuaScript: !include 'Custom_Token Doom counter 19768a.ttslua' -LuaScriptState: '[true,0]' -MeasureMovement: false -Name: Custom_Token -Nickname: 'Doom counter - - ' -Snap: true -Sticky: true -Tooltip: false -Transform: - posX: -5.36 - posY: 1.66 - posZ: -5.1 - rotX: 359.92 - rotY: 270.07 - rotZ: 0.02 - scaleX: 0.42 - scaleY: 1.0 - scaleZ: 0.42 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 3f22e5.ttslua b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 3f22e5.ttslua deleted file mode 100644 index df6f93a6c..000000000 --- a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 3f22e5.ttslua +++ /dev/null @@ -1,132 +0,0 @@ -MIN_VALUE = -99 -MAX_VALUE = 999 - -function onload(saved_data) - light_mode = true - val = 0 - - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - light_mode = loaded_data[1] - val = loaded_data[2] - end - - createAll() -end - -function updateSave() - local data_to_save = {light_mode, val} - saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - -function createAll() - s_color = {0,0,0,100} - - if light_mode then - f_color = {1,1,1,100} - else - f_color = {0,0,0,100} - end - - - - self.createButton({ - label=tostring(val), - click_function="add_subtract", - function_owner=self, - position={0,0.05,0.1}, - height=600, - width=1000, - alignment = 3, - scale={x=1.5, y=1.5, z=1.5}, - font_size=600, - font_color=f_color, - color={1,1,1,0} - }) - - - - - if light_mode then - lightButtonText = "[ Set dark ]" - else - lightButtonText = "[ Set light ]" - end - -end - -function removeAll() - self.removeInput(0) - self.removeInput(1) - self.removeButton(0) - self.removeButton(1) - self.removeButton(2) -end - -function reloadAll() - removeAll() - createAll() - - updateSave() -end - -function swap_fcolor(_obj, _color, alt_click) - light_mode = not light_mode - reloadAll() -end - -function swap_align(_obj, _color, alt_click) - center_mode = not center_mode - reloadAll() -end - -function editName(_obj, _string, value) - self.setName(value) - setTooltips() -end - -function add_subtract(_obj, _color, alt_click) - mod = alt_click and -1 or 1 - new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) - if val ~= new_value then - val = new_value - updateVal() - updateSave() - end -end - -function updateVal() - - self.editButton({ - index = 0, - label = tostring(val), - - }) -end - -function reset_val() - val = 0 - updateVal() - updateSave() -end - -function setTooltips() - self.editInput({ - index = 0, - value = self.getName(), - tooltip = ttText - }) - self.editButton({ - index = 0, - value = tostring(val), - tooltip = ttText - }) -end - -function null() -end - -function keepSample(_obj, _string, value) - reloadAll() -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 4111de.ttslua b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 4111de.ttslua deleted file mode 100644 index df6f93a6c..000000000 --- a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 4111de.ttslua +++ /dev/null @@ -1,132 +0,0 @@ -MIN_VALUE = -99 -MAX_VALUE = 999 - -function onload(saved_data) - light_mode = true - val = 0 - - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - light_mode = loaded_data[1] - val = loaded_data[2] - end - - createAll() -end - -function updateSave() - local data_to_save = {light_mode, val} - saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - -function createAll() - s_color = {0,0,0,100} - - if light_mode then - f_color = {1,1,1,100} - else - f_color = {0,0,0,100} - end - - - - self.createButton({ - label=tostring(val), - click_function="add_subtract", - function_owner=self, - position={0,0.05,0.1}, - height=600, - width=1000, - alignment = 3, - scale={x=1.5, y=1.5, z=1.5}, - font_size=600, - font_color=f_color, - color={1,1,1,0} - }) - - - - - if light_mode then - lightButtonText = "[ Set dark ]" - else - lightButtonText = "[ Set light ]" - end - -end - -function removeAll() - self.removeInput(0) - self.removeInput(1) - self.removeButton(0) - self.removeButton(1) - self.removeButton(2) -end - -function reloadAll() - removeAll() - createAll() - - updateSave() -end - -function swap_fcolor(_obj, _color, alt_click) - light_mode = not light_mode - reloadAll() -end - -function swap_align(_obj, _color, alt_click) - center_mode = not center_mode - reloadAll() -end - -function editName(_obj, _string, value) - self.setName(value) - setTooltips() -end - -function add_subtract(_obj, _color, alt_click) - mod = alt_click and -1 or 1 - new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) - if val ~= new_value then - val = new_value - updateVal() - updateSave() - end -end - -function updateVal() - - self.editButton({ - index = 0, - label = tostring(val), - - }) -end - -function reset_val() - val = 0 - updateVal() - updateSave() -end - -function setTooltips() - self.editInput({ - index = 0, - value = self.getName(), - tooltip = ttText - }) - self.editButton({ - index = 0, - value = tostring(val), - tooltip = ttText - }) -end - -function null() -end - -function keepSample(_obj, _string, value) - reloadAll() -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 891403.ttslua b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 891403.ttslua deleted file mode 100644 index df6f93a6c..000000000 --- a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 891403.ttslua +++ /dev/null @@ -1,132 +0,0 @@ -MIN_VALUE = -99 -MAX_VALUE = 999 - -function onload(saved_data) - light_mode = true - val = 0 - - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - light_mode = loaded_data[1] - val = loaded_data[2] - end - - createAll() -end - -function updateSave() - local data_to_save = {light_mode, val} - saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - -function createAll() - s_color = {0,0,0,100} - - if light_mode then - f_color = {1,1,1,100} - else - f_color = {0,0,0,100} - end - - - - self.createButton({ - label=tostring(val), - click_function="add_subtract", - function_owner=self, - position={0,0.05,0.1}, - height=600, - width=1000, - alignment = 3, - scale={x=1.5, y=1.5, z=1.5}, - font_size=600, - font_color=f_color, - color={1,1,1,0} - }) - - - - - if light_mode then - lightButtonText = "[ Set dark ]" - else - lightButtonText = "[ Set light ]" - end - -end - -function removeAll() - self.removeInput(0) - self.removeInput(1) - self.removeButton(0) - self.removeButton(1) - self.removeButton(2) -end - -function reloadAll() - removeAll() - createAll() - - updateSave() -end - -function swap_fcolor(_obj, _color, alt_click) - light_mode = not light_mode - reloadAll() -end - -function swap_align(_obj, _color, alt_click) - center_mode = not center_mode - reloadAll() -end - -function editName(_obj, _string, value) - self.setName(value) - setTooltips() -end - -function add_subtract(_obj, _color, alt_click) - mod = alt_click and -1 or 1 - new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) - if val ~= new_value then - val = new_value - updateVal() - updateSave() - end -end - -function updateVal() - - self.editButton({ - index = 0, - label = tostring(val), - - }) -end - -function reset_val() - val = 0 - updateVal() - updateSave() -end - -function setTooltips() - self.editInput({ - index = 0, - value = self.getName(), - tooltip = ttText - }) - self.editButton({ - index = 0, - value = tostring(val), - tooltip = ttText - }) -end - -function null() -end - -function keepSample(_obj, _string, value) - reloadAll() -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources db85d6.ttslua b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources db85d6.ttslua deleted file mode 100644 index df6f93a6c..000000000 --- a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources db85d6.ttslua +++ /dev/null @@ -1,132 +0,0 @@ -MIN_VALUE = -99 -MAX_VALUE = 999 - -function onload(saved_data) - light_mode = true - val = 0 - - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - light_mode = loaded_data[1] - val = loaded_data[2] - end - - createAll() -end - -function updateSave() - local data_to_save = {light_mode, val} - saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - -function createAll() - s_color = {0,0,0,100} - - if light_mode then - f_color = {1,1,1,100} - else - f_color = {0,0,0,100} - end - - - - self.createButton({ - label=tostring(val), - click_function="add_subtract", - function_owner=self, - position={0,0.05,0.1}, - height=600, - width=1000, - alignment = 3, - scale={x=1.5, y=1.5, z=1.5}, - font_size=600, - font_color=f_color, - color={1,1,1,0} - }) - - - - - if light_mode then - lightButtonText = "[ Set dark ]" - else - lightButtonText = "[ Set light ]" - end - -end - -function removeAll() - self.removeInput(0) - self.removeInput(1) - self.removeButton(0) - self.removeButton(1) - self.removeButton(2) -end - -function reloadAll() - removeAll() - createAll() - - updateSave() -end - -function swap_fcolor(_obj, _color, alt_click) - light_mode = not light_mode - reloadAll() -end - -function swap_align(_obj, _color, alt_click) - center_mode = not center_mode - reloadAll() -end - -function editName(_obj, _string, value) - self.setName(value) - setTooltips() -end - -function add_subtract(_obj, _color, alt_click) - mod = alt_click and -1 or 1 - new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) - if val ~= new_value then - val = new_value - updateVal() - updateSave() - end -end - -function updateVal() - - self.editButton({ - index = 0, - label = tostring(val), - - }) -end - -function reset_val() - val = 0 - updateVal() - updateSave() -end - -function setTooltips() - self.editInput({ - index = 0, - value = self.getName(), - tooltip = ttText - }) - self.editButton({ - index = 0, - value = tostring(val), - tooltip = ttText - }) -end - -function null() -end - -function keepSample(_obj, _string, value) - reloadAll() -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7.yaml index 20455dab4..9750f405f 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7.yaml @@ -14,6 +14,8 @@ ContainedObjects: Weird West Custom Investigators 58ddca.yaml' - !include 'Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Touhou Project Investigators c5c294.yaml' +- !include 'Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model + Streets of New Capenna 48b4ca.yaml' - !include 'Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Strange Aeons Custom Investigators d78bd2.yaml' - !include 'Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model @@ -30,6 +32,8 @@ ContainedObjects: Maximillion Pegasus Custom Investigator 4608c8.yaml' - !include 'Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Mass Effect Investigators b82c6f.yaml' +- !include 'Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model + Magical Girl Arkham Project 814e2a.yaml' - !include 'Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Lola Hayes Rework 197f36.yaml' - !include 'Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model @@ -48,10 +52,18 @@ ContainedObjects: Don''t Starve Investigators 2e69d0.yaml' - !include 'Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Delta Green Convergence Custom Investigators 84be1d.yaml' +- !include 'Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model + Dead Space Investigators 880860.yaml' - !include 'Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Cartoon Investigators 524fbc.yaml' +- !include 'Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model + Battle Goes On dd90c5.yaml' +- !include 'Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model + The Bad Batch 0a1d16.yaml' - !include 'Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Artifact Expansion 1.3 2f8332.yaml' +- !include 'Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model + Aespa Investigators ec74df.yaml' CustomMesh: CastShadows: true ColliderURL: '' @@ -92,11 +104,11 @@ Sticky: true Tooltip: true Transform: posX: -33.34 - posY: 1.29 + posY: 1.3 posZ: -86.78 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.5 scaleY: 0.14 scaleZ: 0.5 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Aespa Investigators ec74df.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Aespa Investigators ec74df.ttslua new file mode 100644 index 000000000..ad53849db --- /dev/null +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Aespa Investigators ec74df.ttslua @@ -0,0 +1,22 @@ +function onload(saved_data) + createDownloadButton() +end + + +--Beginning Setup + + +--Make Download button +function createDownloadButton() + self.createButton({ + label="Download", click_function="buttonClick_download", function_owner=self, + position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, + font_size=150, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by download button, +function buttonClick_download() + local params = { url = self.getGMNotes(), replace = self.guid } + Global.call('placeholder_download', params) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Aespa Investigators ec74df.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Aespa Investigators ec74df.yaml new file mode 100644 index 000000000..ba686e39d --- /dev/null +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Aespa Investigators ec74df.yaml @@ -0,0 +1,73 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +AttachedDecals: +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ + Name: dunwich_back + Size: 7.4 + Transform: + posX: -0.0021877822 + posY: -0.08963572 + posZ: -0.00288731651 + rotX: 270.0 + rotY: 359.869568 + rotZ: 0.0 + scaleX: 2.00000215 + scaleY: 2.00000238 + scaleZ: 2.00000262 +Autoraise: true +ColorDiffuse: + a: 0.27451 + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1862816781492027399/65707471C1DAF2E107F9ACDD28B5D65FDABBCE79/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 0 +Description: Mint Tea Fan +DragSelectable: true +GMNotes: fancreations/investigators_aespa.json +GUID: ec74df +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model Aespa Investigators ec74df.ttslua' +LuaScriptState: '{"ml":{"1696fd":{"lock":false,"pos":{"x":-19.3,"y":1.3168,"z":-53.4358},"rot":{"x":0.0208,"y":269.9742,"z":0.0168}},"19cce5":{"lock":false,"pos":{"x":-22.6169,"y":1.3064,"z":-84.8185},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"3635a2":{"lock":false,"pos":{"x":-22.6169,"y":1.3133,"z":-61.2414},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"3db376":{"lock":false,"pos":{"x":-26.3,"y":1.3312,"z":-53.4368},"rot":{"x":0.0208,"y":269.9723,"z":0.0168}},"6a6f2c":{"lock":false,"pos":{"x":-19.2959,"y":1.3122,"z":-69.0607},"rot":{"x":0.0208,"y":269.9791,"z":0.0168}},"8ecf25":{"lock":false,"pos":{"x":-19.3001,"y":1.3145,"z":-61.2332},"rot":{"x":0.0208,"y":269.9789,"z":0.0168}},"ab694b":{"lock":false,"pos":{"x":-26.3002,"y":1.3243,"z":-76.9456},"rot":{"x":0.0208,"y":269.9892,"z":0.0168}},"b0e5f7":{"lock":false,"pos":{"x":-26.2996,"y":1.3268,"z":-84.818},"rot":{"x":0.0208,"y":269.9915,"z":0.0168}},"b1e673":{"lock":false,"pos":{"x":-19.2936,"y":1.3099,"z":-76.9415},"rot":{"x":0.0208,"y":269.9791,"z":0.0168}},"b5eb52":{"lock":false,"pos":{"x":-22.6139,"y":1.3156,"z":-53.4381},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"b86f9a":{"lock":false,"pos":{"x":-26.2996,"y":1.3268,"z":-84.818},"rot":{"x":0.0208,"y":269.9919,"z":0.0168}},"c8a9be":{"lock":false,"pos":{"x":-19.2998,"y":1.3076,"z":-84.8182},"rot":{"x":0.0208,"y":269.979,"z":0.0168}},"e27b65":{"lock":false,"pos":{"x":-22.6157,"y":1.3087,"z":-76.946},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"f32428":{"lock":false,"pos":{"x":-22.6157,"y":1.311,"z":-69.0756},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"f971bf":{"lock":false,"pos":{"x":-26.3002,"y":1.3314,"z":-69.0606},"rot":{"x":0.0208,"y":269.9661,"z":0.0168}},"fcb70f":{"lock":false,"pos":{"x":-26.3001,"y":1.3674,"z":-61.241},"rot":{"x":0.0208,"y":269.9671,"z":0.0168}}}}' +MeasureMovement: false +Name: Custom_Model +Nickname: Aespa Investigators +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -19.77 + posY: 1.92 + posZ: -106.22 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Artifact Expansion 1.3 2f8332.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Artifact Expansion 1.3 2f8332.ttslua index ec9b4d252..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Artifact Expansion 1.3 2f8332.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Artifact Expansion 1.3 2f8332.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end @@ -20,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Artifact Expansion 1.3 2f8332.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Artifact Expansion 1.3 2f8332.yaml index 231136e8e..8b7891eb7 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Artifact Expansion 1.3 2f8332.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Artifact Expansion 1.3 2f8332.yaml @@ -19,7 +19,7 @@ AttachedDecals: scaleZ: 2.00000262 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -63,7 +63,7 @@ Transform: posX: -34.31 posY: 2.0 posZ: -85.69 - rotX: 0.04 + rotX: 0.0 rotY: 270.0 rotZ: 0.0 scaleX: 2.21 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Battle Goes On dd90c5.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Battle Goes On dd90c5.ttslua new file mode 100644 index 000000000..ad53849db --- /dev/null +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Battle Goes On dd90c5.ttslua @@ -0,0 +1,22 @@ +function onload(saved_data) + createDownloadButton() +end + + +--Beginning Setup + + +--Make Download button +function createDownloadButton() + self.createButton({ + label="Download", click_function="buttonClick_download", function_owner=self, + position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, + font_size=150, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by download button, +function buttonClick_download() + local params = { url = self.getGMNotes(), replace = self.guid } + Global.call('placeholder_download', params) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Battle Goes On dd90c5.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Battle Goes On dd90c5.yaml similarity index 59% rename from unpacked/Custom_Model_Bag Battle Goes On dd90c5.yaml rename to unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Battle Goes On dd90c5.yaml index a6ef6b7c7..ea48ba017 100644 --- a/unpacked/Custom_Model_Bag Battle Goes On dd90c5.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Battle Goes On dd90c5.yaml @@ -18,78 +18,11 @@ AttachedDecals: scaleY: 2.00000238 scaleZ: 2.00000262 Autoraise: true -Bag: - Order: 0 ColorDiffuse: + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 -ContainedObjects: -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Taoism Flag 3ca139.yaml' -- !include "Custom_Model_Bag Battle Goes On dd90c5/Notecard \u201CBattle Goes On\u201D\ - \ Player Cards 5b9142.yaml" -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Seven Stars 621b3f.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Ancient Compass ffcf21.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Fulu 668b93.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Escaping Tong Pass 196394.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Prodigy Healing a9d598.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Canonical Texts 23a0e7.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Monumental History 9341d5.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Infant Care 321c5a.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Treasure Bowl b041a2.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Changban Recog 77d5c3.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Sky Lantern 13f8ae.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card On a Streak 06ba48.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Empty Fort dde61c.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Mysterious Suspense 91a0fc.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Straw Shoes 884c7e.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Butcher''s Hatchet 4225c0.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Spiked Mace 97f078.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Historical Novel a836d9.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token - 3d2067.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token - 488fe7.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token - 1c4e12.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Cao Cao 6999ce.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Cao Cao a9b4ce.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & - cards a768fb.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & - cards 112830.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Liu Bei ac8f35.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Liu Bei d3dcdd.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token - 5bbf47.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token - 52e670.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token - 909fa7.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 9725e1.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token e7550c.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 5de79f.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Sun Quan bccf2a.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Sun Quan 2f9839.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & - cards 024a88.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & - cards b2b405.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Nan Hua 3bdb8f.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Nan Hua 93d0b4.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token - 585744.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token - 197103.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Survivor turn token - f9f51a.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 104c1e.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 080508.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model Turn token 68e686.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Card Chen Shou 763a27.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Deck d4c471.yaml' -- !include 'Custom_Model_Bag Battle Goes On dd90c5/Custom_Model_Bag starter deck & - cards fd8d58.yaml' CustomMesh: CastShadows: true ColliderURL: '' @@ -106,10 +39,10 @@ CustomMesh: MaterialIndex: 2 MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj NormalURL: '' - TypeIndex: 6 + TypeIndex: 0 Description: by The Popest DragSelectable: true -GMNotes: '' +GMNotes: fancreations/investigators_battle_goes_on.json GUID: dd90c5 Grid: true GridProjection: false @@ -118,23 +51,21 @@ HideWhenFaceDown: false IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false -LuaScript: !include 'Custom_Model_Bag Battle Goes On dd90c5.ttslua' +LuaScript: !include 'Custom_Model Battle Goes On dd90c5.ttslua' LuaScriptState: '{"ml":{"024a88":{"lock":false,"pos":{"x":-26.3008,"y":1.2711,"z":-69.0611},"rot":{"x":359.9792,"y":89.9867,"z":359.9832}},"06ba48":{"lock":false,"pos":{"x":5.7548,"y":1.3231,"z":-63.0474},"rot":{"x":0.0208,"y":270.0127,"z":0.0168}},"080508":{"lock":false,"pos":{"x":-16.6234,"y":1.355,"z":-84.8014},"rot":{"x":0.0208,"y":269.9935,"z":0.0168}},"104c1e":{"lock":false,"pos":{"x":-16.6218,"y":1.3553,"z":-83.5247},"rot":{"x":0.0208,"y":269.9935,"z":0.0168}},"112830":{"lock":false,"pos":{"x":-26.3063,"y":1.2734,"z":-61.2118},"rot":{"x":359.9791,"y":89.8593,"z":359.9833}},"13f8ae":{"lock":false,"pos":{"x":5.7547,"y":1.3224,"z":-65.3523},"rot":{"x":0.0208,"y":270.0086,"z":0.0168}},"196394":{"lock":false,"pos":{"x":9.3938,"y":1.3224,"z":-69.9524},"rot":{"x":0.0208,"y":270.0086,"z":0.0168}},"197103":{"lock":false,"pos":{"x":-16.6228,"y":1.3573,"z":-76.9288},"rot":{"x":0.0208,"y":269.9872,"z":0.0168}},"1c4e12":{"lock":false,"pos":{"x":-16.6232,"y":1.3638,"z":-54.6039},"rot":{"x":0.0208,"y":270.0294,"z":0.0168}},"23a0e7":{"lock":false,"pos":{"x":9.3938,"y":1.321,"z":-74.5523},"rot":{"x":0.0208,"y":270.0085,"z":0.0168}},"2f9839":{"lock":false,"pos":{"x":-22.6157,"y":1.311,"z":-69.0756},"rot":{"x":0.0168,"y":179.993,"z":359.9792}},"321c5a":{"lock":false,"pos":{"x":5.7547,"y":1.3204,"z":-72.2523},"rot":{"x":0.0208,"y":270.0086,"z":0.0168}},"3bdb8f":{"lock":false,"pos":{"x":-22.6157,"y":1.3087,"z":-76.946},"rot":{"x":0.0168,"y":179.9718,"z":359.9792}},"3d2067":{"lock":false,"pos":{"x":-16.6232,"y":1.3645,"z":-52.1352},"rot":{"x":0.0208,"y":270.0295,"z":0.0168}},"4225c0":{"lock":false,"pos":{"x":2.1095,"y":1.3197,"z":-69.9524},"rot":{"x":0.0208,"y":270.0086,"z":0.0168}},"488fe7":{"lock":false,"pos":{"x":-16.6232,"y":1.3642,"z":-53.3736},"rot":{"x":0.0208,"y":270.0294,"z":0.0168}},"52e670":{"lock":false,"pos":{"x":-16.6233,"y":1.3619,"z":-61.2142},"rot":{"x":0.0208,"y":270.0109,"z":0.0168}},"585744":{"lock":false,"pos":{"x":-16.6235,"y":1.3576,"z":-75.6886},"rot":{"x":0.0208,"y":269.9872,"z":0.0168}},"5b9142":{"lock":false,"pos":{"x":5.7357,"y":1.3809,"z":-58.1501},"rot":{"x":359.9792,"y":89.999,"z":359.9832}},"5bbf47":{"lock":false,"pos":{"x":-16.6233,"y":1.3622,"z":-59.9842},"rot":{"x":0.0208,"y":270.0109,"z":0.0168}},"5de79f":{"lock":false,"pos":{"x":-16.6233,"y":1.3592,"z":-70.2738},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"621b3f":{"lock":false,"pos":{"x":9.3938,"y":1.3244,"z":-63.0524},"rot":{"x":0.0208,"y":270.0085,"z":0.0168}},"668b93":{"lock":false,"pos":{"x":9.3938,"y":1.323,"z":-67.6524},"rot":{"x":0.0208,"y":270.0086,"z":0.0168}},"68e686":{"lock":false,"pos":{"x":-16.6226,"y":1.3546,"z":-86.0018},"rot":{"x":0.0208,"y":269.9935,"z":0.0168}},"6999ce":{"lock":false,"pos":{"x":-19.3,"y":1.3168,"z":-53.4358},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"763a27":{"lock":false,"pos":{"x":-19.2998,"y":1.3076,"z":-84.8182},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"77d5c3":{"lock":false,"pos":{"x":5.7547,"y":1.321,"z":-69.9523},"rot":{"x":0.0208,"y":270.0086,"z":0.0168}},"884c7e":{"lock":false,"pos":{"x":2.1095,"y":1.3204,"z":-67.6524},"rot":{"x":0.0208,"y":270.0085,"z":0.0168}},"909fa7":{"lock":false,"pos":{"x":-16.6232,"y":1.3615,"z":-62.4441},"rot":{"x":0.0208,"y":270.0107,"z":0.0168}},"91a0fc":{"lock":false,"pos":{"x":2.1095,"y":1.3211,"z":-65.3524},"rot":{"x":0.0208,"y":270.0085,"z":0.0168}},"9341d5":{"lock":false,"pos":{"x":5.7547,"y":1.3197,"z":-74.5523},"rot":{"x":0.0208,"y":270.0087,"z":0.0168}},"93d0b4":{"lock":false,"pos":{"x":-19.2936,"y":1.3099,"z":-76.9415},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"9725e1":{"lock":false,"pos":{"x":-16.6233,"y":1.3599,"z":-67.8038},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"97f078":{"lock":false,"pos":{"x":2.1095,"y":1.319,"z":-72.2524},"rot":{"x":0.0208,"y":270.0085,"z":0.0168}},"a768fb":{"lock":false,"pos":{"x":-26.3006,"y":1.2757,"z":-53.4371},"rot":{"x":359.9792,"y":89.9837,"z":359.9832}},"a836d9":{"lock":false,"pos":{"x":2.1095,"y":1.3184,"z":-74.5525},"rot":{"x":0.0208,"y":270.0086,"z":0.0168}},"a9b4ce":{"lock":false,"pos":{"x":-22.6139,"y":1.3156,"z":-53.4381},"rot":{"x":0.0168,"y":179.9562,"z":359.9792}},"a9d598":{"lock":false,"pos":{"x":9.3938,"y":1.3217,"z":-72.2524},"rot":{"x":0.0208,"y":270.0085,"z":0.0168}},"ac8f35":{"lock":false,"pos":{"x":-22.6169,"y":1.3133,"z":-61.241},"rot":{"x":0.0168,"y":180.0202,"z":359.9792}},"b041a2":{"lock":false,"pos":{"x":5.7547,"y":1.3217,"z":-67.6523},"rot":{"x":0.0208,"y":270.0086,"z":0.0168}},"b2b405":{"lock":false,"pos":{"x":-26.3053,"y":1.2688,"z":-76.9457},"rot":{"x":359.9792,"y":89.9226,"z":359.9832}},"bccf2a":{"lock":false,"pos":{"x":-19.2959,"y":1.3122,"z":-69.0607},"rot":{"x":0.0208,"y":270,"z":0.0168}},"d3dcdd":{"lock":false,"pos":{"x":-19.3001,"y":1.3145,"z":-61.2332},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"d4c471":{"lock":false,"pos":{"x":-22.6169,"y":1.3282,"z":-84.8185},"rot":{"x":0.0168,"y":179.9697,"z":359.9792}},"dde61c":{"lock":false,"pos":{"x":2.1103,"y":1.3217,"z":-63.0467},"rot":{"x":0.0208,"y":270.0043,"z":0.0168}},"e7550c":{"lock":false,"pos":{"x":-16.6235,"y":1.3596,"z":-69.0435},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"f9f51a":{"lock":false,"pos":{"x":-16.6233,"y":1.3569,"z":-78.1588},"rot":{"x":0.0208,"y":269.9872,"z":0.0168}},"fd8d58":{"lock":false,"pos":{"x":-26.298,"y":1.2665,"z":-84.819},"rot":{"x":359.9792,"y":89.9734,"z":359.9832}},"ffcf21":{"lock":false,"pos":{"x":9.3938,"y":1.3237,"z":-65.3524},"rot":{"x":0.0208,"y":270.0086,"z":0.0168}}}}' -MaterialIndex: -1 MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag +Name: Custom_Model Nickname: Battle Goes On Snap: true Sticky: true Tooltip: true Transform: - posX: 36.69 - posY: 1.43 - posZ: -8.93 - rotX: 359.92 + posX: 18.95 + posY: 1.92 + posZ: -135.81 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 2.18 scaleY: 0.45 scaleZ: 2.38 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Cartoon Investigators 524fbc.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Cartoon Investigators 524fbc.ttslua index 92fe71b3b..f122c50de 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Cartoon Investigators 524fbc.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Cartoon Investigators 524fbc.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Cartoon Investigators 524fbc.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Cartoon Investigators 524fbc.yaml index 40f9de3c6..1925928a2 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Cartoon Investigators 524fbc.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Cartoon Investigators 524fbc.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -45,12 +45,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -34.46 - posY: 2.0 - posZ: -86.8 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.01 + posX: -23.61 + posY: 1.92 + posZ: -135.63 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.5 scaleY: 0.14 scaleZ: 0.5 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Dead Space Investigators 880860.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Dead Space Investigators 880860.ttslua new file mode 100644 index 000000000..ad53849db --- /dev/null +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Dead Space Investigators 880860.ttslua @@ -0,0 +1,22 @@ +function onload(saved_data) + createDownloadButton() +end + + +--Beginning Setup + + +--Make Download button +function createDownloadButton() + self.createButton({ + label="Download", click_function="buttonClick_download", function_owner=self, + position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, + font_size=150, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by download button, +function buttonClick_download() + local params = { url = self.getGMNotes(), replace = self.guid } + Global.call('placeholder_download', params) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Dead Space Investigators 880860.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Dead Space Investigators 880860.yaml new file mode 100644 index 000000000..8a309c691 --- /dev/null +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Dead Space Investigators 880860.yaml @@ -0,0 +1,73 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +AttachedDecals: +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ + Name: dunwich_back + Size: 7.4 + Transform: + posX: -0.0021877822 + posY: -0.08963572 + posZ: -0.00288731651 + rotX: 270.0 + rotY: 359.869568 + rotZ: 0.0 + scaleX: 2.00000215 + scaleY: 2.00000238 + scaleZ: 2.00000262 +Autoraise: true +ColorDiffuse: + a: 0.27451 + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1898848485543773146/5255CF70ED228D9C98E4C9F4F010577A77B5C46E/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 0 +Description: '' +DragSelectable: true +GMNotes: fancreations/investigators_dead_space.json +GUID: '880860' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model Dead Space Investigators 880860.ttslua' +LuaScriptState: '{"ml":{"0e87e4":{"lock":false,"pos":{"x":-19.2996,"y":1.3121,"z":-53.4354},"rot":{"x":0.0208,"y":270.0032,"z":0.0168}},"31bcc4":{"lock":false,"pos":{"x":-19.2931,"y":1.3052,"z":-76.9412},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"664a1f":{"lock":false,"pos":{"x":-19.2954,"y":1.3075,"z":-69.0603},"rot":{"x":0.0208,"y":269.9912,"z":0.0168}},"778b85":{"lock":false,"pos":{"x":-26.3002,"y":1.3661,"z":-69.0606},"rot":{"x":359.9792,"y":90,"z":359.9832}},"a8b092":{"lock":false,"pos":{"x":-18.4906,"y":1.3421,"z":-92.0345},"rot":{"x":0.0208,"y":269.996,"z":0.0168}},"d008cb":{"lock":false,"pos":{"x":-19.2989,"y":1.3029,"z":-84.8179},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"e9a591":{"lock":false,"pos":{"x":-19.2996,"y":1.3098,"z":-61.2329},"rot":{"x":0.0208,"y":269.9969,"z":0.0168}}}}' +MeasureMovement: false +Name: Custom_Model +Nickname: Dead Space Investigators +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.67 + posY: 2.25 + posZ: -97.9 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Delta Green Convergence Custom Investigators 84be1d.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Delta Green Convergence Custom Investigators 84be1d.ttslua index ec9b4d252..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Delta Green Convergence Custom Investigators 84be1d.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Delta Green Convergence Custom Investigators 84be1d.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end @@ -20,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Delta Green Convergence Custom Investigators 84be1d.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Delta Green Convergence Custom Investigators 84be1d.yaml index 1654616aa..081c1a95e 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Delta Green Convergence Custom Investigators 84be1d.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Delta Green Convergence Custom Investigators 84be1d.yaml @@ -19,7 +19,7 @@ AttachedDecals: scaleZ: 2.00000262 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -63,9 +63,9 @@ Transform: posX: -33.85 posY: 2.0 posZ: -87.57 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.01 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Don't Starve Investigators 2e69d0.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Don't Starve Investigators 2e69d0.ttslua index ec9b4d252..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Don't Starve Investigators 2e69d0.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Don't Starve Investigators 2e69d0.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end @@ -20,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Don't Starve Investigators 2e69d0.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Don't Starve Investigators 2e69d0.yaml index bf46e6971..5f34f461f 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Don't Starve Investigators 2e69d0.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Don't Starve Investigators 2e69d0.yaml @@ -19,7 +19,7 @@ AttachedDecals: scaleZ: 2.00000262 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -63,9 +63,9 @@ Transform: posX: -20.94 posY: 1.98 posZ: 81.01 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Elspeth Baudin Custom Investigator 84c153.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Elspeth Baudin Custom Investigator 84c153.ttslua index ec9b4d252..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Elspeth Baudin Custom Investigator 84c153.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Elspeth Baudin Custom Investigator 84c153.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end @@ -20,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Elspeth Baudin Custom Investigator 84c153.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Elspeth Baudin Custom Investigator 84c153.yaml index f4d5a54c5..4af150d3b 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Elspeth Baudin Custom Investigator 84c153.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Elspeth Baudin Custom Investigator 84c153.yaml @@ -19,7 +19,7 @@ AttachedDecals: scaleZ: 2.00000262 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -63,9 +63,9 @@ Transform: posX: -20.94 posY: 1.96 posZ: 81.01 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.01 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.ttslua index ec9b4d252..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end @@ -20,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.yaml index 634fcde8b..ec3a8090e 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Fortune or Folly - Parallel Rex Murphy Set 7fa06f.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -48,9 +48,9 @@ Transform: posX: -20.94 posY: 1.98 posZ: 81.01 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Gender Swapped Investigators 33272e.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Gender Swapped Investigators 33272e.ttslua index ec9b4d252..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Gender Swapped Investigators 33272e.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Gender Swapped Investigators 33272e.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end @@ -20,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Gender Swapped Investigators 33272e.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Gender Swapped Investigators 33272e.yaml index 9e360ec5f..7e75a9403 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Gender Swapped Investigators 33272e.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Gender Swapped Investigators 33272e.yaml @@ -19,7 +19,7 @@ AttachedDecals: scaleZ: 2.00000262 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -63,9 +63,9 @@ Transform: posX: -20.94 posY: 1.98 posZ: 81.01 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Idol Thoughts Custom Investigators 991ff9.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Idol Thoughts Custom Investigators 991ff9.ttslua index ec9b4d252..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Idol Thoughts Custom Investigators 991ff9.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Idol Thoughts Custom Investigators 991ff9.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end @@ -20,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Idol Thoughts Custom Investigators 991ff9.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Idol Thoughts Custom Investigators 991ff9.yaml index 99038a23f..8b47bb158 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Idol Thoughts Custom Investigators 991ff9.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Idol Thoughts Custom Investigators 991ff9.yaml @@ -19,7 +19,7 @@ AttachedDecals: scaleZ: 2.00000262 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -60,12 +60,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -21.83 + posX: -21.84 posY: 1.97 posZ: 81.64 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.01 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Kaimonogatari Player cards 64ad17.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Kaimonogatari Player cards 64ad17.ttslua index fc6159141..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Kaimonogatari Player cards 64ad17.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Kaimonogatari Player cards 64ad17.ttslua @@ -19,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Kaimonogatari Player cards 64ad17.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Kaimonogatari Player cards 64ad17.yaml index 188743965..201b33ea8 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Kaimonogatari Player cards 64ad17.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Kaimonogatari Player cards 64ad17.yaml @@ -19,7 +19,7 @@ AttachedDecals: scaleZ: 2.00000262 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -62,10 +62,10 @@ Tooltip: true Transform: posX: -34.69 posY: 2.83 - posZ: -108.23 - rotX: 0.02 + posZ: -108.22 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Lola Hayes Rework 197f36.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Lola Hayes Rework 197f36.ttslua index ec9b4d252..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Lola Hayes Rework 197f36.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Lola Hayes Rework 197f36.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end @@ -20,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Lola Hayes Rework 197f36.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Lola Hayes Rework 197f36.yaml index 879c5e67e..52b3bbebd 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Lola Hayes Rework 197f36.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Lola Hayes Rework 197f36.yaml @@ -19,9 +19,9 @@ AttachedDecals: scaleZ: 2.00000262 Autoraise: true ColorDiffuse: - b: 0.349019468 - g: 0.349019468 - r: 0.352941036 + b: 0.34902 + g: 0.34902 + r: 0.35294 CustomMesh: CastShadows: true ColliderURL: '' @@ -62,9 +62,9 @@ Transform: posX: -33.93 posY: 1.97 posZ: -99.81 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Magical Girl Arkham Project 814e2a.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Magical Girl Arkham Project 814e2a.ttslua new file mode 100644 index 000000000..ad53849db --- /dev/null +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Magical Girl Arkham Project 814e2a.ttslua @@ -0,0 +1,22 @@ +function onload(saved_data) + createDownloadButton() +end + + +--Beginning Setup + + +--Make Download button +function createDownloadButton() + self.createButton({ + label="Download", click_function="buttonClick_download", function_owner=self, + position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, + font_size=150, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by download button, +function buttonClick_download() + local params = { url = self.getGMNotes(), replace = self.guid } + Global.call('placeholder_download', params) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Magical Girl Arkham Project 814e2a.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Magical Girl Arkham Project 814e2a.yaml new file mode 100644 index 000000000..8351cffe0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Magical Girl Arkham Project 814e2a.yaml @@ -0,0 +1,73 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +AttachedDecals: +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ + Name: dunwich_back + Size: 7.4 + Transform: + posX: -0.0021877822 + posY: -0.08963572 + posZ: -0.00288731651 + rotX: 270.0 + rotY: 359.869568 + rotZ: 0.0 + scaleX: 2.00000215 + scaleY: 2.00000238 + scaleZ: 2.00000262 +Autoraise: true +ColorDiffuse: + a: 0.27451 + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1903353113607751170/B835836D4DB21CA06206BF84EEAAD6B3E6C157CB/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 0 +Description: '' +DragSelectable: true +GMNotes: fancreations/investigators_magical_girl.json +GUID: 814e2a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model Magical Girl Arkham Project 814e2a.ttslua' +LuaScriptState: '{"ml":{"28957b":{"lock":false,"pos":{"x":-19.3001,"y":1.1159,"z":-61.2332},"rot":{"x":359.9792,"y":90.0003,"z":359.9832}},"6f2834":{"lock":false,"pos":{"x":-19.2998,"y":1.1089,"z":-84.8182},"rot":{"x":359.9792,"y":90.0013,"z":359.9832}},"b4a99c":{"lock":false,"pos":{"x":-19.3,"y":1.1181,"z":-53.4358},"rot":{"x":359.9792,"y":90.0002,"z":359.9832}},"cfa958":{"lock":false,"pos":{"x":-26.3002,"y":1.111,"z":-69.0606},"rot":{"x":359.9792,"y":89.9785,"z":359.9832}},"e8b5fc":{"lock":false,"pos":{"x":-19.2936,"y":1.1113,"z":-76.9415},"rot":{"x":359.9792,"y":90.0002,"z":359.9832}},"f6152e":{"lock":false,"pos":{"x":-22.6157,"y":1.3223,"z":-69.0756},"rot":{"x":0.0208,"y":269.9924,"z":0.0168}},"f6199b":{"lock":false,"pos":{"x":-19.2959,"y":1.1136,"z":-69.0607},"rot":{"x":359.9792,"y":90.0047,"z":359.9832}}}}' +MeasureMovement: false +Name: Custom_Model +Nickname: Magical Girl Arkham Project +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -57.86 + posY: 2.38 + posZ: -72.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Mass Effect Investigators b82c6f.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Mass Effect Investigators b82c6f.ttslua index ec9b4d252..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Mass Effect Investigators b82c6f.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Mass Effect Investigators b82c6f.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end @@ -20,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Mass Effect Investigators b82c6f.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Mass Effect Investigators b82c6f.yaml index a3256c1a9..0b17d4ed3 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Mass Effect Investigators b82c6f.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Mass Effect Investigators b82c6f.yaml @@ -19,7 +19,7 @@ AttachedDecals: scaleZ: 2.00000262 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -63,9 +63,9 @@ Transform: posX: -20.94 posY: 1.96 posZ: 81.01 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.01 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Maximillion Pegasus Custom Investigator 4608c8.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Maximillion Pegasus Custom Investigator 4608c8.ttslua index ec9b4d252..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Maximillion Pegasus Custom Investigator 4608c8.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Maximillion Pegasus Custom Investigator 4608c8.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end @@ -20,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Maximillion Pegasus Custom Investigator 4608c8.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Maximillion Pegasus Custom Investigator 4608c8.yaml index e1f1014c6..3151da4c8 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Maximillion Pegasus Custom Investigator 4608c8.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Maximillion Pegasus Custom Investigator 4608c8.yaml @@ -19,7 +19,7 @@ AttachedDecals: scaleZ: 2.00000262 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -63,9 +63,9 @@ Transform: posX: -20.94 posY: 1.96 posZ: 81.01 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.01 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Nightmare Pack - EN e32a71.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Nightmare Pack - EN e32a71.ttslua index ec9b4d252..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Nightmare Pack - EN e32a71.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Nightmare Pack - EN e32a71.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end @@ -20,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Nightmare Pack - EN e32a71.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Nightmare Pack - EN e32a71.yaml index ea2674557..e0b7e380d 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Nightmare Pack - EN e32a71.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Nightmare Pack - EN e32a71.yaml @@ -19,7 +19,7 @@ AttachedDecals: scaleZ: 2.00000262 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -63,9 +63,9 @@ Transform: posX: -45.87 posY: 1.97 posZ: -114.77 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.4 scaleY: 0.29 scaleZ: 1.53 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Pokemon Eldritch Edition Custom Investigators 1fb7ce.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Pokemon Eldritch Edition Custom Investigators 1fb7ce.ttslua index ec9b4d252..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Pokemon Eldritch Edition Custom Investigators 1fb7ce.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Pokemon Eldritch Edition Custom Investigators 1fb7ce.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end @@ -20,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Pokemon Eldritch Edition Custom Investigators 1fb7ce.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Pokemon Eldritch Edition Custom Investigators 1fb7ce.yaml index c54af4f46..9b7058ea1 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Pokemon Eldritch Edition Custom Investigators 1fb7ce.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Pokemon Eldritch Edition Custom Investigators 1fb7ce.yaml @@ -19,7 +19,7 @@ AttachedDecals: scaleZ: 2.00000262 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -63,9 +63,9 @@ Transform: posX: -20.94 posY: 1.96 posZ: 81.01 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.01 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Rabbit Hole Expansion b7ff06.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Rabbit Hole Expansion b7ff06.ttslua index ec9b4d252..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Rabbit Hole Expansion b7ff06.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Rabbit Hole Expansion b7ff06.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end @@ -20,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Rabbit Hole Expansion b7ff06.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Rabbit Hole Expansion b7ff06.yaml index 13d8f7b41..d9139319b 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Rabbit Hole Expansion b7ff06.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Rabbit Hole Expansion b7ff06.yaml @@ -19,7 +19,7 @@ AttachedDecals: scaleZ: 2.00000262 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -63,9 +63,9 @@ Transform: posX: -44.31 posY: 1.97 posZ: -114.79 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Signature Replacements b06fd9.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Signature Replacements b06fd9.ttslua index ec9b4d252..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Signature Replacements b06fd9.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Signature Replacements b06fd9.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end @@ -20,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Signature Replacements b06fd9.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Signature Replacements b06fd9.yaml index 9464637e9..69ab3da6c 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Signature Replacements b06fd9.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Signature Replacements b06fd9.yaml @@ -19,9 +19,9 @@ AttachedDecals: scaleZ: 2.00000262 Autoraise: true ColorDiffuse: - b: 0.349019468 - g: 0.349019468 - r: 0.352941036 + b: 0.34902 + g: 0.34902 + r: 0.35294 CustomMesh: CastShadows: true ColliderURL: '' @@ -62,9 +62,9 @@ Transform: posX: -44.34 posY: 1.97 posZ: -111.05 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Strange Aeons Custom Investigators d78bd2.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Strange Aeons Custom Investigators d78bd2.ttslua index ec9b4d252..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Strange Aeons Custom Investigators d78bd2.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Strange Aeons Custom Investigators d78bd2.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end @@ -20,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Strange Aeons Custom Investigators d78bd2.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Strange Aeons Custom Investigators d78bd2.yaml index 23d6c6521..e9eddd5d2 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Strange Aeons Custom Investigators d78bd2.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Strange Aeons Custom Investigators d78bd2.yaml @@ -19,7 +19,7 @@ AttachedDecals: scaleZ: 2.00000262 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -63,9 +63,9 @@ Transform: posX: -17.43 posY: 2.83 posZ: -101.73 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Streets of New Capenna 48b4ca.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Streets of New Capenna 48b4ca.ttslua new file mode 100644 index 000000000..ad53849db --- /dev/null +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Streets of New Capenna 48b4ca.ttslua @@ -0,0 +1,22 @@ +function onload(saved_data) + createDownloadButton() +end + + +--Beginning Setup + + +--Make Download button +function createDownloadButton() + self.createButton({ + label="Download", click_function="buttonClick_download", function_owner=self, + position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800, + font_size=150, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by download button, +function buttonClick_download() + local params = { url = self.getGMNotes(), replace = self.guid } + Global.call('placeholder_download', params) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Streets of New Capenna 48b4ca.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Streets of New Capenna 48b4ca.yaml new file mode 100644 index 000000000..625b2cb94 --- /dev/null +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Streets of New Capenna 48b4ca.yaml @@ -0,0 +1,73 @@ +AltLookAngle: + x: 0.0 + y: 0.0 + z: 0.0 +AttachedDecals: +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/ + Name: dunwich_back + Size: 7.4 + Transform: + posX: -0.0021877822 + posY: -0.08963572 + posZ: -0.00288731651 + rotX: 270.0 + rotY: 359.869568 + rotZ: 0.0 + scaleX: 2.00000215 + scaleY: 2.00000238 + scaleZ: 2.00000262 +Autoraise: true +ColorDiffuse: + a: 0.27451 + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/1853807409892957080/8BAF356ADEADE6CF377438200268899C64FA420E/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 0 +Description: '' +DragSelectable: true +GMNotes: fancreations/investigators_SNC.json +GUID: 48b4ca +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +LayoutGroupSortIndex: 0 +Locked: false +LuaScript: !include 'Custom_Model Streets of New Capenna 48b4ca.ttslua' +LuaScriptState: '{"ml":{"00df29":{"lock":false,"pos":{"x":53.2286,"y":1.3082,"z":92.4413},"rot":{"x":0.0208,"y":270,"z":0.0168}},"1d30b7":{"lock":false,"pos":{"x":49.5629,"y":1.3022,"z":76.3528},"rot":{"x":0.0208,"y":270.0235,"z":0.0168}},"24ebf7":{"lock":false,"pos":{"x":45.98,"y":1.3049,"z":90.1528},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"289dcb":{"lock":false,"pos":{"x":53.2286,"y":1.3029,"z":74.0413},"rot":{"x":0.0208,"y":270,"z":0.0168}},"2aaa95":{"lock":false,"pos":{"x":53.2286,"y":1.3035,"z":76.3413},"rot":{"x":0.0208,"y":270,"z":0.0168}},"35fa26":{"lock":false,"pos":{"x":40.9603,"y":1.3018,"z":85.5488},"rot":{"x":0.0208,"y":270,"z":0.0168}},"3e8f18":{"lock":false,"pos":{"x":53.2286,"y":1.3069,"z":87.8413},"rot":{"x":0.0208,"y":270,"z":0.0168}},"43d9b3":{"lock":false,"pos":{"x":53.2286,"y":1.3062,"z":85.5412},"rot":{"x":0.0208,"y":270,"z":0.0168}},"450971":{"lock":false,"pos":{"x":49.5625,"y":1.2995,"z":67.1528},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"4bf11c":{"lock":false,"pos":{"x":40.9602,"y":1.2977,"z":71.7487},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"4f3c6c":{"lock":false,"pos":{"x":49.5629,"y":1.3036,"z":80.9528},"rot":{"x":0.0208,"y":270,"z":0.0168}},"57acdc":{"lock":false,"pos":{"x":49.5629,"y":1.3049,"z":85.5528},"rot":{"x":0.0208,"y":270,"z":0.0168}},"655321":{"lock":false,"pos":{"x":40.9602,"y":1.3024,"z":87.8488},"rot":{"x":0.0208,"y":269.9823,"z":0.0168}},"6724b6":{"lock":false,"pos":{"x":49.5629,"y":1.3062,"z":90.1528},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"73aa68":{"lock":false,"pos":{"x":40.9603,"y":1.3011,"z":83.2487},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"73bf72":{"lock":false,"pos":{"x":45.9795,"y":1.3029,"z":83.2529},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"774533":{"lock":false,"pos":{"x":40.9602,"y":1.3031,"z":90.1488},"rot":{"x":0.0208,"y":269.9823,"z":0.0168}},"776d45":{"lock":false,"pos":{"x":53.2286,"y":1.3015,"z":69.4413},"rot":{"x":0.0208,"y":270,"z":0.0168}},"7b7c48":{"lock":false,"pos":{"x":45.9795,"y":1.3036,"z":85.5528},"rot":{"x":0.0208,"y":270,"z":0.0168}},"7e4fd8":{"lock":false,"pos":{"x":53.2286,"y":1.3008,"z":67.1412},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"822ea2":{"lock":false,"pos":{"x":49.5628,"y":1.3069,"z":92.4528},"rot":{"x":0.0208,"y":270,"z":0.0168}},"84f3bc":{"lock":false,"pos":{"x":49.5629,"y":1.3009,"z":71.7528},"rot":{"x":0.0208,"y":270,"z":0.0168}},"91b291":{"lock":false,"pos":{"x":49.5628,"y":1.3015,"z":74.0528},"rot":{"x":0.0208,"y":270,"z":0.0168}},"94d7d7":{"lock":false,"pos":{"x":53.2286,"y":1.3049,"z":80.9413},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"99b2e7":{"lock":false,"pos":{"x":40.9603,"y":1.2998,"z":78.6487},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"9ad531":{"lock":false,"pos":{"x":40.9611,"y":1.3038,"z":92.4497},"rot":{"x":0.0208,"y":270.0154,"z":0.0168}},"9f5e6e":{"lock":false,"pos":{"x":40.9602,"y":1.2984,"z":74.0487},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"9ff2b3":{"lock":false,"pos":{"x":49.5628,"y":1.3002,"z":69.4528},"rot":{"x":0.0208,"y":270,"z":0.0168}},"a0038c":{"lock":false,"pos":{"x":53.2286,"y":1.3002,"z":64.8411},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"aaf8ac":{"lock":false,"pos":{"x":58.3839,"y":1.3094,"z":90.0904},"rot":{"x":0.0208,"y":269.9999,"z":180.0168}},"af9875":{"lock":false,"pos":{"x":49.5629,"y":1.3056,"z":87.8529},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"b6e7d4":{"lock":false,"pos":{"x":53.2286,"y":1.3056,"z":83.2413},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"c2b022":{"lock":false,"pos":{"x":49.5629,"y":1.2988,"z":64.8527},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"cf0176":{"lock":false,"pos":{"x":53.2286,"y":1.3022,"z":71.7413},"rot":{"x":0.0208,"y":270,"z":0.0168}},"d474aa":{"lock":false,"pos":{"x":45.9795,"y":1.3022,"z":80.9528},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"e20a09":{"lock":false,"pos":{"x":53.2288,"y":1.3076,"z":90.1413},"rot":{"x":0.0208,"y":270,"z":0.0168}},"e5cc63":{"lock":false,"pos":{"x":40.9603,"y":1.2991,"z":76.3487},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"ec5825":{"lock":false,"pos":{"x":45.98,"y":1.3056,"z":92.4529},"rot":{"x":0.0208,"y":270,"z":0.0168}},"f44618":{"lock":false,"pos":{"x":49.5629,"y":1.3042,"z":83.2528},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"f6916e":{"lock":false,"pos":{"x":58.3838,"y":1.3101,"z":92.3904},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"f7b278":{"lock":false,"pos":{"x":45.9795,"y":1.3043,"z":87.8529},"rot":{"x":0.0208,"y":270,"z":0.0168}},"fc411e":{"lock":false,"pos":{"x":40.9602,"y":1.3004,"z":80.9487},"rot":{"x":0.0208,"y":269.9717,"z":0.0168}}}}' +MeasureMovement: false +Name: Custom_Model +Nickname: Streets of New Capenna +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -24.82 + posY: 2.36 + posZ: -62.97 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +Value: 0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Bad Batch 0a1d16.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Bad Batch 0a1d16.ttslua new file mode 100644 index 000000000..224be99b2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Bad Batch 0a1d16.ttslua @@ -0,0 +1,22 @@ +function onload(saved_data) + createDownloadButton() +end + + +--Beginning Setup + + +--Make Download button +function createDownloadButton() + self.createButton({ + label="Download", click_function="buttonClick_download", function_owner=self, + position={0,0.1,-1}, rotation={0,180,0}, height=240, width=800, + font_size=150, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by download button, +function buttonClick_download() + local params = { url = self.getGMNotes(), replace = self.guid } + Global.call('placeholder_download', params) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Jumanji b46db2/Custom_Model_Bag 4 Force of Nature 8a3606/Custom_Model_Bag Set-aside 979545.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Bad Batch 0a1d16.yaml similarity index 65% rename from unpacked/Custom_Model_Bag Jumanji b46db2/Custom_Model_Bag 4 Force of Nature 8a3606/Custom_Model_Bag Set-aside 979545.yaml rename to unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Bad Batch 0a1d16.yaml index dd7bf0d7d..74c45a46f 100644 --- a/unpacked/Custom_Model_Bag Jumanji b46db2/Custom_Model_Bag 4 Force of Nature 8a3606/Custom_Model_Bag Set-aside 979545.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Bad Batch 0a1d16.yaml @@ -3,16 +3,11 @@ AltLookAngle: y: 0.0 z: 0.0 Autoraise: true -Bag: - Order: 0 ColorDiffuse: - b: 0.02148666 - g: 0.00100758043 - r: 0.02148666 -ContainedObjects: -- !include 'Custom_Model_Bag Set-aside 979545/Deck Hunter Encounter Set 676d1d.yaml' -- !include 'Custom_Model_Bag Set-aside 979545/Card Van Pelt df6da2.yaml' -- !include 'Custom_Model_Bag Set-aside 979545/Card Jumanji 49c86a.yaml' + a: 0.27451 + b: 0.02353 + g: 0.00392 + r: 0.02353 CustomMesh: CastShadows: true ColliderURL: '' @@ -21,11 +16,11 @@ CustomMesh: MaterialIndex: 1 MeshURL: http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/ NormalURL: http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/ - TypeIndex: 6 + TypeIndex: 0 Description: '' DragSelectable: true -GMNotes: '' -GUID: '979545' +GMNotes: fancreations/investigators_bad_batch.json +GUID: 0a1d16 Grid: true GridProjection: false Hands: false @@ -33,13 +28,11 @@ HideWhenFaceDown: false IgnoreFoW: false LayoutGroupSortIndex: 0 Locked: false -LuaScript: '' +LuaScript: !include 'Custom_Model The Bad Batch 0a1d16.ttslua' LuaScriptState: '' -MaterialIndex: -1 MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: Set-aside +Name: Custom_Model +Nickname: The Bad Batch PhysicsMaterial: BounceCombine: 0 Bounciness: 0.0 @@ -55,12 +48,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.7 - posY: 1.56 - posZ: 14.28 - rotX: 359.96 - rotY: 224.99 - rotZ: 0.07 + posX: -22.82 + posY: 2.23 + posZ: -97.68 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Ghosts Of Onigawa (Investigator Expansion) c19cfa.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Ghosts Of Onigawa (Investigator Expansion) c19cfa.ttslua index 3edb6a725..d25f21689 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Ghosts Of Onigawa (Investigator Expansion) c19cfa.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Ghosts Of Onigawa (Investigator Expansion) c19cfa.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Ghosts Of Onigawa (Investigator Expansion) c19cfa.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Ghosts Of Onigawa (Investigator Expansion) c19cfa.yaml index 3d55a4306..6d6d2e369 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Ghosts Of Onigawa (Investigator Expansion) c19cfa.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Ghosts Of Onigawa (Investigator Expansion) c19cfa.yaml @@ -4,7 +4,7 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -48,9 +48,9 @@ Transform: posX: -47.19 posY: 2.83 posZ: -121.34 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.96 scaleY: 0.27 scaleZ: 0.96 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Shadows of Arkham Player Cards 2e5eef.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Shadows of Arkham Player Cards 2e5eef.ttslua index fc6159141..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Shadows of Arkham Player Cards 2e5eef.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Shadows of Arkham Player Cards 2e5eef.ttslua @@ -19,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Shadows of Arkham Player Cards 2e5eef.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Shadows of Arkham Player Cards 2e5eef.yaml index acdd1bd35..82c1ac4d3 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Shadows of Arkham Player Cards 2e5eef.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model The Shadows of Arkham Player Cards 2e5eef.yaml @@ -19,7 +19,7 @@ AttachedDecals: scaleZ: 2.00000262 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Touhou Project Investigators c5c294.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Touhou Project Investigators c5c294.ttslua index ec9b4d252..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Touhou Project Investigators c5c294.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Touhou Project Investigators c5c294.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end @@ -20,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Touhou Project Investigators c5c294.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Touhou Project Investigators c5c294.yaml index 5b5dd566a..23d7c0527 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Touhou Project Investigators c5c294.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Touhou Project Investigators c5c294.yaml @@ -19,7 +19,7 @@ AttachedDecals: scaleZ: 2.00000262 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -63,9 +63,9 @@ Transform: posX: -35.72 posY: 1.97 posZ: -126.28 - rotX: 0.02 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.75 scaleY: 0.37 scaleZ: 1.92 diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Weird West Custom Investigators 58ddca.ttslua b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Weird West Custom Investigators 58ddca.ttslua index ec9b4d252..ad53849db 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Weird West Custom Investigators 58ddca.ttslua +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Weird West Custom Investigators 58ddca.ttslua @@ -1,4 +1,3 @@ - function onload(saved_data) createDownloadButton() end @@ -20,4 +19,4 @@ end function buttonClick_download() local params = { url = self.getGMNotes(), replace = self.guid } Global.call('placeholder_download', params) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Weird West Custom Investigators 58ddca.yaml b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Weird West Custom Investigators 58ddca.yaml index 74393c301..a014aa793 100644 --- a/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Weird West Custom Investigators 58ddca.yaml +++ b/unpacked/Custom_Model_Bag Community-Created Player CardsInvestigators ed4ca7/Custom_Model Weird West Custom Investigators 58ddca.yaml @@ -19,7 +19,7 @@ AttachedDecals: scaleZ: 2.00000262 Autoraise: true ColorDiffuse: - a: 0.274509817 + a: 0.27451 b: 1.0 g: 1.0 r: 1.0 @@ -63,9 +63,9 @@ Transform: posX: -20.94 posY: 2.01 posZ: 81.01 - rotX: 358.98 - rotY: 270.01 - rotZ: 0.02 + rotX: 359.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.36 scaleY: 0.28 scaleZ: 1.49 diff --git a/unpacked/Custom_Model_Bag Curse tokens bd0253.yaml b/unpacked/Custom_Model_Bag Curse tokens bd0253.yaml index 883e77645..56e0f8c3c 100644 --- a/unpacked/Custom_Model_Bag Curse tokens bd0253.yaml +++ b/unpacked/Custom_Model_Bag Curse tokens bd0253.yaml @@ -64,9 +64,9 @@ Transform: posX: 4.05 posY: 1.64 posZ: -12.45 - rotX: 359.96 - rotY: 224.99 - rotZ: 0.07 + rotX: 0.0 + rotY: 225.0 + rotZ: 0.0 scaleX: 0.7 scaleY: 0.7 scaleZ: 0.7 diff --git a/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile 5b224c.yaml b/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile 5b224c.yaml index 6320be9dd..c2146ddf3 100644 --- a/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile 5b224c.yaml +++ b/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile 5b224c.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.444250762 - g: 0.00386983459 - r: 0.270718127 + b: 0.44425 + g: 0.00387 + r: 0.27072 CustomImage: CustomTile: Stackable: false @@ -40,9 +40,9 @@ Transform: posX: 4.23 posY: 1.61 posZ: -21.58 - rotX: 359.92 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile 678891.yaml b/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile 678891.yaml index 80a658c4d..41ac7d53c 100644 --- a/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile 678891.yaml +++ b/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile 678891.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.444250524 - g: 0.00386983459 - r: 0.270717859 + b: 0.44425 + g: 0.00387 + r: 0.27072 CustomImage: CustomTile: Stackable: false @@ -40,9 +40,9 @@ Transform: posX: -46.21 posY: 1.79 posZ: -3.48 - rotX: 359.93 + rotX: 0.0 rotY: 270.0 - rotZ: 0.01 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile adec97.yaml b/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile adec97.yaml index 151988260..4c72bb3b2 100644 --- a/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile adec97.yaml +++ b/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile adec97.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.444250762 - g: 0.00386983459 - r: 0.270718127 + b: 0.44425 + g: 0.00387 + r: 0.27072 CustomImage: CustomTile: Stackable: false @@ -40,9 +40,9 @@ Transform: posX: 4.23 posY: 1.61 posZ: -21.58 - rotX: 359.92 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile b92c2b.yaml b/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile b92c2b.yaml index 15f97490d..3cb430f72 100644 --- a/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile b92c2b.yaml +++ b/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile b92c2b.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.444250584 - g: 0.00386983459 - r: 0.270717919 + b: 0.44425 + g: 0.00387 + r: 0.27072 CustomImage: CustomTile: Stackable: false @@ -40,9 +40,9 @@ Transform: posX: -45.49 posY: 1.79 posZ: -3.89 - rotX: 359.92 - rotY: 270.01 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile f82dd9.yaml b/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile f82dd9.yaml index 8500f7ed2..6f9cb29a2 100644 --- a/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile f82dd9.yaml +++ b/unpacked/Custom_Model_Bag Curse tokens bd0253/Custom_Tile f82dd9.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.444250762 - g: 0.00386983459 - r: 0.270718127 + b: 0.44425 + g: 0.00387 + r: 0.27072 CustomImage: CustomTile: Stackable: false @@ -40,9 +40,9 @@ Transform: posX: 4.23 posY: 1.61 posZ: -21.58 - rotX: 359.92 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38.yaml index 511e1bd3a..c307ab557 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38.yaml @@ -6,28 +6,26 @@ Autoraise: true Bag: Order: 0 ColorDiffuse: - b: 0.9999998 - g: 0.992160261 - r: 0.9999998 + b: 1.0 + g: 0.99216 + r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Chaos Bag Manager 023240.yaml' - !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Token Arranger 022907.yaml' - !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag CYOA Campaign - Guides 8ac4b2.yaml' + Guides e87ea2.yaml' - !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Attachment Helper d45664.yaml' - !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Model_Bag Arkham Fantasy - - Pixel Art Mini-Cards 966c07.yaml' + - Pixel Art Mini-Cards e17c9e.yaml' - !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann''s Navigation Overlay a8affa.yaml' - !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_red Draw Token Button Tooltip Renamer cc77a8.yaml' - !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical''s Generic Difficulty Selector 05efb4.yaml' -- !include "Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By B\xF4\ - L & Mint Tea Fan) 67d8c7.yaml" - !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Search Assistant 17aed0.yaml' - !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Tile Hand Helper 450688.yaml' @@ -41,6 +39,8 @@ ContainedObjects: Tracker b171c8.yaml' - !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Clean Up Helper 26cf4b.yaml' +- !include 'Custom_Model_Bag Fan-Made Accessories aa8b38/Custom_Token Custom Playmat + Images 004fe7.yaml' CustomMesh: CastShadows: true ColliderURL: '' @@ -83,9 +83,9 @@ Transform: posX: 30.37 posY: 1.47 posZ: -21.25 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 0.68 scaleY: 0.68 scaleZ: 0.68 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7.ttslua deleted file mode 100644 index 8d7b4dd5e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7.ttslua +++ /dev/null @@ -1,163 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-03-16 3:26 p.m. ---- - ---- Original Memory Bag by MrStump ---- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080 - ----@class MemoryListEntry ----@field public position Vector ----@field public rotation Vector ----@field public lock boolean -local MemoryListEntry={} - ----@type table -local memory_list = {} - -local POSTFIX = { - SAVE = "_memory_object", - ZONE = "_memory_zone", - SHUFFLE = "_memory_shuffle" -} - ----@type table -local BUTTON = { - POSITION = Vector(0, 0.3, -2), - ROTATION = Vector(0, 180, 0), - HEIGHT = 350, - WIDTH = 800, - FONT_SIZE = 250, - COLOR = Color.Black, - FONT_COLOR = Color.White -} - -local ipairs = ipairs -local pairs = pairs - ----@return string -local function get_prefix() - return self:getDescription() -end - -local function updateSave() - local data_to_save = {["ml"]=memory_list} - local saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - ----@param label string ----@param action string -local function createButton(label, action) - self:clearButtons() - - ---@type CreateClassicUIButton - local parameters = { - label = label, - click_function = action, - function_owner = self - } - - for key, value in pairs(BUTTON) do - parameters[key:lower()] = value - end - - self:createButton(parameters) -end - -local function create_place_button() createButton("Place", "place_objects") end -local function create_recall_button() createButton("Recall", "recall_objects") end - ----@param tag string ----@param lock boolean ----@return fun(object:TTSObject) -local function create_object_callback(tag, lock) - ---@param object TTSObject - return function (object) - object:setLock(lock) - if object:hasTag(tag) then object:shuffle() end - end -end - ----@param object TTSObject -local function record_objects(object) - memory_list[object:getGUID()] = { - position = object:getPosition(), - rotation = object:getRotation(), - lock = object:getLock() - } - self:putObject(object) -end - ----@param objects TTSObject[] -local function update_objects(objects) - for _, object in ipairs(objects) do - record_objects(object) - end -end - ---Sends objects from bag/table to their saved position/rotation -function place_objects() - local prefix = get_prefix() - local shuffle_tag = prefix .. POSTFIX.SHUFFLE - local content = self.getObjects() - - for _, item in ipairs(content) do - local entry = memory_list[item.guid] - if entry then - self.takeObject { - guid=item.guid, - position=entry.position, - rotation=entry.rotation, - callback_function = create_object_callback(shuffle_tag, entry.lock) - } - end - end - - broadcastToAll("Objects Placed", {1,1,1}) - create_recall_button() -end - ---Recalls objects to bag from table -function recall_objects() - memory_list = {} - local prefix = get_prefix() - - if prefix=="" then - broadcastToAll("Error in Memory Bag: Tag prefix not set.") - return - end - - local save_tag = prefix .. POSTFIX.SAVE - local zone_tag = prefix .. POSTFIX.ZONE - - local zones = getObjectsWithTag(zone_tag) - if #zones>0 then - for _, zone in ipairs(zones) do - update_objects(zone:getObjects()) - end - else - update_objects(getObjectsWithTag(save_tag)) - end - updateSave() - broadcastToAll("Objects Recalled", {1,1,1}) - create_place_button() -end - -function onload(saved_data) - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - --Set up information off of loaded_data - memory_list = loaded_data.ml - else - --Set up information for if there is no saved saved data - memory_list = {} - end - - if self:getQuantity()==0 then - create_recall_button() - else - create_place_button() - end -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7.yaml deleted file mode 100644 index 7313ebf0c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7.yaml +++ /dev/null @@ -1,69 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -ContainedObjects: -- !include "Bag Playmat Customs (By B\xF4L & Mint Tea Fan) 67d8c7/Bag The Circle Undone\ - \ d262db.yaml" -- !include "Bag Playmat Customs (By B\xF4L & Mint Tea Fan) 67d8c7/Bag Night of the\ - \ Zealot + Arkham Locations 07fe41.yaml" -- !include "Bag Playmat Customs (By B\xF4L & Mint Tea Fan) 67d8c7/Bag The Path to\ - \ Carcosa 569aab.yaml" -- !include "Bag Playmat Customs (By B\xF4L & Mint Tea Fan) 67d8c7/Bag The Dunwich\ - \ Legacy c13c06.yaml" -- !include "Bag Playmat Customs (By B\xF4L & Mint Tea Fan) 67d8c7/Bag The Forgotten\ - \ Age b172b0.yaml" -- !include "Bag Playmat Customs (By B\xF4L & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters\ - \ 992a0b.yaml" -- !include "Bag Playmat Customs (By B\xF4L & Mint Tea Fan) 67d8c7/Bag The Innsmouth\ - \ Conspiracy a0cfe5.yaml" -- !include "Bag Playmat Customs (By B\xF4L & Mint Tea Fan) 67d8c7/Bag Side Missions\ - \ f4f4be.yaml" -- !include "Bag Playmat Customs (By B\xF4L & Mint Tea Fan) 67d8c7/Bag Dark Matter\ - \ df8e34.yaml" -- !include "Bag Playmat Customs (By B\xF4L & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations\ - \ c87ef3.yaml" -- !include "Bag Playmat Customs (By B\xF4L & Mint Tea Fan) 67d8c7/Bag Edge of the\ - \ Earth 1b9b55.yaml" -Description: playmat -DragSelectable: true -GMNotes: '' -GUID: 67d8c7 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include "Bag Playmat Customs (By B\xF4L & Mint Tea Fan) 67d8c7.ttslua" -LuaScriptState: '{"ml":{"07fe41":{"lock":false,"position":{"x":45.6394729614258,"y":1.10703551769257,"z":-47.4099235534668},"rotation":{"x":359.979156494141,"y":89.9849395751953,"z":359.983215332031}},"1b9b55":{"lock":false,"position":{"x":45.6347618103027,"y":1.09761250019073,"z":-79.6012344360352},"rotation":{"x":359.979156494141,"y":89.9857864379883,"z":359.983215332031}},"569aab":{"lock":false,"position":{"x":45.6394691467285,"y":1.1043426990509,"z":-56.6087074279785},"rotation":{"x":359.979156494141,"y":89.9855422973633,"z":359.983215332031}},"992a0b":{"lock":false,"position":{"x":45.639461517334,"y":1.10030460357666,"z":-70.4085998535156},"rotation":{"x":359.979156494141,"y":89.9856185913086,"z":359.983215332031}},"a0cfe5":{"lock":false,"position":{"x":45.639461517334,"y":1.09895837306976,"z":-75.0087203979492},"rotation":{"x":359.979156494141,"y":89.9856185913086,"z":359.983215332031}},"b172b0":{"lock":false,"position":{"x":45.639461517334,"y":1.1029976606369,"z":-61.2087135314941},"rotation":{"x":359.979156494141,"y":89.9852294921875,"z":359.983215332031}},"c13c06":{"lock":false,"position":{"x":45.639461517334,"y":1.10569000244141,"z":-52.0099334716797},"rotation":{"x":359.979156494141,"y":89.9852447509766,"z":359.983215332031}},"c87ef3":{"lock":false,"position":{"x":45.6243743896484,"y":1.09355545043945,"z":-93.4477081298828},"rotation":{"x":359.979156494141,"y":89.9876327514648,"z":359.983215332031}},"d262db":{"lock":false,"position":{"x":45.6394691467285,"y":1.10165071487427,"z":-65.8086013793945},"rotation":{"x":359.979156494141,"y":89.9846572875977,"z":359.983215332031}},"df8e34":{"lock":false,"position":{"x":45.6400604248047,"y":1.09490370750427,"z":-88.8582534790039},"rotation":{"x":359.979156494141,"y":89.987548828125,"z":359.983215332031}},"f4f4be":{"lock":false,"position":{"x":45.6400604248047,"y":1.09625029563904,"z":-84.2582778930664},"rotation":{"x":359.979156494141,"y":89.9874267578125,"z":359.983215332031}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: "Playmat Customs (By B\xF4L & Mint Tea Fan)" -Snap: true -Sticky: true -Tags: -- sce_memory_object -Tooltip: true -Transform: - posX: 64.95 - posY: 2.04 - posZ: -56.79 - rotX: 0.02 - rotY: 90.0 - rotZ: 0.0 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3.ttslua deleted file mode 100644 index 8d7b4dd5e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3.ttslua +++ /dev/null @@ -1,163 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-03-16 3:26 p.m. ---- - ---- Original Memory Bag by MrStump ---- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080 - ----@class MemoryListEntry ----@field public position Vector ----@field public rotation Vector ----@field public lock boolean -local MemoryListEntry={} - ----@type table -local memory_list = {} - -local POSTFIX = { - SAVE = "_memory_object", - ZONE = "_memory_zone", - SHUFFLE = "_memory_shuffle" -} - ----@type table -local BUTTON = { - POSITION = Vector(0, 0.3, -2), - ROTATION = Vector(0, 180, 0), - HEIGHT = 350, - WIDTH = 800, - FONT_SIZE = 250, - COLOR = Color.Black, - FONT_COLOR = Color.White -} - -local ipairs = ipairs -local pairs = pairs - ----@return string -local function get_prefix() - return self:getDescription() -end - -local function updateSave() - local data_to_save = {["ml"]=memory_list} - local saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - ----@param label string ----@param action string -local function createButton(label, action) - self:clearButtons() - - ---@type CreateClassicUIButton - local parameters = { - label = label, - click_function = action, - function_owner = self - } - - for key, value in pairs(BUTTON) do - parameters[key:lower()] = value - end - - self:createButton(parameters) -end - -local function create_place_button() createButton("Place", "place_objects") end -local function create_recall_button() createButton("Recall", "recall_objects") end - ----@param tag string ----@param lock boolean ----@return fun(object:TTSObject) -local function create_object_callback(tag, lock) - ---@param object TTSObject - return function (object) - object:setLock(lock) - if object:hasTag(tag) then object:shuffle() end - end -end - ----@param object TTSObject -local function record_objects(object) - memory_list[object:getGUID()] = { - position = object:getPosition(), - rotation = object:getRotation(), - lock = object:getLock() - } - self:putObject(object) -end - ----@param objects TTSObject[] -local function update_objects(objects) - for _, object in ipairs(objects) do - record_objects(object) - end -end - ---Sends objects from bag/table to their saved position/rotation -function place_objects() - local prefix = get_prefix() - local shuffle_tag = prefix .. POSTFIX.SHUFFLE - local content = self.getObjects() - - for _, item in ipairs(content) do - local entry = memory_list[item.guid] - if entry then - self.takeObject { - guid=item.guid, - position=entry.position, - rotation=entry.rotation, - callback_function = create_object_callback(shuffle_tag, entry.lock) - } - end - end - - broadcastToAll("Objects Placed", {1,1,1}) - create_recall_button() -end - ---Recalls objects to bag from table -function recall_objects() - memory_list = {} - local prefix = get_prefix() - - if prefix=="" then - broadcastToAll("Error in Memory Bag: Tag prefix not set.") - return - end - - local save_tag = prefix .. POSTFIX.SAVE - local zone_tag = prefix .. POSTFIX.ZONE - - local zones = getObjectsWithTag(zone_tag) - if #zones>0 then - for _, zone in ipairs(zones) do - update_objects(zone:getObjects()) - end - else - update_objects(getObjectsWithTag(save_tag)) - end - updateSave() - broadcastToAll("Objects Recalled", {1,1,1}) - create_place_button() -end - -function onload(saved_data) - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - --Set up information off of loaded_data - memory_list = loaded_data.ml - else - --Set up information for if there is no saved saved data - memory_list = {} - end - - if self:getQuantity()==0 then - create_recall_button() - else - create_place_button() - end -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3.yaml deleted file mode 100644 index 201bcd9f5..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3.yaml +++ /dev/null @@ -1,61 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 1.0 - g: 0.476049125 - r: 0.0 -ContainedObjects: -- !include 'Bag Cyclopean Foundations c87ef3/Custom_Token CF - 1A dedc73.yaml' -- !include 'Bag Cyclopean Foundations c87ef3/Custom_Token CF - 1B 868e4d.yaml' -- !include 'Bag Cyclopean Foundations c87ef3/Custom_Token CF - 2 d5b33e.yaml' -- !include 'Bag Cyclopean Foundations c87ef3/Custom_Token CF - 3 940388.yaml' -- !include 'Bag Cyclopean Foundations c87ef3/Custom_Token CF - 4A 6eaeea.yaml' -- !include 'Bag Cyclopean Foundations c87ef3/Custom_Token CF - 4B b23c0a.yaml' -- !include 'Bag Cyclopean Foundations c87ef3/Custom_Token CF - 5B 0b7844.yaml' -- !include 'Bag Cyclopean Foundations c87ef3/Custom_Token CF - 6 0e1a24.yaml' -- !include 'Bag Cyclopean Foundations c87ef3/Custom_Token CF - 7B 752c9c.yaml' -- !include 'Bag Cyclopean Foundations c87ef3/Custom_Token CF - 7A ef2f78.yaml' -- !include 'Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8A 64ef6f.yaml' -- !include 'Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8C 698ba7.yaml' -- !include 'Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8B c05b71.yaml' -- !include 'Bag Cyclopean Foundations c87ef3/Custom_Token CF - 5A 03efce.yaml' -Description: cfmat -DragSelectable: true -GMNotes: '' -GUID: c87ef3 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Bag Cyclopean Foundations c87ef3.ttslua' -LuaScriptState: '{"ml":{"03efce":{"lock":false,"position":{"x":40.2917404174805,"y":1.33473932743073,"z":-65.8198928833008},"rotation":{"x":0.0208113938570023,"y":269.979309082031,"z":0.016780711710453}},"0b7844":{"lock":false,"position":{"x":36.624340057373,"y":1.24727845191956,"z":-65.8082962036133},"rotation":{"x":0.020821338519454,"y":269.961608886719,"z":0.0167570598423481}},"0e1a24":{"lock":false,"position":{"x":40.2900581359863,"y":1.30259644985199,"z":-70.4198532104492},"rotation":{"x":0.0207981672137976,"y":270.036834716797,"z":0.0167842991650105}},"64ef6f":{"lock":false,"position":{"x":40.2900733947754,"y":1.330695271492,"z":-79.6198806762695},"rotation":{"x":0.0208465345203877,"y":269.971069335938,"z":0.016609201207757}},"698ba7":{"lock":false,"position":{"x":32.9850578308105,"y":1.37680625915527,"z":-79.6083908081055},"rotation":{"x":1.59656393527985,"y":269.971252441406,"z":0.0168016385287046}},"6eaeea":{"lock":false,"position":{"x":40.2900695800781,"y":1.33608603477478,"z":-61.2199897766113},"rotation":{"x":0.0208010878413916,"y":269.990325927734,"z":0.0168091915547848}},"752c9c":{"lock":false,"position":{"x":36.6258506774902,"y":1.26609814167023,"z":-75.0082168579102},"rotation":{"x":0.0207465998828411,"y":270.038269042969,"z":0.0168867725878954}},"868e4d":{"lock":false,"position":{"x":36.6237869262695,"y":1.39028429985046,"z":-47.4081611633301},"rotation":{"x":1.58362686634064,"y":269.983947753906,"z":0.016801105812192}},"940388":{"lock":false,"position":{"x":40.3040618896484,"y":1.33743906021118,"z":-56.6114540100098},"rotation":{"x":0.0208999495953321,"y":269.68798828125,"z":0.0166574865579605}},"b23c0a":{"lock":false,"position":{"x":36.6238670349121,"y":1.38624823093414,"z":-61.2081985473633},"rotation":{"x":1.58365762233734,"y":270.049377441406,"z":0.0168784018605947}},"c05b71":{"lock":false,"position":{"x":36.6243591308594,"y":1.38086724281311,"z":-79.608268737793},"rotation":{"x":1.58390593528748,"y":269.96142578125,"z":0.0167695078998804}},"d5b33e":{"lock":false,"position":{"x":40.2900199890137,"y":1.33877801895142,"z":-52.0199737548828},"rotation":{"x":0.0208130925893784,"y":269.985595703125,"z":0.016765683889389}},"dedc73":{"lock":false,"position":{"x":40.290111541748,"y":1.34012472629547,"z":-47.4108924865723},"rotation":{"x":0.0208345223218203,"y":269.972290039063,"z":0.0166684426367283}},"ef2f78":{"lock":false,"position":{"x":40.2911605834961,"y":1.3739629983902,"z":-75.0199890136719},"rotation":{"x":358.457366943359,"y":269.978607177734,"z":0.0168527159839869}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: Cyclopean Foundations -Snap: true -Sticky: true -Tags: -- playmat_memory_object -Tooltip: true -Transform: - posX: 45.62 - posY: 1.09 - posZ: -93.45 - rotX: 359.98 - rotY: 89.99 - rotZ: 359.98 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 1A dedc73.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 1A dedc73.ttslua deleted file mode 100644 index b42d3c680..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 1A dedc73.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/c6LJNfr/Cyclopean-1-Lost-Moorings-Jake-Murray.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 1A dedc73.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 1A dedc73.yaml deleted file mode 100644 index fdc5af610..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 1A dedc73.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/c6LJNfr/Cyclopean-1-Lost-Moorings-Jake-Murray.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: dedc73 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token CF - 1A dedc73.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: CF - 1A -Snap: true -Sticky: true -Tags: -- cfmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -47.41 - rotX: 0.02 - rotY: 269.97 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 1B 868e4d.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 1B 868e4d.ttslua deleted file mode 100644 index 09d6534a2..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 1B 868e4d.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/DQ76z3c/Cyclopean-1-Lost-Moorings-Care-Line-Art.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 1B 868e4d.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 1B 868e4d.yaml deleted file mode 100644 index cf237412f..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 1B 868e4d.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/DQ76z3c/Cyclopean-1-Lost-Moorings-Care-Line-Art.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 868e4d -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token CF - 1B 868e4d.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: CF - 1B -Snap: true -Sticky: true -Tags: -- cfmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -47.41 - rotX: 1.58 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 2 d5b33e.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 2 d5b33e.ttslua deleted file mode 100644 index 81fe56d58..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 2 d5b33e.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/P6h3vbm/Cyclopean-2-Going-Twice-Quentin-Bouilloud.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 2 d5b33e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 2 d5b33e.yaml deleted file mode 100644 index 3ba4be601..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 2 d5b33e.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/P6h3vbm/Cyclopean-2-Going-Twice-Quentin-Bouilloud.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: d5b33e -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token CF - 2 d5b33e.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: CF - 2 -Snap: true -Sticky: true -Tags: -- cfmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -52.02 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 3 940388.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 3 940388.ttslua deleted file mode 100644 index e75d02ba4..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 3 940388.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/9qK9Fzd/Cyclopean-3-Private-Lives-Christian-Bravery.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 3 940388.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 3 940388.yaml deleted file mode 100644 index 1b39624a8..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 3 940388.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/9qK9Fzd/Cyclopean-3-Private-Lives-Christian-Bravery.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '940388' -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token CF - 3 940388.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: CF - 3 -Snap: true -Sticky: true -Tags: -- cfmat_memory_object -Tooltip: true -Transform: - posX: 40.3 - posY: 1.34 - posZ: -56.61 - rotX: 0.02 - rotY: 269.69 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 4A 6eaeea.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 4A 6eaeea.ttslua deleted file mode 100644 index 385daa306..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 4A 6eaeea.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/5RFcGyP/Cyclopean-4-Crumbling-Masonry-Simon-Craghead.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 4A 6eaeea.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 4A 6eaeea.yaml deleted file mode 100644 index 34ec672e6..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 4A 6eaeea.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/5RFcGyP/Cyclopean-4-Crumbling-Masonry-Simon-Craghead.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 6eaeea -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token CF - 4A 6eaeea.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: CF - 4A -Snap: true -Sticky: true -Tags: -- cfmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -61.22 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 4B b23c0a.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 4B b23c0a.ttslua deleted file mode 100644 index 9866cf7a9..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 4B b23c0a.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/pdrGK6p/Cyclopean-4-Crumbling-Masonry-Pete-Amachree.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 4B b23c0a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 4B b23c0a.yaml deleted file mode 100644 index f94bcfc73..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 4B b23c0a.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/pdrGK6p/Cyclopean-4-Crumbling-Masonry-Pete-Amachree.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: b23c0a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token CF - 4B b23c0a.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: CF - 4B -Snap: true -Sticky: true -Tags: -- cfmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -61.21 - rotX: 1.58 - rotY: 270.05 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 5A 03efce.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 5A 03efce.ttslua deleted file mode 100644 index e3d03872b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 5A 03efce.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/rbkk7ys/Kingsport-Tomasz-Jedruszek.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 5A 03efce.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 5A 03efce.yaml deleted file mode 100644 index 89786ebaf..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 5A 03efce.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/rbkk7ys/Kingsport-Tomasz-Jedruszek.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 03efce -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token CF - 5A 03efce.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: CF - 5A -Snap: true -Sticky: true -Tags: -- cfmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -65.82 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 5B 0b7844.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 5B 0b7844.ttslua deleted file mode 100644 index 48f335f52..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 5B 0b7844.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/3mYfFNB/Cyclopean-5-Across-Dreadful-Waters-Ev-Shipard.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 5B 0b7844.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 5B 0b7844.yaml deleted file mode 100644 index 639fd743f..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 5B 0b7844.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/3mYfFNB/Cyclopean-5-Across-Dreadful-Waters-Ev-Shipard.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 0b7844 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token CF - 5B 0b7844.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: CF - 5B -Snap: true -Sticky: true -Tags: -- cfmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.25 - posZ: -65.81 - rotX: 0.02 - rotY: 269.96 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 6 0e1a24.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 6 0e1a24.ttslua deleted file mode 100644 index 086560510..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 6 0e1a24.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/ynmQNSB/Cyclopean-6-Blood-From-Stones-Marc-Simonetti.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 6 0e1a24.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 6 0e1a24.yaml deleted file mode 100644 index f05de7a8d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 6 0e1a24.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/ynmQNSB/Cyclopean-6-Blood-From-Stones-Marc-Simonetti.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 0e1a24 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token CF - 6 0e1a24.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: CF - 6 -Snap: true -Sticky: true -Tags: -- cfmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.3 - posZ: -70.42 - rotX: 0.02 - rotY: 270.04 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 7A ef2f78.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 7A ef2f78.ttslua deleted file mode 100644 index e5232be77..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 7A ef2f78.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/s1JDkFv/Cyclopean-7-Pyroclastic-Flow-Bastien-Grivet.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 7A ef2f78.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 7A ef2f78.yaml deleted file mode 100644 index 0710ed870..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 7A ef2f78.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/s1JDkFv/Cyclopean-7-Pyroclastic-Flow-Bastien-Grivet.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: ef2f78 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token CF - 7A ef2f78.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: CF - 7A -Snap: true -Sticky: true -Tags: -- cfmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.37 - posZ: -75.02 - rotX: 358.46 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 7B 752c9c.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 7B 752c9c.ttslua deleted file mode 100644 index 85182caba..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 7B 752c9c.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/qs8Sk2N/Cyclopean-7-Pyroclastic-Flow-Rachid-Lotf.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 7B 752c9c.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 7B 752c9c.yaml deleted file mode 100644 index 1e2c62a36..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 7B 752c9c.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/qs8Sk2N/Cyclopean-7-Pyroclastic-Flow-Rachid-Lotf.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 752c9c -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token CF - 7B 752c9c.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: CF - 7B -Snap: true -Sticky: true -Tags: -- cfmat_memory_object -Tooltip: true -Transform: - posX: 36.63 - posY: 1.27 - posZ: -75.01 - rotX: 0.02 - rotY: 270.04 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8A 64ef6f.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8A 64ef6f.ttslua deleted file mode 100644 index 0e4fec8d1..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8A 64ef6f.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/mGnKNcy/Cyclopean-8-Tomb-of-Dead-Dreams-Richard-Benning.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8A 64ef6f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8A 64ef6f.yaml deleted file mode 100644 index 4a00bb6af..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8A 64ef6f.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/mGnKNcy/Cyclopean-8-Tomb-of-Dead-Dreams-Richard-Benning.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 64ef6f -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token CF - 8A 64ef6f.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: CF - 8A -Snap: true -Sticky: true -Tags: -- cfmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -79.62 - rotX: 0.02 - rotY: 269.97 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8B c05b71.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8B c05b71.ttslua deleted file mode 100644 index 09b50a345..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8B c05b71.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/vmBM8x2/Cyclopean-8-Tomb-of-Dead-Dreams-Walter-Brocca.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8B c05b71.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8B c05b71.yaml deleted file mode 100644 index d671ae0d6..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8B c05b71.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/vmBM8x2/Cyclopean-8-Tomb-of-Dead-Dreams-Walter-Brocca.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: c05b71 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token CF - 8B c05b71.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: CF - 8B -Snap: true -Sticky: true -Tags: -- cfmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.38 - posZ: -79.61 - rotX: 1.58 - rotY: 269.96 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8C 698ba7.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8C 698ba7.ttslua deleted file mode 100644 index 20f40020d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8C 698ba7.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/0MwX460/Cyclopean-8-Tomb-of-Dead-Dreams-Guillem-H-Pongiluppi.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8C 698ba7.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8C 698ba7.yaml deleted file mode 100644 index f788a4206..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Cyclopean Foundations c87ef3/Custom_Token CF - 8C 698ba7.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/0MwX460/Cyclopean-8-Tomb-of-Dead-Dreams-Guillem-H-Pongiluppi.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 698ba7 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token CF - 8C 698ba7.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: CF - 8C -Snap: true -Sticky: true -Tags: -- cfmat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.38 - posZ: -79.61 - rotX: 1.6 - rotY: 269.97 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34.ttslua deleted file mode 100644 index 8d7b4dd5e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34.ttslua +++ /dev/null @@ -1,163 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-03-16 3:26 p.m. ---- - ---- Original Memory Bag by MrStump ---- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080 - ----@class MemoryListEntry ----@field public position Vector ----@field public rotation Vector ----@field public lock boolean -local MemoryListEntry={} - ----@type table -local memory_list = {} - -local POSTFIX = { - SAVE = "_memory_object", - ZONE = "_memory_zone", - SHUFFLE = "_memory_shuffle" -} - ----@type table -local BUTTON = { - POSITION = Vector(0, 0.3, -2), - ROTATION = Vector(0, 180, 0), - HEIGHT = 350, - WIDTH = 800, - FONT_SIZE = 250, - COLOR = Color.Black, - FONT_COLOR = Color.White -} - -local ipairs = ipairs -local pairs = pairs - ----@return string -local function get_prefix() - return self:getDescription() -end - -local function updateSave() - local data_to_save = {["ml"]=memory_list} - local saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - ----@param label string ----@param action string -local function createButton(label, action) - self:clearButtons() - - ---@type CreateClassicUIButton - local parameters = { - label = label, - click_function = action, - function_owner = self - } - - for key, value in pairs(BUTTON) do - parameters[key:lower()] = value - end - - self:createButton(parameters) -end - -local function create_place_button() createButton("Place", "place_objects") end -local function create_recall_button() createButton("Recall", "recall_objects") end - ----@param tag string ----@param lock boolean ----@return fun(object:TTSObject) -local function create_object_callback(tag, lock) - ---@param object TTSObject - return function (object) - object:setLock(lock) - if object:hasTag(tag) then object:shuffle() end - end -end - ----@param object TTSObject -local function record_objects(object) - memory_list[object:getGUID()] = { - position = object:getPosition(), - rotation = object:getRotation(), - lock = object:getLock() - } - self:putObject(object) -end - ----@param objects TTSObject[] -local function update_objects(objects) - for _, object in ipairs(objects) do - record_objects(object) - end -end - ---Sends objects from bag/table to their saved position/rotation -function place_objects() - local prefix = get_prefix() - local shuffle_tag = prefix .. POSTFIX.SHUFFLE - local content = self.getObjects() - - for _, item in ipairs(content) do - local entry = memory_list[item.guid] - if entry then - self.takeObject { - guid=item.guid, - position=entry.position, - rotation=entry.rotation, - callback_function = create_object_callback(shuffle_tag, entry.lock) - } - end - end - - broadcastToAll("Objects Placed", {1,1,1}) - create_recall_button() -end - ---Recalls objects to bag from table -function recall_objects() - memory_list = {} - local prefix = get_prefix() - - if prefix=="" then - broadcastToAll("Error in Memory Bag: Tag prefix not set.") - return - end - - local save_tag = prefix .. POSTFIX.SAVE - local zone_tag = prefix .. POSTFIX.ZONE - - local zones = getObjectsWithTag(zone_tag) - if #zones>0 then - for _, zone in ipairs(zones) do - update_objects(zone:getObjects()) - end - else - update_objects(getObjectsWithTag(save_tag)) - end - updateSave() - broadcastToAll("Objects Recalled", {1,1,1}) - create_place_button() -end - -function onload(saved_data) - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - --Set up information off of loaded_data - memory_list = loaded_data.ml - else - --Set up information for if there is no saved saved data - memory_list = {} - end - - if self:getQuantity()==0 then - create_recall_button() - else - create_place_button() - end -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34.yaml deleted file mode 100644 index f5a0feabf..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34.yaml +++ /dev/null @@ -1,63 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 0.0 - g: 0.8258315 - r: 1.0 -ContainedObjects: -- !include 'Bag Dark Matter df8e34/Custom_Token DM - 1A 8832eb.yaml' -- !include 'Bag Dark Matter df8e34/Custom_Token DM - 2A 645dee.yaml' -- !include 'Bag Dark Matter df8e34/Custom_Token DM - 1B 28ae75.yaml' -- !include 'Bag Dark Matter df8e34/Custom_Token DM - 2B ec4b5d.yaml' -- !include 'Bag Dark Matter df8e34/Custom_Token DM - 3 a099cd.yaml' -- !include 'Bag Dark Matter df8e34/Custom_Token DM - 4A 3d76cc.yaml' -- !include 'Bag Dark Matter df8e34/Custom_Token DM - 4B 04ec55.yaml' -- !include 'Bag Dark Matter df8e34/Custom_Token DM - 5 9a09ee.yaml' -- !include 'Bag Dark Matter df8e34/Custom_Token DM - 7A 28d283.yaml' -- !include 'Bag Dark Matter df8e34/Custom_Token DM - 7B 3ef3dc.yaml' -- !include 'Bag Dark Matter df8e34/Custom_Token DM - 1C acae33.yaml' -- !include 'Bag Dark Matter df8e34/Custom_Token DM - 8A 3531c0.yaml' -- !include 'Bag Dark Matter df8e34/Custom_Token DM - 8B 7b795b.yaml' -- !include 'Bag Dark Matter df8e34/Custom_Token DM - 8C 44139a.yaml' -- !include 'Bag Dark Matter df8e34/Custom_Token DM - 1D 2c73fd.yaml' -- !include 'Bag Dark Matter df8e34/Custom_Token DM - 6 85cf7e.yaml' -Description: darkmat -DragSelectable: true -GMNotes: '' -GUID: df8e34 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Bag Dark Matter df8e34.ttslua' -LuaScriptState: '{"ml":{"04ec55":{"lock":false,"position":{"x":36.623706817627,"y":1.38624560832977,"z":-61.2081680297852},"rotation":{"x":1.58361685276031,"y":269.985961914063,"z":0.0167917627841234}},"28ae75":{"lock":false,"position":{"x":36.6238632202148,"y":1.39028799533844,"z":-47.4081726074219},"rotation":{"x":1.5836409330368,"y":269.986114501953,"z":0.0168468002229929}},"28d283":{"lock":false,"position":{"x":40.2900657653809,"y":1.33204317092896,"z":-75.0199737548828},"rotation":{"x":0.0208335369825363,"y":269.973022460938,"z":0.0166720375418663}},"2c73fd":{"lock":false,"position":{"x":29.3394870758057,"y":1.38794434070587,"z":-47.4095726013184},"rotation":{"x":1.59289479255676,"y":269.987457275391,"z":0.0167952030897141}},"3531c0":{"lock":false,"position":{"x":40.2900695800781,"y":1.33069288730621,"z":-79.619873046875},"rotation":{"x":0.0208573695272207,"y":269.982849121094,"z":0.0165296271443367}},"3d76cc":{"lock":false,"position":{"x":40.2900695800781,"y":1.33608186244965,"z":-61.2199897766113},"rotation":{"x":0.0208359826356173,"y":269.9833984375,"z":0.016648031771183}},"3ef3dc":{"lock":false,"position":{"x":36.6236991882324,"y":1.38220632076263,"z":-75.0081329345703},"rotation":{"x":1.58361315727234,"y":269.985473632813,"z":0.0168022811412811}},"44139a":{"lock":false,"position":{"x":32.9847183227539,"y":1.3799329996109,"z":-79.6082000732422},"rotation":{"x":1.59562170505524,"y":269.974456787109,"z":0.0167868956923485}},"645dee":{"lock":false,"position":{"x":40.2900772094727,"y":1.33877515792847,"z":-52.0199775695801},"rotation":{"x":0.0208353772759438,"y":269.980987548828,"z":0.0166546702384949}},"7b795b":{"lock":false,"position":{"x":36.623348236084,"y":1.38084447383881,"z":-79.6079254150391},"rotation":{"x":1.58317255973816,"y":269.966369628906,"z":0.0167705658823252}},"85cf7e":{"lock":false,"position":{"x":40.2900733947754,"y":1.33339202404022,"z":-70.4198455810547},"rotation":{"x":0.0208157505840063,"y":269.976196289063,"z":0.0167624223977327}},"8832eb":{"lock":false,"position":{"x":40.2900772094727,"y":1.34012115001678,"z":-47.4199905395508},"rotation":{"x":0.0208338815718889,"y":269.981719970703,"z":0.0166406370699406}},"9a09ee":{"lock":false,"position":{"x":40.2900733947754,"y":1.3347384929657,"z":-65.8198394775391},"rotation":{"x":0.0208138152956963,"y":269.9833984375,"z":0.0167650319635868}},"a099cd":{"lock":false,"position":{"x":40.2900810241699,"y":1.33743143081665,"z":-56.6199836730957},"rotation":{"x":0.0208138581365347,"y":269.9833984375,"z":0.0167650245130062}},"acae33":{"lock":false,"position":{"x":32.9845352172852,"y":1.389328956604,"z":-47.4093360900879},"rotation":{"x":1.59472358226776,"y":269.982452392578,"z":0.0167991146445274}},"ec4b5d":{"lock":false,"position":{"x":36.6238670349121,"y":1.38894069194794,"z":-52.0081672668457},"rotation":{"x":1.5836797952652,"y":269.986236572266,"z":0.0167956613004208}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: Dark Matter -Snap: true -Sticky: true -Tags: -- playmat_memory_object -Tooltip: true -Transform: - posX: 45.64 - posY: 1.09 - posZ: -88.86 - rotX: 359.98 - rotY: 89.99 - rotZ: 359.98 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1A 8832eb.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1A 8832eb.ttslua deleted file mode 100644 index b2bb883e8..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1A 8832eb.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/sQf85b8/Dark-Matter-1-Tatterdemalion-Paul-Pepera.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1A 8832eb.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1A 8832eb.yaml deleted file mode 100644 index 4b10b1aaa..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1A 8832eb.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/sQf85b8/Dark-Matter-1-Tatterdemalion-Paul-Pepera.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 8832eb -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token DM - 1A 8832eb.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: DM - 1A -Snap: true -Sticky: true -Tags: -- darkmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -47.42 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1B 28ae75.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1B 28ae75.ttslua deleted file mode 100644 index aa297ec96..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1B 28ae75.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/1JzrrX2/Dark-Matter-1-Tatterdemalion-Brian-Taylor.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1B 28ae75.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1B 28ae75.yaml deleted file mode 100644 index 8a30b5067..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1B 28ae75.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/1JzrrX2/Dark-Matter-1-Tatterdemalion-Brian-Taylor.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 28ae75 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token DM - 1B 28ae75.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: DM - 1B -Snap: true -Sticky: true -Tags: -- darkmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -47.41 - rotX: 1.58 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1C acae33.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1C acae33.ttslua deleted file mode 100644 index 5355d92b5..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1C acae33.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/DzvvgGf/Dark-Matter-1-Tatterdemalion-John-Wallin-Liberto.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1C acae33.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1C acae33.yaml deleted file mode 100644 index e9bf09b19..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1C acae33.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/DzvvgGf/Dark-Matter-1-Tatterdemalion-John-Wallin-Liberto.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: acae33 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token DM - 1C acae33.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: DM - 1C -Snap: true -Sticky: true -Tags: -- darkmat_memory_object -Tooltip: true -Transform: - posX: 32.98 - posY: 1.39 - posZ: -47.41 - rotX: 1.59 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1D 2c73fd.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1D 2c73fd.ttslua deleted file mode 100644 index 6d4f44c7e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1D 2c73fd.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/DRMPGVt/Dark-Matter-1-Tatterdemalion-Andrey-Vozny.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1D 2c73fd.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1D 2c73fd.yaml deleted file mode 100644 index 4879f8e6b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 1D 2c73fd.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/DRMPGVt/Dark-Matter-1-Tatterdemalion-Andrey-Vozny.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 2c73fd -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token DM - 1D 2c73fd.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: DM - 1D -Snap: true -Sticky: true -Tags: -- darkmat_memory_object -Tooltip: true -Transform: - posX: 29.34 - posY: 1.39 - posZ: -47.41 - rotX: 1.59 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 2A 645dee.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 2A 645dee.ttslua deleted file mode 100644 index 1d2bb91b1..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 2A 645dee.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/cTKZQ61/Dark-Matter-2-Electric-Nightmares-Robert-Thoma.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 2A 645dee.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 2A 645dee.yaml deleted file mode 100644 index 2f7f6c481..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 2A 645dee.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/cTKZQ61/Dark-Matter-2-Electric-Nightmares-Robert-Thoma.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 645dee -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token DM - 2A 645dee.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: DM - 2A -Snap: true -Sticky: true -Tags: -- darkmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -52.02 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 2B ec4b5d.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 2B ec4b5d.ttslua deleted file mode 100644 index 3708059a9..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 2B ec4b5d.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/hLGVBt7/Dark-Matter-2-Electric-Nightmares-Dean-Lawrence.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 2B ec4b5d.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 2B ec4b5d.yaml deleted file mode 100644 index d541d142e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 2B ec4b5d.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/hLGVBt7/Dark-Matter-2-Electric-Nightmares-Dean-Lawrence.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: ec4b5d -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token DM - 2B ec4b5d.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: DM - 2B -Snap: true -Sticky: true -Tags: -- darkmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -52.01 - rotX: 1.58 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 3 a099cd.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 3 a099cd.ttslua deleted file mode 100644 index 3ac6282d5..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 3 a099cd.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/6vyXv90/Dark-Matter-3-Lost-Quantum-Michael-Rajecki.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 3 a099cd.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 3 a099cd.yaml deleted file mode 100644 index cbfed3e11..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 3 a099cd.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/6vyXv90/Dark-Matter-3-Lost-Quantum-Michael-Rajecki.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: a099cd -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token DM - 3 a099cd.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: DM - 3 -Snap: true -Sticky: true -Tags: -- darkmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -56.62 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 4A 3d76cc.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 4A 3d76cc.ttslua deleted file mode 100644 index 9951f1178..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 4A 3d76cc.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/DfbTKHP/Dark-Matter-4-In-the-Shadow-of-Earth-Jihoo-Kim.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 4A 3d76cc.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 4A 3d76cc.yaml deleted file mode 100644 index 7f2229ad8..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 4A 3d76cc.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/DfbTKHP/Dark-Matter-4-In-the-Shadow-of-Earth-Jihoo-Kim.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 3d76cc -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token DM - 4A 3d76cc.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: DM - 4A -Snap: true -Sticky: true -Tags: -- darkmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -61.22 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 4B 04ec55.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 4B 04ec55.ttslua deleted file mode 100644 index 57b5b1a19..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 4B 04ec55.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/MCvPmCb/Dark-Matter-4-In-the-Shadow-of-Earth-N5-Luckybuuncle.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 4B 04ec55.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 4B 04ec55.yaml deleted file mode 100644 index 367eb1bd8..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 4B 04ec55.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/MCvPmCb/Dark-Matter-4-In-the-Shadow-of-Earth-N5-Luckybuuncle.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 04ec55 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token DM - 4B 04ec55.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: DM - 4B -Snap: true -Sticky: true -Tags: -- darkmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -61.21 - rotX: 1.58 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 5 9a09ee.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 5 9a09ee.ttslua deleted file mode 100644 index d71779ff3..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 5 9a09ee.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/b2d8qvg/Dark-Matter-5-Strange-Moons-Hongyu-Yin.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 5 9a09ee.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 5 9a09ee.yaml deleted file mode 100644 index 203215efe..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 5 9a09ee.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/b2d8qvg/Dark-Matter-5-Strange-Moons-Hongyu-Yin.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 9a09ee -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token DM - 5 9a09ee.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: DM - 5 -Snap: true -Sticky: true -Tags: -- darkmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -65.82 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 6 85cf7e.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 6 85cf7e.ttslua deleted file mode 100644 index 30b93e650..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 6 85cf7e.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/TcnKXJD/Carcosa-1-Curtain-Call-Mark-Molnar.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 6 85cf7e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 6 85cf7e.yaml deleted file mode 100644 index 3db62b67a..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 6 85cf7e.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/TcnKXJD/Carcosa-1-Curtain-Call-Mark-Molnar.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 85cf7e -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token DM - 6 85cf7e.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: DM - 6 -Snap: true -Sticky: true -Tags: -- darkmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -70.42 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 7A 28d283.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 7A 28d283.ttslua deleted file mode 100644 index c4a34e07f..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 7A 28d283.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/7WnTyYT/Dark-Matter-7-Fragment-of-Carcosa-Colin-Moore.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 7A 28d283.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 7A 28d283.yaml deleted file mode 100644 index 3ff6132d0..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 7A 28d283.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/7WnTyYT/Dark-Matter-7-Fragment-of-Carcosa-Colin-Moore.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 28d283 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token DM - 7A 28d283.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: DM - 7A -Snap: true -Sticky: true -Tags: -- darkmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -75.02 - rotX: 0.02 - rotY: 269.97 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 7B 3ef3dc.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 7B 3ef3dc.ttslua deleted file mode 100644 index 373c4d2cc..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 7B 3ef3dc.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/mG2Brrd/Dark-Matter-7-Fragments-of-Carcosa-Matthieu-Rebuffat.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 7B 3ef3dc.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 7B 3ef3dc.yaml deleted file mode 100644 index dd04f0db5..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 7B 3ef3dc.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/mG2Brrd/Dark-Matter-7-Fragments-of-Carcosa-Matthieu-Rebuffat.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 3ef3dc -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token DM - 7B 3ef3dc.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: DM - 7B -Snap: true -Sticky: true -Tags: -- darkmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.38 - posZ: -75.01 - rotX: 1.58 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 8A 3531c0.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 8A 3531c0.ttslua deleted file mode 100644 index 8f5e0299b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 8A 3531c0.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/CJ3LKL7/Dark-Matter-8-Starfall-Vadim-Sadovski.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 8A 3531c0.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 8A 3531c0.yaml deleted file mode 100644 index 0e4d36978..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 8A 3531c0.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/CJ3LKL7/Dark-Matter-8-Starfall-Vadim-Sadovski.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 3531c0 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token DM - 8A 3531c0.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: DM - 8A -Snap: true -Sticky: true -Tags: -- darkmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -79.62 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 8B 7b795b.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 8B 7b795b.ttslua deleted file mode 100644 index e7f1f17dd..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 8B 7b795b.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/Njd1FcB/Dark-Matter-8-Starfall-Vadim-Sadovski-2.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 8B 7b795b.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 8B 7b795b.yaml deleted file mode 100644 index 96de81a7b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 8B 7b795b.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/Njd1FcB/Dark-Matter-8-Starfall-Vadim-Sadovski-2.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 7b795b -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token DM - 8B 7b795b.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: DM - 8B -Snap: true -Sticky: true -Tags: -- darkmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.38 - posZ: -79.61 - rotX: 1.58 - rotY: 269.97 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 8C 44139a.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 8C 44139a.ttslua deleted file mode 100644 index 59cc2f164..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 8C 44139a.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/W0Cx7bb/Dark-Matter-8-Starfall-Vadim-Sadovski-3.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 8C 44139a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 8C 44139a.yaml deleted file mode 100644 index 9888ebcff..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Dark Matter df8e34/Custom_Token DM - 8C 44139a.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/W0Cx7bb/Dark-Matter-8-Starfall-Vadim-Sadovski-3.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 44139a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token DM - 8C 44139a.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: DM - 8C -Snap: true -Sticky: true -Tags: -- darkmat_memory_object -Tooltip: true -Transform: - posX: 32.98 - posY: 1.38 - posZ: -79.61 - rotX: 1.6 - rotY: 269.97 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55.ttslua deleted file mode 100644 index 8d7b4dd5e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55.ttslua +++ /dev/null @@ -1,163 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-03-16 3:26 p.m. ---- - ---- Original Memory Bag by MrStump ---- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080 - ----@class MemoryListEntry ----@field public position Vector ----@field public rotation Vector ----@field public lock boolean -local MemoryListEntry={} - ----@type table -local memory_list = {} - -local POSTFIX = { - SAVE = "_memory_object", - ZONE = "_memory_zone", - SHUFFLE = "_memory_shuffle" -} - ----@type table -local BUTTON = { - POSITION = Vector(0, 0.3, -2), - ROTATION = Vector(0, 180, 0), - HEIGHT = 350, - WIDTH = 800, - FONT_SIZE = 250, - COLOR = Color.Black, - FONT_COLOR = Color.White -} - -local ipairs = ipairs -local pairs = pairs - ----@return string -local function get_prefix() - return self:getDescription() -end - -local function updateSave() - local data_to_save = {["ml"]=memory_list} - local saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - ----@param label string ----@param action string -local function createButton(label, action) - self:clearButtons() - - ---@type CreateClassicUIButton - local parameters = { - label = label, - click_function = action, - function_owner = self - } - - for key, value in pairs(BUTTON) do - parameters[key:lower()] = value - end - - self:createButton(parameters) -end - -local function create_place_button() createButton("Place", "place_objects") end -local function create_recall_button() createButton("Recall", "recall_objects") end - ----@param tag string ----@param lock boolean ----@return fun(object:TTSObject) -local function create_object_callback(tag, lock) - ---@param object TTSObject - return function (object) - object:setLock(lock) - if object:hasTag(tag) then object:shuffle() end - end -end - ----@param object TTSObject -local function record_objects(object) - memory_list[object:getGUID()] = { - position = object:getPosition(), - rotation = object:getRotation(), - lock = object:getLock() - } - self:putObject(object) -end - ----@param objects TTSObject[] -local function update_objects(objects) - for _, object in ipairs(objects) do - record_objects(object) - end -end - ---Sends objects from bag/table to their saved position/rotation -function place_objects() - local prefix = get_prefix() - local shuffle_tag = prefix .. POSTFIX.SHUFFLE - local content = self.getObjects() - - for _, item in ipairs(content) do - local entry = memory_list[item.guid] - if entry then - self.takeObject { - guid=item.guid, - position=entry.position, - rotation=entry.rotation, - callback_function = create_object_callback(shuffle_tag, entry.lock) - } - end - end - - broadcastToAll("Objects Placed", {1,1,1}) - create_recall_button() -end - ---Recalls objects to bag from table -function recall_objects() - memory_list = {} - local prefix = get_prefix() - - if prefix=="" then - broadcastToAll("Error in Memory Bag: Tag prefix not set.") - return - end - - local save_tag = prefix .. POSTFIX.SAVE - local zone_tag = prefix .. POSTFIX.ZONE - - local zones = getObjectsWithTag(zone_tag) - if #zones>0 then - for _, zone in ipairs(zones) do - update_objects(zone:getObjects()) - end - else - update_objects(getObjectsWithTag(save_tag)) - end - updateSave() - broadcastToAll("Objects Recalled", {1,1,1}) - create_place_button() -end - -function onload(saved_data) - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - --Set up information off of loaded_data - memory_list = loaded_data.ml - else - --Set up information for if there is no saved saved data - memory_list = {} - end - - if self:getQuantity()==0 then - create_recall_button() - else - create_place_button() - end -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55.yaml deleted file mode 100644 index 9502385cc..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55.yaml +++ /dev/null @@ -1,57 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 1.0 - g: 0.9761426 - r: 0.831010461 -ContainedObjects: -- !include 'Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 4B 03b860.yaml' -- !include 'Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 5B 7a68b3.yaml' -- !include 'Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1A f4a462.yaml' -- !include 'Bag Edge of the Earth 1b9b55/Custom_Token EOTE - Fatal Mirage 1d1397.yaml' -- !include 'Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 2A bef931.yaml' -- !include 'Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 3A e75ebc.yaml' -- !include 'Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 4A 6f0cc7.yaml' -- !include 'Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 5A 704a25.yaml' -- !include 'Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1B 37ff1a.yaml' -- !include 'Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1C 7ab1bc.yaml' -Description: ticmat -DragSelectable: true -GMNotes: '' -GUID: 1b9b55 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Bag Edge of the Earth 1b9b55.ttslua' -LuaScriptState: '{"ml":{"03b860":{"lock":false,"position":{"x":36.575008392334,"y":1.33339524269104,"z":-65.7999954223633},"rotation":{"x":0.0208085235208273,"y":270.001068115234,"z":0.0167712904512882}},"1d1397":{"lock":false,"position":{"x":40.4250068664551,"y":1.33872747421265,"z":-52.3599967956543},"rotation":{"x":0.0208140071481466,"y":269.982727050781,"z":0.0167648307979107}},"37ff1a":{"lock":false,"position":{"x":36.5720520019531,"y":1.33863949775696,"z":-47.8800773620605},"rotation":{"x":0.0208113212138414,"y":269.992004394531,"z":0.0167681202292442}},"6f0cc7":{"lock":false,"position":{"x":40.4250068664551,"y":1.33479332923889,"z":-65.7999954223633},"rotation":{"x":0.0208089388906956,"y":269.999481201172,"z":0.0167709868401289}},"704a25":{"lock":false,"position":{"x":40.4250068664551,"y":1.33348190784454,"z":-70.2799911499023},"rotation":{"x":0.0208080839365721,"y":270.003479003906,"z":0.0167722757905722}},"7a68b3":{"lock":false,"position":{"x":36.575008392334,"y":1.33208382129669,"z":-70.2799911499023},"rotation":{"x":0.02080755867064,"y":270.004425048828,"z":0.0167725197970867}},"7ab1bc":{"lock":false,"position":{"x":32.7250137329102,"y":1.33724236488342,"z":-47.8799896240234},"rotation":{"x":0.0208022426813841,"y":270.0224609375,"z":0.0167790539562702}},"bef931":{"lock":false,"position":{"x":40.4250068664551,"y":1.3374160528183,"z":-56.8399925231934},"rotation":{"x":0.0208131764084101,"y":269.985534667969,"z":0.0167656857520342}},"e75ebc":{"lock":false,"position":{"x":40.4250068664551,"y":1.33610463142395,"z":-61.3199920654297},"rotation":{"x":0.0208084508776665,"y":270.001281738281,"z":0.0167715884745121}},"f4a462":{"lock":false,"position":{"x":40.4250068664551,"y":1.34003889560699,"z":-47.8799934387207},"rotation":{"x":0.0208105836063623,"y":269.993957519531,"z":0.0167687349021435}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: Edge of the Earth -Snap: true -Sticky: true -Tags: -- playmat_memory_object -Tooltip: true -Transform: - posX: 45.63 - posY: 1.1 - posZ: -79.6 - rotX: 359.98 - rotY: 89.99 - rotZ: 359.98 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1A f4a462.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1A f4a462.ttslua deleted file mode 100644 index 0a2b35e83..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1A f4a462.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/FWZMWtW/Edge-1-Ice-and-Death-David-Frasheski.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1A f4a462.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1A f4a462.yaml deleted file mode 100644 index 44b9b6b9e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1A f4a462.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/FWZMWtW/Edge-1-Ice-and-Death-David-Frasheski.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: f4a462 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token EOTE - 1A f4a462.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: EOTE - 1A -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 40.43 - posY: 1.34 - posZ: -47.88 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1B 37ff1a.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1B 37ff1a.ttslua deleted file mode 100644 index aec8d4c16..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1B 37ff1a.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/QDGV0jQ/Edge-1-Ice-and-Death-Felix-Riano.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1B 37ff1a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1B 37ff1a.yaml deleted file mode 100644 index c4b4f292c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1B 37ff1a.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/QDGV0jQ/Edge-1-Ice-and-Death-Felix-Riano.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 37ff1a -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token EOTE - 1B 37ff1a.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: EOTE - 1B -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 36.57 - posY: 1.34 - posZ: -47.88 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1C 7ab1bc.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1C 7ab1bc.ttslua deleted file mode 100644 index e7af04a1b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1C 7ab1bc.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/hFJQM8v/Edge-1-Ice-and-Death-Mike-Gizienski.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1C 7ab1bc.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1C 7ab1bc.yaml deleted file mode 100644 index 67a1bd36e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 1C 7ab1bc.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/hFJQM8v/Edge-1-Ice-and-Death-Mike-Gizienski.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 7ab1bc -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token EOTE - 1C 7ab1bc.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: EOTE - 1C -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 32.73 - posY: 1.34 - posZ: -47.88 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 2A bef931.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 2A bef931.ttslua deleted file mode 100644 index 85e5ed11b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 2A bef931.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/C2SLByt/Edge-2-Forbidden-Peaks-David-Frasheski-2.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 2A bef931.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 2A bef931.yaml deleted file mode 100644 index c7331e3f8..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 2A bef931.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/C2SLByt/Edge-2-Forbidden-Peaks-David-Frasheski-2.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: bef931 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token EOTE - 2A bef931.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: EOTE - 2A -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 40.43 - posY: 1.34 - posZ: -56.84 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 3A e75ebc.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 3A e75ebc.ttslua deleted file mode 100644 index 5eab9df02..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 3A e75ebc.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/0cGkkBL/Edge-3-Forbidden-Peaks-David-Frasheski.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 3A e75ebc.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 3A e75ebc.yaml deleted file mode 100644 index c4815d992..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 3A e75ebc.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/0cGkkBL/Edge-3-Forbidden-Peaks-David-Frasheski.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: e75ebc -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token EOTE - 3A e75ebc.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: EOTE - 3A -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 40.43 - posY: 1.34 - posZ: -61.32 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 4A 6f0cc7.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 4A 6f0cc7.ttslua deleted file mode 100644 index c42da4606..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 4A 6f0cc7.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/FbpgBD3/Edge-4-City-Francois-Baranger.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 4A 6f0cc7.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 4A 6f0cc7.yaml deleted file mode 100644 index 3c655607f..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 4A 6f0cc7.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/FbpgBD3/Edge-4-City-Francois-Baranger.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 6f0cc7 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token EOTE - 4A 6f0cc7.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: EOTE - 4A -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 40.43 - posY: 1.33 - posZ: -65.8 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 4B 03b860.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 4B 03b860.ttslua deleted file mode 100644 index 8bc170766..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 4B 03b860.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/ncRvHr3/Edge-4-City-Francois-Baranger-2.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 4B 03b860.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 4B 03b860.yaml deleted file mode 100644 index 8541aa5cb..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 4B 03b860.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/ncRvHr3/Edge-4-City-Francois-Baranger-2.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 03b860 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token EOTE - 4B 03b860.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: EOTE - 4B -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 36.58 - posY: 1.33 - posZ: -65.8 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 5A 704a25.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 5A 704a25.ttslua deleted file mode 100644 index ce0470952..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 5A 704a25.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/rk0qR4z/Edge-5-Heart-of-Madness-Karol-Sollich.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 5A 704a25.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 5A 704a25.yaml deleted file mode 100644 index 474e1dfc6..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 5A 704a25.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/rk0qR4z/Edge-5-Heart-of-Madness-Karol-Sollich.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 704a25 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token EOTE - 5A 704a25.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: EOTE - 5A -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 40.43 - posY: 1.33 - posZ: -70.28 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 5B 7a68b3.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 5B 7a68b3.ttslua deleted file mode 100644 index 2542fb8be..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 5B 7a68b3.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/NVFjx6N/Edge-5-Heart-of-Madness-Miguel-Coimbra.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 5B 7a68b3.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 5B 7a68b3.yaml deleted file mode 100644 index 485446214..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - 5B 7a68b3.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/NVFjx6N/Edge-5-Heart-of-Madness-Miguel-Coimbra.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 7a68b3 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token EOTE - 5B 7a68b3.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: EOTE - 5B -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 36.58 - posY: 1.33 - posZ: -70.28 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - Fatal Mirage 1d1397.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - Fatal Mirage 1d1397.ttslua deleted file mode 100644 index 2e75cdafe..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - Fatal Mirage 1d1397.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/KzwvjJN/Edge-2-Fatal-Mirage-David-Frasheski.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - Fatal Mirage 1d1397.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - Fatal Mirage 1d1397.yaml deleted file mode 100644 index 3ca649961..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Edge of the Earth 1b9b55/Custom_Token EOTE - Fatal Mirage 1d1397.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/KzwvjJN/Edge-2-Fatal-Mirage-David-Frasheski.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 1d1397 -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token EOTE - Fatal Mirage 1d1397.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: EOTE - Fatal Mirage -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 40.43 - posY: 1.34 - posZ: -52.36 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41.ttslua deleted file mode 100644 index 8d7b4dd5e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41.ttslua +++ /dev/null @@ -1,163 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-03-16 3:26 p.m. ---- - ---- Original Memory Bag by MrStump ---- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080 - ----@class MemoryListEntry ----@field public position Vector ----@field public rotation Vector ----@field public lock boolean -local MemoryListEntry={} - ----@type table -local memory_list = {} - -local POSTFIX = { - SAVE = "_memory_object", - ZONE = "_memory_zone", - SHUFFLE = "_memory_shuffle" -} - ----@type table -local BUTTON = { - POSITION = Vector(0, 0.3, -2), - ROTATION = Vector(0, 180, 0), - HEIGHT = 350, - WIDTH = 800, - FONT_SIZE = 250, - COLOR = Color.Black, - FONT_COLOR = Color.White -} - -local ipairs = ipairs -local pairs = pairs - ----@return string -local function get_prefix() - return self:getDescription() -end - -local function updateSave() - local data_to_save = {["ml"]=memory_list} - local saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - ----@param label string ----@param action string -local function createButton(label, action) - self:clearButtons() - - ---@type CreateClassicUIButton - local parameters = { - label = label, - click_function = action, - function_owner = self - } - - for key, value in pairs(BUTTON) do - parameters[key:lower()] = value - end - - self:createButton(parameters) -end - -local function create_place_button() createButton("Place", "place_objects") end -local function create_recall_button() createButton("Recall", "recall_objects") end - ----@param tag string ----@param lock boolean ----@return fun(object:TTSObject) -local function create_object_callback(tag, lock) - ---@param object TTSObject - return function (object) - object:setLock(lock) - if object:hasTag(tag) then object:shuffle() end - end -end - ----@param object TTSObject -local function record_objects(object) - memory_list[object:getGUID()] = { - position = object:getPosition(), - rotation = object:getRotation(), - lock = object:getLock() - } - self:putObject(object) -end - ----@param objects TTSObject[] -local function update_objects(objects) - for _, object in ipairs(objects) do - record_objects(object) - end -end - ---Sends objects from bag/table to their saved position/rotation -function place_objects() - local prefix = get_prefix() - local shuffle_tag = prefix .. POSTFIX.SHUFFLE - local content = self.getObjects() - - for _, item in ipairs(content) do - local entry = memory_list[item.guid] - if entry then - self.takeObject { - guid=item.guid, - position=entry.position, - rotation=entry.rotation, - callback_function = create_object_callback(shuffle_tag, entry.lock) - } - end - end - - broadcastToAll("Objects Placed", {1,1,1}) - create_recall_button() -end - ---Recalls objects to bag from table -function recall_objects() - memory_list = {} - local prefix = get_prefix() - - if prefix=="" then - broadcastToAll("Error in Memory Bag: Tag prefix not set.") - return - end - - local save_tag = prefix .. POSTFIX.SAVE - local zone_tag = prefix .. POSTFIX.ZONE - - local zones = getObjectsWithTag(zone_tag) - if #zones>0 then - for _, zone in ipairs(zones) do - update_objects(zone:getObjects()) - end - else - update_objects(getObjectsWithTag(save_tag)) - end - updateSave() - broadcastToAll("Objects Recalled", {1,1,1}) - create_place_button() -end - -function onload(saved_data) - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - --Set up information off of loaded_data - memory_list = loaded_data.ml - else - --Set up information for if there is no saved saved data - memory_list = {} - end - - if self:getQuantity()==0 then - create_recall_button() - else - create_place_button() - end -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41.yaml deleted file mode 100644 index c0e5641b7..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41.yaml +++ /dev/null @@ -1,93 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 1.0 - g: 0.203969061 - r: 0.0 -ContainedObjects: -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - - 1 13e274.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - 2A ba3f23.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - 2F 875764.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - 2B 5c8477.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - 2C bc94c3.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - 2G 805623.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - 2H 37d15e.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - 2I 154a13.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - 2J d499ce.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - 2K dea1a5.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - Downtown 529e79.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - Eastside 2b4d36.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - Merchant District 7b97ca.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - Northside 5cb9b4.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - Rivertown 509215.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - Southside b58725.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - Uptown b30384.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - 2D 94454d.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - 2E dfd6a7.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - - Miskatonic University 7725ed.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - - 3A a7f6c5.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - - 3B ec289e.yaml' -- !include 'Bag Night of the Zealot + Arkham Locations 07fe41/Notecard Arkham Locations - 497d7f.yaml' -Description: notzmat -DragSelectable: true -GMNotes: '' -GUID: 07fe41 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Bag Night of the Zealot + Arkham Locations 07fe41.ttslua' -LuaScriptState: '{"ml":{"13e274":{"lock":false,"position":{"x":40.2900772094727,"y":1.34012448787689,"z":-47.4199829101563},"rotation":{"x":0.020806422457099,"y":270.008544921875,"z":0.0167741663753986}},"154a13":{"lock":false,"position":{"x":40.2900390625,"y":1.38758480548859,"z":-61.2199821472168},"rotation":{"x":358.457672119141,"y":269.967346191406,"z":0.0168419294059277}},"2b4d36":{"lock":false,"position":{"x":36.624324798584,"y":1.33340048789978,"z":-65.8082580566406},"rotation":{"x":0.0208951327949762,"y":269.990600585938,"z":0.0163758564740419}},"37d15e":{"lock":false,"position":{"x":32.9852905273438,"y":1.38665974140167,"z":-56.6083335876465},"rotation":{"x":1.59544217586517,"y":270.000885009766,"z":0.0167890843003988}},"497d7f":{"lock":false,"position":{"x":26.9502983093262,"y":1.35188734531403,"z":-59.0094108581543},"rotation":{"x":359.979187011719,"y":90.0027542114258,"z":359.983215332031}},"509215":{"lock":false,"position":{"x":36.6247177124023,"y":1.3835654258728,"z":-70.4083862304688},"rotation":{"x":1.58389699459076,"y":270.015502929688,"z":0.016900610178709}},"529e79":{"lock":false,"position":{"x":40.2900505065918,"y":1.3862282037735,"z":-65.8198318481445},"rotation":{"x":358.457885742188,"y":270.038146972656,"z":0.0167494770139456}},"5c8477":{"lock":false,"position":{"x":36.6244735717773,"y":1.33744859695435,"z":-52.0084457397461},"rotation":{"x":0.0208226945251226,"y":270.002868652344,"z":0.0167121347039938}},"5cb9b4":{"lock":false,"position":{"x":40.2900733947754,"y":1.33338963985443,"z":-70.4198532104492},"rotation":{"x":0.0208240523934364,"y":269.990386962891,"z":0.0166809689253569}},"7725ed":{"lock":false,"position":{"x":29.3393440246582,"y":1.38254737854004,"z":-65.8083801269531},"rotation":{"x":1.59257233142853,"y":269.964904785156,"z":0.0167679730802774}},"7b97ca":{"lock":false,"position":{"x":32.985237121582,"y":1.38396263122559,"z":-65.8082809448242},"rotation":{"x":1.59529936313629,"y":269.977233886719,"z":0.0168041884899139}},"805623":{"lock":false,"position":{"x":36.6243705749512,"y":1.38759183883667,"z":-56.6084480285645},"rotation":{"x":1.58358669281006,"y":270.0009765625,"z":0.0168078858405352}},"875764":{"lock":false,"position":{"x":40.2900810241699,"y":1.33742642402649,"z":-56.6199836730957},"rotation":{"x":0.0208445712924004,"y":269.999084472656,"z":0.0165760722011328}},"94454d":{"lock":false,"position":{"x":29.3420658111572,"y":1.38660037517548,"z":-52.0094909667969},"rotation":{"x":1.59271323680878,"y":270.172424316406,"z":0.0170341897755861}},"a7f6c5":{"lock":false,"position":{"x":40.2900657653809,"y":1.33204400539398,"z":-75.0199737548828},"rotation":{"x":0.0208240933716297,"y":269.983154296875,"z":0.0167090948671103}},"b30384":{"lock":false,"position":{"x":29.3389854431152,"y":1.32941460609436,"z":-70.4085388183594},"rotation":{"x":0.0208649169653654,"y":269.976135253906,"z":0.0166198685765266}},"b58725":{"lock":false,"position":{"x":32.9857978820801,"y":1.43257093429565,"z":-70.4083633422852},"rotation":{"x":0.0781175717711449,"y":269.988067626953,"z":0.0165759343653917}},"ba3f23":{"lock":false,"position":{"x":40.2900619506836,"y":1.39027500152588,"z":-52.0200004577637},"rotation":{"x":358.457733154297,"y":270.003845214844,"z":0.0167994406074286}},"bc94c3":{"lock":false,"position":{"x":32.9871482849121,"y":1.38803112506866,"z":-52.0097503662109},"rotation":{"x":1.59626138210297,"y":270.003509521484,"z":0.0167093928903341}},"d499ce":{"lock":false,"position":{"x":36.6243362426758,"y":1.38663482666016,"z":-61.2084007263184},"rotation":{"x":358.446105957031,"y":269.988037109375,"z":0.0167805850505829}},"dea1a5":{"lock":false,"position":{"x":32.9852409362793,"y":1.33343350887299,"z":-61.2082786560059},"rotation":{"x":0.0209027379751205,"y":269.987030029297,"z":0.0166827831417322}},"dfd6a7":{"lock":false,"position":{"x":25.4922695159912,"y":1.33340930938721,"z":-52.0012969970703},"rotation":{"x":0.0208043158054352,"y":270.015380859375,"z":0.0167765244841576}},"ec289e":{"lock":false,"position":{"x":36.624382019043,"y":1.38221514225006,"z":-75.0083999633789},"rotation":{"x":1.5838942527771,"y":270.007507324219,"z":0.0168235283344984}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: Night of the Zealot + Arkham Locations -Snap: true -Sticky: true -Tags: -- playmat_memory_object -Tooltip: true -Transform: - posX: 45.64 - posY: 1.11 - posZ: -47.41 - rotX: 359.98 - rotY: 89.98 - rotZ: 359.98 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2A ba3f23.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2A ba3f23.ttslua deleted file mode 100644 index 07e6db879..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2A ba3f23.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/6NwbM59/Arkham-Michele-Botticelli.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2A ba3f23.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2A ba3f23.yaml deleted file mode 100644 index dc66432e1..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2A ba3f23.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/6NwbM59/Arkham-Michele-Botticelli.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: ba3f23 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - 2A ba3f23.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - 2A -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.39 - posZ: -52.02 - rotX: 358.46 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2B 5c8477.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2B 5c8477.ttslua deleted file mode 100644 index 061d8edf2..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2B 5c8477.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/N6sxyq5/Arkham-Mihail-Bila.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2B 5c8477.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2B 5c8477.yaml deleted file mode 100644 index b884de347..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2B 5c8477.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/N6sxyq5/Arkham-Mihail-Bila.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 5c8477 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - 2B 5c8477.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - 2B -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.34 - posZ: -52.01 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2C bc94c3.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2C bc94c3.ttslua deleted file mode 100644 index 96221a250..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2C bc94c3.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/W3QvdZW/Arkham-Eastside-Cristi-Balanescu.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2C bc94c3.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2C bc94c3.yaml deleted file mode 100644 index 9dfb87299..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2C bc94c3.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/W3QvdZW/Arkham-Eastside-Cristi-Balanescu.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: bc94c3 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - 2C bc94c3.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - 2C -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.39 - posZ: -52.01 - rotX: 1.6 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2D 94454d.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2D 94454d.ttslua deleted file mode 100644 index 1d3ba1fef..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2D 94454d.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/N7Lk7jc/Arkham-French-Hill-Cristi-Balanescu.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2D 94454d.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2D 94454d.yaml deleted file mode 100644 index 04fecbe2c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2D 94454d.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/N7Lk7jc/Arkham-French-Hill-Cristi-Balanescu.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 94454d -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - 2D 94454d.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - 2D -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 29.34 - posY: 1.39 - posZ: -52.01 - rotX: 1.59 - rotY: 270.17 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2E dfd6a7.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2E dfd6a7.ttslua deleted file mode 100644 index ba3da776a..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2E dfd6a7.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/FzRk98n/Arkham-Downtown-Cristi-Balanescu.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2E dfd6a7.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2E dfd6a7.yaml deleted file mode 100644 index 53b480036..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2E dfd6a7.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/FzRk98n/Arkham-Downtown-Cristi-Balanescu.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: dfd6a7 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - 2E dfd6a7.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - 2E -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 25.49 - posY: 1.33 - posZ: -52.0 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2F 875764.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2F 875764.ttslua deleted file mode 100644 index 828035079..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2F 875764.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/B393zxv/Arkham-Tomasz-Jedruszek.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2F 875764.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2F 875764.yaml deleted file mode 100644 index 080244ad8..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2F 875764.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/B393zxv/Arkham-Tomasz-Jedruszek.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '875764' -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - 2F 875764.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - 2F -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -56.62 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2G 805623.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2G 805623.ttslua deleted file mode 100644 index 99bbb6ea3..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2G 805623.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/2WQ2Vt6/Arkham-Tomasz-Jedruszek-2.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2G 805623.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2G 805623.yaml deleted file mode 100644 index 09c6fa017..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2G 805623.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/2WQ2Vt6/Arkham-Tomasz-Jedruszek-2.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '805623' -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - 2G 805623.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - 2G -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -56.61 - rotX: 1.58 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2H 37d15e.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2H 37d15e.ttslua deleted file mode 100644 index cf63f2a5c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2H 37d15e.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/R7pQ9Y7/Arkham-Tomasz-Jedruszek-3.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2H 37d15e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2H 37d15e.yaml deleted file mode 100644 index 65db1dbf7..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2H 37d15e.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/R7pQ9Y7/Arkham-Tomasz-Jedruszek-3.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 37d15e -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - 2H 37d15e.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - 2H -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.39 - posZ: -56.61 - rotX: 1.6 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2I 154a13.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2I 154a13.ttslua deleted file mode 100644 index 50da7a69b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2I 154a13.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/hswfZD6/Arkham-Guillem-H-Pongiluppi.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2I 154a13.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2I 154a13.yaml deleted file mode 100644 index ebd06c618..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2I 154a13.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/hswfZD6/Arkham-Guillem-H-Pongiluppi.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 154a13 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - 2I 154a13.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - 2I -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.39 - posZ: -61.22 - rotX: 358.46 - rotY: 269.97 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2J d499ce.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2J d499ce.ttslua deleted file mode 100644 index 7a3dbf667..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2J d499ce.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/5h5cMyF/Arkham-Guillem-H-Pongiluppi-2.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2J d499ce.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2J d499ce.yaml deleted file mode 100644 index 6b2f984d3..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2J d499ce.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/5h5cMyF/Arkham-Guillem-H-Pongiluppi-2.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: d499ce -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - 2J d499ce.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - 2J -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -61.21 - rotX: 358.45 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2K dea1a5.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2K dea1a5.ttslua deleted file mode 100644 index 518d73b9c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2K dea1a5.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/ZBdVsWt/Arkham-Guillem-H-Pongiluppi-3.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2K dea1a5.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2K dea1a5.yaml deleted file mode 100644 index dc652f4a0..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - 2K dea1a5.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/ZBdVsWt/Arkham-Guillem-H-Pongiluppi-3.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: dea1a5 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - 2K dea1a5.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - 2K -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.33 - posZ: -61.21 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Downtown 529e79.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Downtown 529e79.ttslua deleted file mode 100644 index b4336e01d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Downtown 529e79.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/W2yJ5QZ/Arkham-Downtown-Jokubas-Uogintas.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Downtown 529e79.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Downtown 529e79.yaml deleted file mode 100644 index d710ba780..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Downtown 529e79.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/W2yJ5QZ/Arkham-Downtown-Jokubas-Uogintas.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 529e79 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - Downtown 529e79.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - Downtown -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.39 - posZ: -65.82 - rotX: 358.46 - rotY: 270.04 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Eastside 2b4d36.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Eastside 2b4d36.ttslua deleted file mode 100644 index 1bd4ce1e6..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Eastside 2b4d36.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/xfn1Fp8/Arkham-Eastside-Jokubas-Uogintas.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Eastside 2b4d36.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Eastside 2b4d36.yaml deleted file mode 100644 index 663dc6345..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Eastside 2b4d36.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/xfn1Fp8/Arkham-Eastside-Jokubas-Uogintas.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 2b4d36 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - Eastside 2b4d36.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - Eastside -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.33 - posZ: -65.81 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Merchant District 7b97ca.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Merchant District 7b97ca.ttslua deleted file mode 100644 index 9c98a249d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Merchant District 7b97ca.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/HTNCCq4/Arkham-Merchant-District-Jokubas-Uogintas.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Merchant District 7b97ca.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Merchant District 7b97ca.yaml deleted file mode 100644 index a7582295d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Merchant District 7b97ca.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/HTNCCq4/Arkham-Merchant-District-Jokubas-Uogintas.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 7b97ca -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - Merchant District 7b97ca.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - Merchant District -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.38 - posZ: -65.81 - rotX: 1.6 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Miskatonic University 7725ed.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Miskatonic University 7725ed.ttslua deleted file mode 100644 index 6ed49aae0..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Miskatonic University 7725ed.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/ncz9xjP/Arkham-Miskatonic-University-Jokubas-Uogintas.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Miskatonic University 7725ed.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Miskatonic University 7725ed.yaml deleted file mode 100644 index c66447858..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Miskatonic University 7725ed.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/ncz9xjP/Arkham-Miskatonic-University-Jokubas-Uogintas.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 7725ed -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - Miskatonic University 7725ed.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - Miskatonic University -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 29.34 - posY: 1.38 - posZ: -65.81 - rotX: 1.59 - rotY: 269.96 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Northside 5cb9b4.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Northside 5cb9b4.ttslua deleted file mode 100644 index 7440cda5d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Northside 5cb9b4.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/sVWx1R3/Arkham-Northside-Jokubas-Uogintas.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Northside 5cb9b4.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Northside 5cb9b4.yaml deleted file mode 100644 index d43c42c2f..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Northside 5cb9b4.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/sVWx1R3/Arkham-Northside-Jokubas-Uogintas.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 5cb9b4 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - Northside 5cb9b4.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - Northside -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -70.42 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Rivertown 509215.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Rivertown 509215.ttslua deleted file mode 100644 index 4de4a91b8..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Rivertown 509215.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/RyJnHmz/Arkham-Rivertown-Jokubas-Uogintas.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Rivertown 509215.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Rivertown 509215.yaml deleted file mode 100644 index 72d88d4ab..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Rivertown 509215.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/RyJnHmz/Arkham-Rivertown-Jokubas-Uogintas.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '509215' -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - Rivertown 509215.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - Rivertown -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.38 - posZ: -70.41 - rotX: 1.58 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Southside b58725.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Southside b58725.ttslua deleted file mode 100644 index 0fed4db74..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Southside b58725.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/5GW5jg5/Arkham-Southside-Jokubas-Uogintas.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Southside b58725.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Southside b58725.yaml deleted file mode 100644 index b43949d78..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Southside b58725.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/5GW5jg5/Arkham-Southside-Jokubas-Uogintas.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: b58725 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - Southside b58725.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - Southside -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.43 - posZ: -70.41 - rotX: 0.08 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Uptown b30384.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Uptown b30384.ttslua deleted file mode 100644 index f427fa06e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Uptown b30384.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/YXjvkMn/Arkham-Uptown-Jokubas-Uogintas.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Uptown b30384.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Uptown b30384.yaml deleted file mode 100644 index de13e8b5e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ (Arkham) - Uptown b30384.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/YXjvkMn/Arkham-Uptown-Jokubas-Uogintas.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: b30384 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ (Arkham) - Uptown b30384.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ (Arkham) - Uptown -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 29.34 - posY: 1.33 - posZ: -70.41 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - 1 13e274.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - 1 13e274.ttslua deleted file mode 100644 index dd2815b28..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - 1 13e274.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/6NWqg1K/Zealot-Gathering.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - 1 13e274.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - 1 13e274.yaml deleted file mode 100644 index c47619a1d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - 1 13e274.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/6NWqg1K/Zealot-Gathering.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 13e274 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ - 1 13e274.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ - 1 -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -47.42 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - 3A a7f6c5.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - 3A a7f6c5.ttslua deleted file mode 100644 index 9c4ee594f..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - 3A a7f6c5.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/x5QFzrx/Zealot-3-Devourer-Below-Helen-Castelow.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - 3A a7f6c5.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - 3A a7f6c5.yaml deleted file mode 100644 index 1002401a2..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - 3A a7f6c5.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/x5QFzrx/Zealot-3-Devourer-Below-Helen-Castelow.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: a7f6c5 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ - 3A a7f6c5.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ - 3A -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -75.02 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - 3B ec289e.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - 3B ec289e.ttslua deleted file mode 100644 index e29de31f6..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - 3B ec289e.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/6r6LFGz/Zealot-3-Devourer-Below-Sarah-Miller.png" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - 3B ec289e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - 3B ec289e.yaml deleted file mode 100644 index a94b8880c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Night of the Zealot + Arkham Locations 07fe41/Custom_Token NotZ - 3B ec289e.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/6r6LFGz/Zealot-3-Devourer-Below-Sarah-Miller.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: ec289e -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token NotZ - 3B ec289e.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: NotZ - 3B -Snap: true -Sticky: true -Tags: -- notzmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.38 - posZ: -75.01 - rotX: 1.58 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be.ttslua deleted file mode 100644 index 8d7b4dd5e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be.ttslua +++ /dev/null @@ -1,163 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-03-16 3:26 p.m. ---- - ---- Original Memory Bag by MrStump ---- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080 - ----@class MemoryListEntry ----@field public position Vector ----@field public rotation Vector ----@field public lock boolean -local MemoryListEntry={} - ----@type table -local memory_list = {} - -local POSTFIX = { - SAVE = "_memory_object", - ZONE = "_memory_zone", - SHUFFLE = "_memory_shuffle" -} - ----@type table -local BUTTON = { - POSITION = Vector(0, 0.3, -2), - ROTATION = Vector(0, 180, 0), - HEIGHT = 350, - WIDTH = 800, - FONT_SIZE = 250, - COLOR = Color.Black, - FONT_COLOR = Color.White -} - -local ipairs = ipairs -local pairs = pairs - ----@return string -local function get_prefix() - return self:getDescription() -end - -local function updateSave() - local data_to_save = {["ml"]=memory_list} - local saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - ----@param label string ----@param action string -local function createButton(label, action) - self:clearButtons() - - ---@type CreateClassicUIButton - local parameters = { - label = label, - click_function = action, - function_owner = self - } - - for key, value in pairs(BUTTON) do - parameters[key:lower()] = value - end - - self:createButton(parameters) -end - -local function create_place_button() createButton("Place", "place_objects") end -local function create_recall_button() createButton("Recall", "recall_objects") end - ----@param tag string ----@param lock boolean ----@return fun(object:TTSObject) -local function create_object_callback(tag, lock) - ---@param object TTSObject - return function (object) - object:setLock(lock) - if object:hasTag(tag) then object:shuffle() end - end -end - ----@param object TTSObject -local function record_objects(object) - memory_list[object:getGUID()] = { - position = object:getPosition(), - rotation = object:getRotation(), - lock = object:getLock() - } - self:putObject(object) -end - ----@param objects TTSObject[] -local function update_objects(objects) - for _, object in ipairs(objects) do - record_objects(object) - end -end - ---Sends objects from bag/table to their saved position/rotation -function place_objects() - local prefix = get_prefix() - local shuffle_tag = prefix .. POSTFIX.SHUFFLE - local content = self.getObjects() - - for _, item in ipairs(content) do - local entry = memory_list[item.guid] - if entry then - self.takeObject { - guid=item.guid, - position=entry.position, - rotation=entry.rotation, - callback_function = create_object_callback(shuffle_tag, entry.lock) - } - end - end - - broadcastToAll("Objects Placed", {1,1,1}) - create_recall_button() -end - ---Recalls objects to bag from table -function recall_objects() - memory_list = {} - local prefix = get_prefix() - - if prefix=="" then - broadcastToAll("Error in Memory Bag: Tag prefix not set.") - return - end - - local save_tag = prefix .. POSTFIX.SAVE - local zone_tag = prefix .. POSTFIX.ZONE - - local zones = getObjectsWithTag(zone_tag) - if #zones>0 then - for _, zone in ipairs(zones) do - update_objects(zone:getObjects()) - end - else - update_objects(getObjectsWithTag(save_tag)) - end - updateSave() - broadcastToAll("Objects Recalled", {1,1,1}) - create_place_button() -end - -function onload(saved_data) - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - --Set up information off of loaded_data - memory_list = loaded_data.ml - else - --Set up information for if there is no saved saved data - memory_list = {} - end - - if self:getQuantity()==0 then - create_recall_button() - else - create_place_button() - end -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be.yaml deleted file mode 100644 index 558dacce6..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be.yaml +++ /dev/null @@ -1,70 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 0.0 - g: 0.0 - r: 1.0 -ContainedObjects: -- !include 'Bag Side Missions f4f4be/Custom_Token Blob A 1948e6.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Blob B 6d39e9.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Rougarou A fa41e2.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Rougarou B 63b912.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Carnevale 1e0757.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss B a9db71.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss A 218bf9.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Hotel Excelsior A 99ee1e.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Hotel Excelsior B 76157c.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Rougarou C 96fe2f.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss C be250d.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss D 2a2e57.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Labyrinth A 36e6f8.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Labyrinth B 46cd9b.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Labyrinth C d39fc2.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Rougarou D 77cf3d.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Rougarou E 07d749.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss E 12dc42.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token War of the Outer Gods 71c514.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Kingsport 03efce.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Erich Zann 969149.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss F 268604.yaml' -- !include 'Bag Side Missions f4f4be/Custom_Token Consternation 32c136.yaml' -Description: sidemat -DragSelectable: true -GMNotes: '' -GUID: f4f4be -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Bag Side Missions f4f4be.ttslua' -LuaScriptState: '{"ml":{"03efce":{"lock":false,"position":{"x":40.2900695800781,"y":1.33069908618927,"z":-79.619873046875},"rotation":{"x":0.0208131559193134,"y":269.985595703125,"z":0.0167657025158405}},"07d749":{"lock":false,"position":{"x":25.6873207092285,"y":1.38649654388428,"z":-47.4359703063965},"rotation":{"x":1.58943736553192,"y":269.995300292969,"z":0.0167984291911125}},"12dc42":{"lock":false,"position":{"x":25.497371673584,"y":1.38354790210724,"z":-56.611457824707},"rotation":{"x":358.458099365234,"y":269.9794921875,"z":0.0167887043207884}},"1948e6":{"lock":false,"position":{"x":40.2902412414551,"y":1.38488984107971,"z":-70.4197998046875},"rotation":{"x":358.457763671875,"y":269.983093261719,"z":0.0168045125901699}},"1e0757":{"lock":false,"position":{"x":40.2900772094727,"y":1.33877789974213,"z":-52.0199775695801},"rotation":{"x":0.0208130832761526,"y":269.985412597656,"z":0.0167656317353249}},"218bf9":{"lock":false,"position":{"x":40.2899436950684,"y":1.33742809295654,"z":-56.6199073791504},"rotation":{"x":0.0208324305713177,"y":269.998474121094,"z":0.0166420117020607}},"268604":{"lock":false,"position":{"x":21.8304271697998,"y":1.33073222637177,"z":-56.6004219055176},"rotation":{"x":0.0208226758986712,"y":269.988494873047,"z":0.0167297348380089}},"2a2e57":{"lock":false,"position":{"x":29.3394107818604,"y":1.3852299451828,"z":-56.6081314086914},"rotation":{"x":1.59222602844238,"y":269.988037109375,"z":0.0167940221726894}},"32c136":{"lock":false,"position":{"x":40.274284362793,"y":1.32800400257111,"z":-88.8075485229492},"rotation":{"x":0.0208088848739862,"y":270.000030517578,"z":0.0167711488902569}},"36e6f8":{"lock":false,"position":{"x":40.2904167175293,"y":1.38624262809753,"z":-65.8198394775391},"rotation":{"x":358.457550048828,"y":269.992553710938,"z":0.016792930662632}},"46cd9b":{"lock":false,"position":{"x":36.6242561340332,"y":1.38526940345764,"z":-65.8083877563477},"rotation":{"x":358.446746826172,"y":269.997253417969,"z":0.0167947746813297}},"63b912":{"lock":false,"position":{"x":36.624397277832,"y":1.39066696166992,"z":-47.4084243774414},"rotation":{"x":358.446441650391,"y":269.986907958984,"z":0.0168084967881441}},"6d39e9":{"lock":false,"position":{"x":36.6240463256836,"y":1.33206403255463,"z":-70.4083557128906},"rotation":{"x":0.0208107903599739,"y":270.004913330078,"z":0.0167715772986412}},"71c514":{"lock":false,"position":{"x":40.2900657653809,"y":1.33204543590546,"z":-75.0199737548828},"rotation":{"x":0.020813150331378,"y":269.985626220703,"z":0.0167658105492592}},"76157c":{"lock":false,"position":{"x":36.6238708496094,"y":1.38624787330627,"z":-61.2081832885742},"rotation":{"x":1.58368766307831,"y":269.984252929688,"z":0.0167866926640272}},"77cf3d":{"lock":false,"position":{"x":29.3391380310059,"y":1.33614194393158,"z":-47.4095993041992},"rotation":{"x":0.0208786576986313,"y":269.988494873047,"z":0.0164429545402527}},"969149":{"lock":false,"position":{"x":40.289981842041,"y":1.3293524980545,"z":-84.2198638916016},"rotation":{"x":0.0208130199462175,"y":269.985595703125,"z":0.0167657379060984}},"96fe2f":{"lock":false,"position":{"x":32.9849624633789,"y":1.38926637172699,"z":-47.4095344543457},"rotation":{"x":358.44873046875,"y":270.020874023438,"z":0.0167370550334454}},"99ee1e":{"lock":false,"position":{"x":40.2900695800781,"y":1.33608162403107,"z":-61.2199897766113},"rotation":{"x":0.0208375491201878,"y":269.985595703125,"z":0.0166378431022167}},"a9db71":{"lock":false,"position":{"x":36.6273536682129,"y":1.43608236312866,"z":-56.6083679199219},"rotation":{"x":0.0203358624130487,"y":269.975708007813,"z":0.0164193212985992}},"be250d":{"lock":false,"position":{"x":32.9853019714355,"y":1.33477675914764,"z":-56.6083221435547},"rotation":{"x":0.0208540260791779,"y":269.985595703125,"z":0.0165619384497404}},"d39fc2":{"lock":false,"position":{"x":32.9843368530273,"y":1.3320859670639,"z":-65.8083038330078},"rotation":{"x":0.0208368692547083,"y":269.999786376953,"z":0.0166636761277914}},"fa41e2":{"lock":false,"position":{"x":40.2912559509277,"y":1.39161622524261,"z":-47.4199562072754},"rotation":{"x":358.457946777344,"y":269.987091064453,"z":0.0168129969388247}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: Side Missions -Snap: true -Sticky: true -Tags: -- playmat_memory_object -Tooltip: true -Transform: - posX: 45.64 - posY: 1.1 - posZ: -84.26 - rotX: 359.98 - rotY: 89.99 - rotZ: 359.98 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Blob A 1948e6.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Blob A 1948e6.ttslua deleted file mode 100644 index 474f160be..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Blob A 1948e6.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/qJzstWF/Blob-That-Ate-Everything-Emilio-Rodriguez.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Blob A 1948e6.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Blob A 1948e6.yaml deleted file mode 100644 index 60b3fce68..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Blob A 1948e6.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/qJzstWF/Blob-That-Ate-Everything-Emilio-Rodriguez.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 1948e6 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Blob A 1948e6.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Blob A -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.38 - posZ: -70.42 - rotX: 358.46 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Blob B 6d39e9.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Blob B 6d39e9.ttslua deleted file mode 100644 index 30cc8f908..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Blob B 6d39e9.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/JxFV4ZN/Blob-That-Ate-Everything-Emilio-Rodriguez.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Blob B 6d39e9.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Blob B 6d39e9.yaml deleted file mode 100644 index 4c9423b04..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Blob B 6d39e9.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/JxFV4ZN/Blob-That-Ate-Everything-Emilio-Rodriguez.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 6d39e9 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Blob B 6d39e9.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Blob B -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.33 - posZ: -70.41 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Carnevale 1e0757.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Carnevale 1e0757.ttslua deleted file mode 100644 index e0cac5ff1..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Carnevale 1e0757.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/ZchJBpz/Carnevale-of-Horrors.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Carnevale 1e0757.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Carnevale 1e0757.yaml deleted file mode 100644 index 867ad5bc3..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Carnevale 1e0757.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/ZchJBpz/Carnevale-of-Horrors.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 1e0757 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Carnevale 1e0757.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Carnevale -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -52.02 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Consternation 32c136.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Consternation 32c136.ttslua deleted file mode 100644 index 83ed51260..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Consternation 32c136.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/Tw2xBP1/Consternation-Constellation.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Consternation 32c136.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Consternation 32c136.yaml deleted file mode 100644 index 3df0fad9c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Consternation 32c136.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/Tw2xBP1/Consternation-Constellation.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 32c136 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Consternation 32c136.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Consternation -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 40.27 - posY: 1.33 - posZ: -88.81 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Erich Zann 969149.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Erich Zann 969149.ttslua deleted file mode 100644 index d7b705b0c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Erich Zann 969149.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/SNr8tqN/Symphony-of-Erich-Zann-Hazel-Yingling.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Erich Zann 969149.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Erich Zann 969149.yaml deleted file mode 100644 index 3a1bd4955..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Erich Zann 969149.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/SNr8tqN/Symphony-of-Erich-Zann-Hazel-Yingling.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '969149' -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Erich Zann 969149.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Erich Zann -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -84.22 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss A 218bf9.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss A 218bf9.ttslua deleted file mode 100644 index 3072b0f7c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss A 218bf9.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/Vpzptmt/Guardians-of-the-Abyss-Yujin-Choo.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss A 218bf9.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss A 218bf9.yaml deleted file mode 100644 index 33405dd23..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss A 218bf9.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/Vpzptmt/Guardians-of-the-Abyss-Yujin-Choo.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 218bf9 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Guardians of the Abyss A 218bf9.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Guardians of the Abyss A -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -56.62 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss B a9db71.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss B a9db71.ttslua deleted file mode 100644 index d281f92ac..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss B a9db71.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/jMHPcvz/Guardians-of-the-Abyss-Jose-Vega.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss B a9db71.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss B a9db71.yaml deleted file mode 100644 index 7cc7740ea..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss B a9db71.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/jMHPcvz/Guardians-of-the-Abyss-Jose-Vega.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: a9db71 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Guardians of the Abyss B a9db71.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Guardians of the Abyss B -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 36.63 - posY: 1.44 - posZ: -56.61 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss C be250d.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss C be250d.ttslua deleted file mode 100644 index 9b789c3d7..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss C be250d.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/QbMvjbx/Guardians-of-the-Abyss-Mike-Szabados.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss C be250d.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss C be250d.yaml deleted file mode 100644 index e0b44867d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss C be250d.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/QbMvjbx/Guardians-of-the-Abyss-Mike-Szabados.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: be250d -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Guardians of the Abyss C be250d.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Guardians of the Abyss C -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.33 - posZ: -56.61 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss D 2a2e57.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss D 2a2e57.ttslua deleted file mode 100644 index ebc7a532f..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss D 2a2e57.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/99pqXQP/Guardians-of-the-Abyss-Koke-Nunez.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss D 2a2e57.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss D 2a2e57.yaml deleted file mode 100644 index c475fbd4b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss D 2a2e57.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/99pqXQP/Guardians-of-the-Abyss-Koke-Nunez.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 2a2e57 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Guardians of the Abyss D 2a2e57.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Guardians of the Abyss D -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 29.34 - posY: 1.39 - posZ: -56.61 - rotX: 1.59 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss E 12dc42.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss E 12dc42.ttslua deleted file mode 100644 index 4d41625af..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss E 12dc42.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/gD3R6cw/Guardians-of-the-Abyss-Jake-Murray.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss E 12dc42.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss E 12dc42.yaml deleted file mode 100644 index 8c0aca5e7..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss E 12dc42.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/gD3R6cw/Guardians-of-the-Abyss-Jake-Murray.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 12dc42 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Guardians of the Abyss E 12dc42.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Guardians of the Abyss E -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 25.5 - posY: 1.38 - posZ: -56.61 - rotX: 358.46 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss F 268604.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss F 268604.ttslua deleted file mode 100644 index 0ddee7e9b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss F 268604.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/zFDt9Q8/Guardians-of-the-Abyss-Nele-Diel.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss F 268604.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss F 268604.yaml deleted file mode 100644 index 6642eb064..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Guardians of the Abyss F 268604.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/zFDt9Q8/Guardians-of-the-Abyss-Nele-Diel.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '268604' -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Guardians of the Abyss F 268604.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Guardians of the Abyss F -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 21.83 - posY: 1.33 - posZ: -56.6 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Hotel Excelsior A 99ee1e.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Hotel Excelsior A 99ee1e.ttslua deleted file mode 100644 index 1a1588942..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Hotel Excelsior A 99ee1e.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/vBQRHNS/Murder-at-Excelsior-Hotel-Romain-Bayle.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Hotel Excelsior A 99ee1e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Hotel Excelsior A 99ee1e.yaml deleted file mode 100644 index 757c48633..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Hotel Excelsior A 99ee1e.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/vBQRHNS/Murder-at-Excelsior-Hotel-Romain-Bayle.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 99ee1e -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Hotel Excelsior A 99ee1e.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Hotel Excelsior A -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -61.22 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Hotel Excelsior B 76157c.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Hotel Excelsior B 76157c.ttslua deleted file mode 100644 index 5dd6b5e4b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Hotel Excelsior B 76157c.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/5cQ6LvN/Murder-at-Excelsior-Hotel-Alistair-Mitchell.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Hotel Excelsior B 76157c.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Hotel Excelsior B 76157c.yaml deleted file mode 100644 index dc7e89475..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Hotel Excelsior B 76157c.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/5cQ6LvN/Murder-at-Excelsior-Hotel-Alistair-Mitchell.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 76157c -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Hotel Excelsior B 76157c.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Hotel Excelsior B -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -61.21 - rotX: 1.58 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Kingsport 03efce.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Kingsport 03efce.ttslua deleted file mode 100644 index e3d03872b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Kingsport 03efce.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/rbkk7ys/Kingsport-Tomasz-Jedruszek.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Kingsport 03efce.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Kingsport 03efce.yaml deleted file mode 100644 index c63e9daeb..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Kingsport 03efce.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/rbkk7ys/Kingsport-Tomasz-Jedruszek.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 03efce -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Kingsport 03efce.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Kingsport -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -79.62 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Labyrinth A 36e6f8.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Labyrinth A 36e6f8.ttslua deleted file mode 100644 index 54661df6b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Labyrinth A 36e6f8.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/44DXfWw/Labyrinths-of-Lunacy-Richard-Wright.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Labyrinth A 36e6f8.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Labyrinth A 36e6f8.yaml deleted file mode 100644 index cdc510a62..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Labyrinth A 36e6f8.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/44DXfWw/Labyrinths-of-Lunacy-Richard-Wright.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 36e6f8 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Labyrinth A 36e6f8.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Labyrinth A -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.39 - posZ: -65.82 - rotX: 358.46 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Labyrinth B 46cd9b.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Labyrinth B 46cd9b.ttslua deleted file mode 100644 index 1ea1ba80e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Labyrinth B 46cd9b.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/f17PMCC/Labyrinths-of-Lunacy-Cordelia-Wolf.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Labyrinth B 46cd9b.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Labyrinth B 46cd9b.yaml deleted file mode 100644 index c78931cd1..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Labyrinth B 46cd9b.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/f17PMCC/Labyrinths-of-Lunacy-Cordelia-Wolf.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 46cd9b -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Labyrinth B 46cd9b.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Labyrinth B -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -65.81 - rotX: 358.45 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Labyrinth C d39fc2.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Labyrinth C d39fc2.ttslua deleted file mode 100644 index d85c9c883..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Labyrinth C d39fc2.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/jMQhs68/Labyrinths-of-Lunacy-Robert-Berg.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Labyrinth C d39fc2.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Labyrinth C d39fc2.yaml deleted file mode 100644 index ec7803acc..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Labyrinth C d39fc2.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/jMQhs68/Labyrinths-of-Lunacy-Robert-Berg.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: d39fc2 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Labyrinth C d39fc2.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Labyrinth C -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 32.98 - posY: 1.33 - posZ: -65.81 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou A fa41e2.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou A fa41e2.ttslua deleted file mode 100644 index 564b67492..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou A fa41e2.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/Qf7Sr7P/Curse-of-the-Rougarou.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou A fa41e2.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou A fa41e2.yaml deleted file mode 100644 index 8d7564e72..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou A fa41e2.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/Qf7Sr7P/Curse-of-the-Rougarou.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: fa41e2 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Rougarou A fa41e2.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Rougarou A -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.39 - posZ: -47.42 - rotX: 358.46 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou B 63b912.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou B 63b912.ttslua deleted file mode 100644 index 746f13526..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou B 63b912.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/ZxGTC1w/Curse-of-the-Rougarou-Lachlan-Page.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou B 63b912.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou B 63b912.yaml deleted file mode 100644 index 273b9855f..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou B 63b912.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/ZxGTC1w/Curse-of-the-Rougarou-Lachlan-Page.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 63b912 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Rougarou B 63b912.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Rougarou B -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -47.41 - rotX: 358.45 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou C 96fe2f.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou C 96fe2f.ttslua deleted file mode 100644 index 285ddc3d6..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou C 96fe2f.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/BK7rmJ9/Curse-of-the-Rougarou-Karine-Villette.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou C 96fe2f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou C 96fe2f.yaml deleted file mode 100644 index fad212ba5..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou C 96fe2f.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/BK7rmJ9/Curse-of-the-Rougarou-Karine-Villette.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 96fe2f -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Rougarou C 96fe2f.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Rougarou C -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 32.98 - posY: 1.39 - posZ: -47.41 - rotX: 358.45 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou D 77cf3d.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou D 77cf3d.ttslua deleted file mode 100644 index 683e2b6ee..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou D 77cf3d.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/HgNXJhW/Curse-of-the-Rougarou-Vladimir-Manyukhin.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou D 77cf3d.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou D 77cf3d.yaml deleted file mode 100644 index 8827056a3..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou D 77cf3d.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/HgNXJhW/Curse-of-the-Rougarou-Vladimir-Manyukhin.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 77cf3d -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Rougarou D 77cf3d.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Rougarou D -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 29.34 - posY: 1.34 - posZ: -47.41 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou E 07d749.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou E 07d749.ttslua deleted file mode 100644 index 167f40a35..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou E 07d749.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/hs1Qjp0/Curse-of-the-Rougarou-Ann-Kovaleva.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou E 07d749.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou E 07d749.yaml deleted file mode 100644 index f6543693e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token Rougarou E 07d749.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/hs1Qjp0/Curse-of-the-Rougarou-Ann-Kovaleva.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 07d749 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token Rougarou E 07d749.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: Rougarou E -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 25.69 - posY: 1.39 - posZ: -47.44 - rotX: 1.59 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token War of the Outer Gods 71c514.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token War of the Outer Gods 71c514.ttslua deleted file mode 100644 index 0afa3915a..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token War of the Outer Gods 71c514.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/wLNGFTG/War-of-the-Outer-Gods-Joshua-Cairos.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token War of the Outer Gods 71c514.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token War of the Outer Gods 71c514.yaml deleted file mode 100644 index 21c1c7799..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag Side Missions f4f4be/Custom_Token War of the Outer Gods 71c514.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/wLNGFTG/War-of-the-Outer-Gods-Joshua-Cairos.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 71c514 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token War of the Outer Gods 71c514.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: War of the Outer Gods -Snap: true -Sticky: true -Tags: -- sidemat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -75.02 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db.ttslua deleted file mode 100644 index 8d7b4dd5e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db.ttslua +++ /dev/null @@ -1,163 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-03-16 3:26 p.m. ---- - ---- Original Memory Bag by MrStump ---- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080 - ----@class MemoryListEntry ----@field public position Vector ----@field public rotation Vector ----@field public lock boolean -local MemoryListEntry={} - ----@type table -local memory_list = {} - -local POSTFIX = { - SAVE = "_memory_object", - ZONE = "_memory_zone", - SHUFFLE = "_memory_shuffle" -} - ----@type table -local BUTTON = { - POSITION = Vector(0, 0.3, -2), - ROTATION = Vector(0, 180, 0), - HEIGHT = 350, - WIDTH = 800, - FONT_SIZE = 250, - COLOR = Color.Black, - FONT_COLOR = Color.White -} - -local ipairs = ipairs -local pairs = pairs - ----@return string -local function get_prefix() - return self:getDescription() -end - -local function updateSave() - local data_to_save = {["ml"]=memory_list} - local saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - ----@param label string ----@param action string -local function createButton(label, action) - self:clearButtons() - - ---@type CreateClassicUIButton - local parameters = { - label = label, - click_function = action, - function_owner = self - } - - for key, value in pairs(BUTTON) do - parameters[key:lower()] = value - end - - self:createButton(parameters) -end - -local function create_place_button() createButton("Place", "place_objects") end -local function create_recall_button() createButton("Recall", "recall_objects") end - ----@param tag string ----@param lock boolean ----@return fun(object:TTSObject) -local function create_object_callback(tag, lock) - ---@param object TTSObject - return function (object) - object:setLock(lock) - if object:hasTag(tag) then object:shuffle() end - end -end - ----@param object TTSObject -local function record_objects(object) - memory_list[object:getGUID()] = { - position = object:getPosition(), - rotation = object:getRotation(), - lock = object:getLock() - } - self:putObject(object) -end - ----@param objects TTSObject[] -local function update_objects(objects) - for _, object in ipairs(objects) do - record_objects(object) - end -end - ---Sends objects from bag/table to their saved position/rotation -function place_objects() - local prefix = get_prefix() - local shuffle_tag = prefix .. POSTFIX.SHUFFLE - local content = self.getObjects() - - for _, item in ipairs(content) do - local entry = memory_list[item.guid] - if entry then - self.takeObject { - guid=item.guid, - position=entry.position, - rotation=entry.rotation, - callback_function = create_object_callback(shuffle_tag, entry.lock) - } - end - end - - broadcastToAll("Objects Placed", {1,1,1}) - create_recall_button() -end - ---Recalls objects to bag from table -function recall_objects() - memory_list = {} - local prefix = get_prefix() - - if prefix=="" then - broadcastToAll("Error in Memory Bag: Tag prefix not set.") - return - end - - local save_tag = prefix .. POSTFIX.SAVE - local zone_tag = prefix .. POSTFIX.ZONE - - local zones = getObjectsWithTag(zone_tag) - if #zones>0 then - for _, zone in ipairs(zones) do - update_objects(zone:getObjects()) - end - else - update_objects(getObjectsWithTag(save_tag)) - end - updateSave() - broadcastToAll("Objects Recalled", {1,1,1}) - create_place_button() -end - -function onload(saved_data) - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - --Set up information off of loaded_data - memory_list = loaded_data.ml - else - --Set up information for if there is no saved saved data - memory_list = {} - end - - if self:getQuantity()==0 then - create_recall_button() - else - create_place_button() - end -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db.yaml deleted file mode 100644 index db9bceabf..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db.yaml +++ /dev/null @@ -1,71 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 1.0 - g: 0.0 - r: 0.952366769 -ContainedObjects: -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 2A 3467d8.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 3A 1299aa.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 3B f7c7bd.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 0 0b7d77.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 2B 29fb59.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 2C df64cb.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 3C d6507e.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 4A 891943.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 4D a3c29b.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 4B 7c18b0.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 4C 0e6a60.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 5C 5cc445.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 5A c49f1a.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 5B 4637fa.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 1 36c99e.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 4E 93292a.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 3D d3047a.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 5D be0192.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 6 b96b46.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 7B cef7d2.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 7A 727293.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 7C 8757ad.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 8A 7e50fa.yaml' -- !include 'Bag The Circle Undone d262db/Custom_Token TCU - 8B 53c074.yaml' -Description: tcumat -DragSelectable: true -GMNotes: '' -GUID: d262db -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Bag The Circle Undone d262db.ttslua' -LuaScriptState: '{"ml":{"0b7d77":{"lock":false,"position":{"x":40.2900772094727,"y":1.34012448787689,"z":-47.4199829101563},"rotation":{"x":0.0208131186664104,"y":269.985534667969,"z":0.0167657472193241}},"0e6a60":{"lock":false,"position":{"x":32.986213684082,"y":1.33208477497101,"z":-65.8081970214844},"rotation":{"x":0.0208583567291498,"y":269.983978271484,"z":0.0165787246078253}},"1299aa":{"lock":false,"position":{"x":40.2900466918945,"y":1.38757884502411,"z":-61.2199859619141},"rotation":{"x":358.457855224609,"y":269.979278564453,"z":0.0167892947793007}},"29fb59":{"lock":false,"position":{"x":36.6243896484375,"y":1.38759207725525,"z":-56.6084251403809},"rotation":{"x":1.58360362052917,"y":269.979309082031,"z":0.0167949665337801}},"3467d8":{"lock":false,"position":{"x":40.2900810241699,"y":1.3374263048172,"z":-56.6199798583984},"rotation":{"x":0.0208505652844906,"y":269.979919433594,"z":0.0165672935545444}},"36c99e":{"lock":false,"position":{"x":40.2900772094727,"y":1.33877789974213,"z":-52.0199737548828},"rotation":{"x":0.0208148956298828,"y":269.979553222656,"z":0.0167634803801775}},"4637fa":{"lock":false,"position":{"x":36.6243934631348,"y":1.38356256484985,"z":-70.408317565918},"rotation":{"x":1.58386623859406,"y":269.982940673828,"z":0.0168385803699493}},"53c074":{"lock":false,"position":{"x":36.6243858337402,"y":1.37952423095703,"z":-84.2082748413086},"rotation":{"x":1.58394324779511,"y":269.97802734375,"z":0.0167910698801279}},"5cc445":{"lock":false,"position":{"x":32.9852676391602,"y":1.38259994983673,"z":-70.4083023071289},"rotation":{"x":1.59481465816498,"y":269.977111816406,"z":0.0167935099452734}},"727293":{"lock":false,"position":{"x":40.2900428771973,"y":1.38221776485443,"z":-79.6198806762695},"rotation":{"x":358.457061767578,"y":270.012268066406,"z":0.0167858339846134}},"7c18b0":{"lock":false,"position":{"x":36.6247444152832,"y":1.43335330486298,"z":-65.8082885742188},"rotation":{"x":0.0211367905139923,"y":269.991271972656,"z":0.0165514443069696}},"7e50fa":{"lock":false,"position":{"x":40.289981842041,"y":1.32934963703156,"z":-84.2198715209961},"rotation":{"x":0.0208379328250885,"y":269.973510742188,"z":0.0166499819606543}},"8757ad":{"lock":false,"position":{"x":32.9853096008301,"y":1.37991297245026,"z":-79.6082382202148},"rotation":{"x":1.59499394893646,"y":270.019073486328,"z":0.0168122481554747}},"891943":{"lock":false,"position":{"x":40.2896537780762,"y":1.3347327709198,"z":-65.8198318481445},"rotation":{"x":0.0208477415144444,"y":269.990509033203,"z":0.0165486726909876}},"93292a":{"lock":false,"position":{"x":25.5436916351318,"y":1.32938027381897,"z":-65.829231262207},"rotation":{"x":0.0208344701677561,"y":269.912841796875,"z":0.0167394429445267}},"a3c29b":{"lock":false,"position":{"x":29.3412799835205,"y":1.38257503509521,"z":-65.8089599609375},"rotation":{"x":1.59337544441223,"y":269.997375488281,"z":0.0167895462363958}},"b96b46":{"lock":false,"position":{"x":40.2900657653809,"y":1.33204555511475,"z":-75.0199737548828},"rotation":{"x":0.0208139251917601,"y":269.982513427734,"z":0.0167645514011383}},"be0192":{"lock":false,"position":{"x":29.3391304016113,"y":1.38119769096375,"z":-70.4084091186523},"rotation":{"x":1.59244918823242,"y":269.991485595703,"z":0.0168058760464191}},"c49f1a":{"lock":false,"position":{"x":40.2900695800781,"y":1.33338844776154,"z":-70.4198455810547},"rotation":{"x":0.0208339560776949,"y":269.981903076172,"z":0.0166303999722004}},"cef7d2":{"lock":false,"position":{"x":36.6243743896484,"y":1.32936525344849,"z":-79.608268737793},"rotation":{"x":0.0208449997007847,"y":270.015014648438,"z":0.0165506601333618}},"d3047a":{"lock":false,"position":{"x":29.3391284942627,"y":1.38389098644257,"z":-61.2083320617676},"rotation":{"x":1.59246706962585,"y":269.982208251953,"z":0.0167914628982544}},"d6507e":{"lock":false,"position":{"x":32.9852485656738,"y":1.38531124591827,"z":-61.2083473205566},"rotation":{"x":1.59538626670837,"y":269.977874755859,"z":0.0167828910052776}},"df64cb":{"lock":false,"position":{"x":32.9853172302246,"y":1.38665962219238,"z":-56.6083183288574},"rotation":{"x":1.59544384479523,"y":269.982849121094,"z":0.016785828396678}},"f7c7bd":{"lock":false,"position":{"x":36.6243286132813,"y":1.33475041389465,"z":-61.2084083557129},"rotation":{"x":0.0208660773932934,"y":269.98388671875,"z":0.016502944752574}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: The Circle Undone -Snap: true -Sticky: true -Tags: -- playmat_memory_object -Tooltip: true -Transform: - posX: 45.64 - posY: 1.1 - posZ: -65.81 - rotX: 359.98 - rotY: 89.98 - rotZ: 359.98 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 0 0b7d77.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 0 0b7d77.ttslua deleted file mode 100644 index d28e7432d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 0 0b7d77.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/gm4C6yy/Circle-Undone-0-Prologue-Ted-Galaday.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 0 0b7d77.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 0 0b7d77.yaml deleted file mode 100644 index 1e05be0df..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 0 0b7d77.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/gm4C6yy/Circle-Undone-0-Prologue-Ted-Galaday.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 0b7d77 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 0 0b7d77.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 0 -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -47.42 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 1 36c99e.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 1 36c99e.ttslua deleted file mode 100644 index 0563e18ba..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 1 36c99e.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/kgJ34WS/Circle-Undone-1-Witching-Hour-Nele-Diel.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 1 36c99e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 1 36c99e.yaml deleted file mode 100644 index 890d1ed94..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 1 36c99e.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/kgJ34WS/Circle-Undone-1-Witching-Hour-Nele-Diel.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 36c99e -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 1 36c99e.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 1 -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -52.02 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 2A 3467d8.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 2A 3467d8.ttslua deleted file mode 100644 index 2755dfbfa..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 2A 3467d8.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/qNWzH0Y/Circle-Undone-2-At-Death-039-s-Doorstep-Emilio-Rodriguez.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 2A 3467d8.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 2A 3467d8.yaml deleted file mode 100644 index 60fc961a6..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 2A 3467d8.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/qNWzH0Y/Circle-Undone-2-At-Death-039-s-Doorstep-Emilio-Rodriguez.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 3467d8 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 2A 3467d8.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 2A -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -56.62 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 2B 29fb59.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 2B 29fb59.ttslua deleted file mode 100644 index bdb36d3af..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 2B 29fb59.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/T1zp1QN/Circle-Undone-2-At-Death-039-s-Doorstep-Emilio-Rodriguez-2.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 2B 29fb59.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 2B 29fb59.yaml deleted file mode 100644 index 432610e4f..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 2B 29fb59.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/T1zp1QN/Circle-Undone-2-At-Death-039-s-Doorstep-Emilio-Rodriguez-2.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 29fb59 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 2B 29fb59.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 2B -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -56.61 - rotX: 1.58 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 2C df64cb.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 2C df64cb.ttslua deleted file mode 100644 index 664482a3b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 2C df64cb.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/ZJfYZ1w/Circle-Undone-2-At-Death-039-s-Doorstep-Majid-Azim.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 2C df64cb.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 2C df64cb.yaml deleted file mode 100644 index 47e25e789..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 2C df64cb.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/ZJfYZ1w/Circle-Undone-2-At-Death-039-s-Doorstep-Majid-Azim.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: df64cb -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 2C df64cb.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 2C -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.39 - posZ: -56.61 - rotX: 1.6 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3A 1299aa.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3A 1299aa.ttslua deleted file mode 100644 index c09c21aff..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3A 1299aa.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/MpcPXR5/Circle-Undone-3-Secret-Name-Pierre-Santamaria.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3A 1299aa.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3A 1299aa.yaml deleted file mode 100644 index 9312969df..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3A 1299aa.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/MpcPXR5/Circle-Undone-3-Secret-Name-Pierre-Santamaria.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 1299aa -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 3A 1299aa.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 3A -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.39 - posZ: -61.22 - rotX: 358.46 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3B f7c7bd.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3B f7c7bd.ttslua deleted file mode 100644 index f62116edb..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3B f7c7bd.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/hsBw4JQ/Circle-Undone-3-Secret-Name-Jeff-Jumper.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3B f7c7bd.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3B f7c7bd.yaml deleted file mode 100644 index a74c2fd93..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3B f7c7bd.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/hsBw4JQ/Circle-Undone-3-Secret-Name-Jeff-Jumper.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: f7c7bd -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 3B f7c7bd.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 3B -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.33 - posZ: -61.21 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3C d6507e.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3C d6507e.ttslua deleted file mode 100644 index f90c58cc7..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3C d6507e.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/0D7LzxV/Circle-Undone-3-The-Secret-Name-Robert-Laskey.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3C d6507e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3C d6507e.yaml deleted file mode 100644 index 7ebb610aa..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3C d6507e.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/0D7LzxV/Circle-Undone-3-The-Secret-Name-Robert-Laskey.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: d6507e -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 3C d6507e.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 3C -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.39 - posZ: -61.21 - rotX: 1.6 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3D d3047a.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3D d3047a.ttslua deleted file mode 100644 index fc8eca3f4..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3D d3047a.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/LQ8rdKs/Circle-Undone-3-The-Secret-Name-Greg-Bobrowski.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3D d3047a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3D d3047a.yaml deleted file mode 100644 index 81d807c9f..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 3D d3047a.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/LQ8rdKs/Circle-Undone-3-The-Secret-Name-Greg-Bobrowski.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: d3047a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 3D d3047a.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 3D -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 29.34 - posY: 1.38 - posZ: -61.21 - rotX: 1.59 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4A 891943.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4A 891943.ttslua deleted file mode 100644 index 58ea687d2..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4A 891943.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/sj1bS5x/Circle-Undone-4-Wages-of-Sin-Serge-Da-Silva-Dias.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4A 891943.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4A 891943.yaml deleted file mode 100644 index 83b936f16..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4A 891943.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/sj1bS5x/Circle-Undone-4-Wages-of-Sin-Serge-Da-Silva-Dias.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '891943' -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 4A 891943.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 4A -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -65.82 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4B 7c18b0.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4B 7c18b0.ttslua deleted file mode 100644 index 66aa3770d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4B 7c18b0.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/fDMqH1C/Circle-Undone-4-Wages-of-Sin-Emilio-Rodriguez.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4B 7c18b0.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4B 7c18b0.yaml deleted file mode 100644 index fb3fc75a0..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4B 7c18b0.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/fDMqH1C/Circle-Undone-4-Wages-of-Sin-Emilio-Rodriguez.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 7c18b0 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 4B 7c18b0.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 4B -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.43 - posZ: -65.81 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4C 0e6a60.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4C 0e6a60.ttslua deleted file mode 100644 index 69f4275d6..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4C 0e6a60.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/HDrKkZF/Circle-Undone-4-Wages-of-Sin-Emilio-Rodriguez-2.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4C 0e6a60.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4C 0e6a60.yaml deleted file mode 100644 index b2bb4009a..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4C 0e6a60.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/HDrKkZF/Circle-Undone-4-Wages-of-Sin-Emilio-Rodriguez-2.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 0e6a60 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 4C 0e6a60.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 4C -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.33 - posZ: -65.81 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4D a3c29b.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4D a3c29b.ttslua deleted file mode 100644 index 23a20379c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4D a3c29b.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/CMj007q/Circle-Undone-4-Wages-of-Sin-Mateusz-Michalski.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4D a3c29b.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4D a3c29b.yaml deleted file mode 100644 index 89e622798..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4D a3c29b.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/CMj007q/Circle-Undone-4-Wages-of-Sin-Mateusz-Michalski.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: a3c29b -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 4D a3c29b.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 4D -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 29.34 - posY: 1.38 - posZ: -65.81 - rotX: 1.59 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4E 93292a.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4E 93292a.ttslua deleted file mode 100644 index 5cec5101a..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4E 93292a.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/vkpG8cM/Circle-Undone-4-Wages-of-Sin-Greg-Bobrowski.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4E 93292a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4E 93292a.yaml deleted file mode 100644 index 728663be2..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 4E 93292a.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/vkpG8cM/Circle-Undone-4-Wages-of-Sin-Greg-Bobrowski.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 93292a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 4E 93292a.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 4E -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 25.54 - posY: 1.33 - posZ: -65.83 - rotX: 0.02 - rotY: 269.91 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5A c49f1a.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5A c49f1a.ttslua deleted file mode 100644 index c528de9df..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5A c49f1a.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/pPzXNd1/Circle-Undone-5-For-the-Greater-Good-2.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5A c49f1a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5A c49f1a.yaml deleted file mode 100644 index e4634e143..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5A c49f1a.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/pPzXNd1/Circle-Undone-5-For-the-Greater-Good-2.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: c49f1a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 5A c49f1a.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 5A -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -70.42 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5B 4637fa.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5B 4637fa.ttslua deleted file mode 100644 index 50f1514f6..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5B 4637fa.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/vj1q4Cm/Circle-Undone-5-For-the-Greater-Good-Robert-Laskey.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5B 4637fa.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5B 4637fa.yaml deleted file mode 100644 index 1ad6eb2c5..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5B 4637fa.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/vj1q4Cm/Circle-Undone-5-For-the-Greater-Good-Robert-Laskey.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 4637fa -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 5B 4637fa.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 5B -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.38 - posZ: -70.41 - rotX: 1.58 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5C 5cc445.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5C 5cc445.ttslua deleted file mode 100644 index 343c03a4b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5C 5cc445.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/8rMLvJH/Circle-Undone-5-For-the-Greater-Good-Greg-Bobrowski.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5C 5cc445.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5C 5cc445.yaml deleted file mode 100644 index 2c57f2ba3..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5C 5cc445.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/8rMLvJH/Circle-Undone-5-For-the-Greater-Good-Greg-Bobrowski.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 5cc445 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 5C 5cc445.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 5C -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.38 - posZ: -70.41 - rotX: 1.59 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5D be0192.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5D be0192.ttslua deleted file mode 100644 index 98fc947b5..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5D be0192.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/LDyqjbj/Circle-Undone-5-For-the-Greater-Good.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5D be0192.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5D be0192.yaml deleted file mode 100644 index c307c2bad..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 5D be0192.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/LDyqjbj/Circle-Undone-5-For-the-Greater-Good.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: be0192 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 5D be0192.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 5D -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 29.34 - posY: 1.38 - posZ: -70.41 - rotX: 1.59 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 6 b96b46.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 6 b96b46.ttslua deleted file mode 100644 index 7916b0a69..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 6 b96b46.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/n7SD1tB/Circle-Undone-6-Union-amp-Disillusioned-Andreas-Rocha.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 6 b96b46.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 6 b96b46.yaml deleted file mode 100644 index eac6a05cc..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 6 b96b46.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/n7SD1tB/Circle-Undone-6-Union-amp-Disillusioned-Andreas-Rocha.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: b96b46 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 6 b96b46.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 6 -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -75.02 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 7A 727293.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 7A 727293.ttslua deleted file mode 100644 index 35c4010a5..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 7A 727293.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/m6DshNg/Circle-Undone-7-In-the-Clutches-of-Chaos-Alexandr-Elichev.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 7A 727293.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 7A 727293.yaml deleted file mode 100644 index ea997613a..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 7A 727293.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/m6DshNg/Circle-Undone-7-In-the-Clutches-of-Chaos-Alexandr-Elichev.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '727293' -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 7A 727293.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 7A -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.38 - posZ: -79.62 - rotX: 358.46 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 7B cef7d2.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 7B cef7d2.ttslua deleted file mode 100644 index f0435c872..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 7B cef7d2.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/bFXBNh7/Circle-Undone-7-In-the-Clutches-of-Chaos.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 7B cef7d2.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 7B cef7d2.yaml deleted file mode 100644 index 4ca9046d6..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 7B cef7d2.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/bFXBNh7/Circle-Undone-7-In-the-Clutches-of-Chaos.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: cef7d2 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 7B cef7d2.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 7B -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.33 - posZ: -79.61 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 7C 8757ad.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 7C 8757ad.ttslua deleted file mode 100644 index 6511e0424..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 7C 8757ad.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/k2p4yfG/Circle-Undone-7-In-the-Clutches-of-Chaos-Jokubas-Uogintas.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 7C 8757ad.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 7C 8757ad.yaml deleted file mode 100644 index d5c344a3d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 7C 8757ad.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/k2p4yfG/Circle-Undone-7-In-the-Clutches-of-Chaos-Jokubas-Uogintas.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 8757ad -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 7C 8757ad.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 7C -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.38 - posZ: -79.61 - rotX: 1.59 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 8A 7e50fa.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 8A 7e50fa.ttslua deleted file mode 100644 index 5dfbc9e53..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 8A 7e50fa.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/9TPwvP6/Circle-Undone-8-Before-the-Black-Throne-Aaron-Luke-Wilson.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 8A 7e50fa.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 8A 7e50fa.yaml deleted file mode 100644 index 96906532f..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 8A 7e50fa.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/9TPwvP6/Circle-Undone-8-Before-the-Black-Throne-Aaron-Luke-Wilson.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 7e50fa -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 8A 7e50fa.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 8A -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -84.22 - rotX: 0.02 - rotY: 269.97 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 8B 53c074.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 8B 53c074.ttslua deleted file mode 100644 index aec452fe0..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 8B 53c074.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/VNtgH4v/Circle-Undone-8-Before-the-Black-Throne-Greg-Bobrowski.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 8B 53c074.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 8B 53c074.yaml deleted file mode 100644 index f981bd7c7..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Circle Undone d262db/Custom_Token TCU - 8B 53c074.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/VNtgH4v/Circle-Undone-8-Before-the-Black-Throne-Greg-Bobrowski.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 53c074 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TCU - 8B 53c074.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TCU - 8B -Snap: true -Sticky: true -Tags: -- tcumat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.38 - posZ: -84.21 - rotX: 1.58 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b.ttslua deleted file mode 100644 index 8d7b4dd5e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b.ttslua +++ /dev/null @@ -1,163 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-03-16 3:26 p.m. ---- - ---- Original Memory Bag by MrStump ---- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080 - ----@class MemoryListEntry ----@field public position Vector ----@field public rotation Vector ----@field public lock boolean -local MemoryListEntry={} - ----@type table -local memory_list = {} - -local POSTFIX = { - SAVE = "_memory_object", - ZONE = "_memory_zone", - SHUFFLE = "_memory_shuffle" -} - ----@type table -local BUTTON = { - POSITION = Vector(0, 0.3, -2), - ROTATION = Vector(0, 180, 0), - HEIGHT = 350, - WIDTH = 800, - FONT_SIZE = 250, - COLOR = Color.Black, - FONT_COLOR = Color.White -} - -local ipairs = ipairs -local pairs = pairs - ----@return string -local function get_prefix() - return self:getDescription() -end - -local function updateSave() - local data_to_save = {["ml"]=memory_list} - local saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - ----@param label string ----@param action string -local function createButton(label, action) - self:clearButtons() - - ---@type CreateClassicUIButton - local parameters = { - label = label, - click_function = action, - function_owner = self - } - - for key, value in pairs(BUTTON) do - parameters[key:lower()] = value - end - - self:createButton(parameters) -end - -local function create_place_button() createButton("Place", "place_objects") end -local function create_recall_button() createButton("Recall", "recall_objects") end - ----@param tag string ----@param lock boolean ----@return fun(object:TTSObject) -local function create_object_callback(tag, lock) - ---@param object TTSObject - return function (object) - object:setLock(lock) - if object:hasTag(tag) then object:shuffle() end - end -end - ----@param object TTSObject -local function record_objects(object) - memory_list[object:getGUID()] = { - position = object:getPosition(), - rotation = object:getRotation(), - lock = object:getLock() - } - self:putObject(object) -end - ----@param objects TTSObject[] -local function update_objects(objects) - for _, object in ipairs(objects) do - record_objects(object) - end -end - ---Sends objects from bag/table to their saved position/rotation -function place_objects() - local prefix = get_prefix() - local shuffle_tag = prefix .. POSTFIX.SHUFFLE - local content = self.getObjects() - - for _, item in ipairs(content) do - local entry = memory_list[item.guid] - if entry then - self.takeObject { - guid=item.guid, - position=entry.position, - rotation=entry.rotation, - callback_function = create_object_callback(shuffle_tag, entry.lock) - } - end - end - - broadcastToAll("Objects Placed", {1,1,1}) - create_recall_button() -end - ---Recalls objects to bag from table -function recall_objects() - memory_list = {} - local prefix = get_prefix() - - if prefix=="" then - broadcastToAll("Error in Memory Bag: Tag prefix not set.") - return - end - - local save_tag = prefix .. POSTFIX.SAVE - local zone_tag = prefix .. POSTFIX.ZONE - - local zones = getObjectsWithTag(zone_tag) - if #zones>0 then - for _, zone in ipairs(zones) do - update_objects(zone:getObjects()) - end - else - update_objects(getObjectsWithTag(save_tag)) - end - updateSave() - broadcastToAll("Objects Recalled", {1,1,1}) - create_place_button() -end - -function onload(saved_data) - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - --Set up information off of loaded_data - memory_list = loaded_data.ml - else - --Set up information for if there is no saved saved data - memory_list = {} - end - - if self:getQuantity()==0 then - create_recall_button() - else - create_place_button() - end -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b.yaml deleted file mode 100644 index cc2bc85c7..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b.yaml +++ /dev/null @@ -1,67 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 1.0 - g: 0.0 - r: 0.702961445 -ContainedObjects: -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1B 69f081.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1A d15fee.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2A 7cc49f.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2B ba2453.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 3A 89227a.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 3B 30d019.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 4 3948b5.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1C 044e36.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2C ad3576.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2D e2f73e.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 1 c36a9f.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2C 3ac9be.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2B 5b18f5.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2A 513b6f.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2E 90a381.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 3A 271e9a.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 3B f97453.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4A 3549ff.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4B b2b345.yaml' -- !include 'Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4C 256a94.yaml' -Description: tdemat -DragSelectable: true -GMNotes: '' -GUID: 992a0b -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Bag The Dream-Eaters 992a0b.ttslua' -LuaScriptState: '{"ml":{"044e36":{"lock":false,"position":{"x":32.9846038818359,"y":1.38932967185974,"z":-47.4094314575195},"rotation":{"x":1.59471690654755,"y":269.985992431641,"z":0.0168394166976213}},"256a94":{"lock":false,"position":{"x":32.9853172302246,"y":1.326700091362,"z":-84.2082977294922},"rotation":{"x":0.020869268104434,"y":269.985046386719,"z":0.0166497677564621}},"271e9a":{"lock":false,"position":{"x":40.2898750305176,"y":1.38220512866974,"z":-79.6198883056641},"rotation":{"x":358.457550048828,"y":269.982177734375,"z":0.0167788900434971}},"30d019":{"lock":false,"position":{"x":36.6243209838867,"y":1.33610236644745,"z":-56.6083869934082},"rotation":{"x":0.0208411328494549,"y":270.00732421875,"z":0.0167256332933903}},"3549ff":{"lock":false,"position":{"x":40.2870330810547,"y":1.32934617996216,"z":-84.2198257446289},"rotation":{"x":0.0208312459290028,"y":269.974700927734,"z":0.0165553595870733}},"3948b5":{"lock":false,"position":{"x":40.2900695800781,"y":1.33608496189117,"z":-61.2199897766113},"rotation":{"x":0.0208136904984713,"y":269.9833984375,"z":0.0167649537324905}},"3ac9be":{"lock":false,"position":{"x":32.9867706298828,"y":1.32939422130585,"z":-75.0083312988281},"rotation":{"x":0.0208565834909678,"y":269.989349365234,"z":0.0166643485426903}},"513b6f":{"lock":false,"position":{"x":40.28759765625,"y":1.33203971385956,"z":-75.0200424194336},"rotation":{"x":0.0208294373005629,"y":269.982086181641,"z":0.0165824517607689}},"5b18f5":{"lock":false,"position":{"x":36.6241035461426,"y":1.43067157268524,"z":-75.0083999633789},"rotation":{"x":0.0210113320499659,"y":269.989685058594,"z":0.0163585692644119}},"69f081":{"lock":false,"position":{"x":36.6245422363281,"y":1.33879220485687,"z":-47.408332824707},"rotation":{"x":0.0208539385348558,"y":269.957397460938,"z":0.0165824443101883}},"7cc49f":{"lock":false,"position":{"x":40.2891006469727,"y":1.39029014110565,"z":-52.0199813842773},"rotation":{"x":358.457275390625,"y":270.006744384766,"z":0.0167833250015974}},"89227a":{"lock":false,"position":{"x":40.2900390625,"y":1.38893449306488,"z":-56.6200294494629},"rotation":{"x":358.45751953125,"y":270.002593994141,"z":0.0167992264032364}},"90a381":{"lock":false,"position":{"x":25.4876403808594,"y":1.33340740203857,"z":-52.0017509460449},"rotation":{"x":0.0208137053996325,"y":269.9833984375,"z":0.0167648587375879}},"ad3576":{"lock":false,"position":{"x":32.985294342041,"y":1.43609476089478,"z":-52.0096244812012},"rotation":{"x":0.0210697632282972,"y":269.979797363281,"z":0.0167141612619162}},"b2b345":{"lock":false,"position":{"x":36.6205215454102,"y":1.427973985672,"z":-84.2085266113281},"rotation":{"x":0.0210325140506029,"y":269.981384277344,"z":0.0166059881448746}},"ba2453":{"lock":false,"position":{"x":36.6246452331543,"y":1.3374434709549,"z":-52.0082092285156},"rotation":{"x":0.0208558533340693,"y":270.002410888672,"z":0.0165013372898102}},"c36a9f":{"lock":false,"position":{"x":40.2900695800781,"y":1.33339202404022,"z":-70.4198455810547},"rotation":{"x":0.0208149589598179,"y":269.978942871094,"z":0.0167633779346943}},"d15fee":{"lock":false,"position":{"x":40.2887001037598,"y":1.39166271686554,"z":-47.4199638366699},"rotation":{"x":358.456451416016,"y":269.961853027344,"z":0.0167476702481508}},"e2f73e":{"lock":false,"position":{"x":29.3377857208252,"y":1.33480083942413,"z":-52.0099182128906},"rotation":{"x":0.0208508707582951,"y":269.982696533203,"z":0.0166664440184832}},"f97453":{"lock":false,"position":{"x":36.6243553161621,"y":1.32936978340149,"z":-79.6082763671875},"rotation":{"x":0.0207974631339312,"y":269.984252929688,"z":0.0167127083986998}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: The Dream-Eaters -Snap: true -Sticky: true -Tags: -- playmat_memory_object -Tooltip: true -Transform: - posX: 45.64 - posY: 1.1 - posZ: -70.41 - rotX: 359.98 - rotY: 89.99 - rotZ: 359.98 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1A d15fee.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1A d15fee.ttslua deleted file mode 100644 index 3ee1eebd9..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1A d15fee.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/S6sCy7G/Dream-Eaters-1-A-Beyond-the-Gates-of-Sleep-Phoebe-Herring.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1A d15fee.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1A d15fee.yaml deleted file mode 100644 index 9a91c74d0..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1A d15fee.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/S6sCy7G/Dream-Eaters-1-A-Beyond-the-Gates-of-Sleep-Phoebe-Herring.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: d15fee -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Dreaming - 1A d15fee.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Dreaming - 1A -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.39 - posZ: -47.42 - rotX: 358.46 - rotY: 269.96 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1B 69f081.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1B 69f081.ttslua deleted file mode 100644 index 5d0c30e9c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1B 69f081.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/kBfW9SC/Dream-Eaters-1-A-Beyond-the-Gates-of-Sleep-Regina-Kurnya.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1B 69f081.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1B 69f081.yaml deleted file mode 100644 index 07ca7d7cb..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1B 69f081.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/kBfW9SC/Dream-Eaters-1-A-Beyond-the-Gates-of-Sleep-Regina-Kurnya.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 69f081 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Dreaming - 1B 69f081.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Dreaming - 1B -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.34 - posZ: -47.41 - rotX: 0.02 - rotY: 269.96 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1C 044e36.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1C 044e36.ttslua deleted file mode 100644 index db2c0fed8..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1C 044e36.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/HGvnxdX/Dream-Eaters-1-A-Beyond-the-Gates-of-Sleep-Jason-Scheier.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1C 044e36.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1C 044e36.yaml deleted file mode 100644 index f884d13ca..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 1C 044e36.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/HGvnxdX/Dream-Eaters-1-A-Beyond-the-Gates-of-Sleep-Jason-Scheier.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 044e36 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Dreaming - 1C 044e36.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Dreaming - 1C -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 32.98 - posY: 1.39 - posZ: -47.41 - rotX: 1.59 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2A 7cc49f.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2A 7cc49f.ttslua deleted file mode 100644 index 616e9ac85..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2A 7cc49f.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/MZ7Qtcc/Dream-Eaters-2-A-Search-for-Kadath-Nele-Diel.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2A 7cc49f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2A 7cc49f.yaml deleted file mode 100644 index 27d45b09a..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2A 7cc49f.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/MZ7Qtcc/Dream-Eaters-2-A-Search-for-Kadath-Nele-Diel.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 7cc49f -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Dreaming - 2A 7cc49f.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Dreaming - 2A -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.39 - posZ: -52.02 - rotX: 358.46 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2B ba2453.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2B ba2453.ttslua deleted file mode 100644 index 87511d03e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2B ba2453.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/jwsn0jf/Dream-Eaters-2-A-Search-for-Kadath-Diana-Tsareva.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2B ba2453.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2B ba2453.yaml deleted file mode 100644 index aaf7827b2..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2B ba2453.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/jwsn0jf/Dream-Eaters-2-A-Search-for-Kadath-Diana-Tsareva.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: ba2453 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Dreaming - 2B ba2453.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Dreaming - 2B -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.34 - posZ: -52.01 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2C ad3576.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2C ad3576.ttslua deleted file mode 100644 index a611cf433..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2C ad3576.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/4SwzCD8/Dream-Eaters-2-A-Search-for-Kadath-Andrei-Khrutskii.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2C ad3576.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2C ad3576.yaml deleted file mode 100644 index 3756cb8dc..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2C ad3576.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/4SwzCD8/Dream-Eaters-2-A-Search-for-Kadath-Andrei-Khrutskii.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: ad3576 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Dreaming - 2C ad3576.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Dreaming - 2C -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.44 - posZ: -52.01 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2D e2f73e.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2D e2f73e.ttslua deleted file mode 100644 index 19dcb5572..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2D e2f73e.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/pd9vxmL/Dream-Eaters-2-A-Search-for-Kadath-Helen-Ilnytska.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2D e2f73e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2D e2f73e.yaml deleted file mode 100644 index 9d59d029c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2D e2f73e.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/pd9vxmL/Dream-Eaters-2-A-Search-for-Kadath-Helen-Ilnytska.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: e2f73e -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Dreaming - 2D e2f73e.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Dreaming - 2D -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 29.34 - posY: 1.33 - posZ: -52.01 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2E 90a381.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2E 90a381.ttslua deleted file mode 100644 index a8f896e67..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2E 90a381.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/WpZ4fMc/Dream-Eaters-2-A-Search-for-Kadath-Dan-Iorgulescu.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2E 90a381.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2E 90a381.yaml deleted file mode 100644 index d38b2c1e7..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 2E 90a381.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/WpZ4fMc/Dream-Eaters-2-A-Search-for-Kadath-Dan-Iorgulescu.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 90a381 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Dreaming - 2E 90a381.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Dreaming - 2E -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 25.49 - posY: 1.33 - posZ: -52.0 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 3A 89227a.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 3A 89227a.ttslua deleted file mode 100644 index 7ce6c9c29..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 3A 89227a.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/B2DfXLZ/Dream-Eaters-3-A-Dark-Side-of-the-Moon-Dabanli.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 3A 89227a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 3A 89227a.yaml deleted file mode 100644 index 240d2cea1..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 3A 89227a.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/B2DfXLZ/Dream-Eaters-3-A-Dark-Side-of-the-Moon-Dabanli.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 89227a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Dreaming - 3A 89227a.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Dreaming - 3A -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.39 - posZ: -56.62 - rotX: 358.46 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 3B 30d019.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 3B 30d019.ttslua deleted file mode 100644 index 92efb732b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 3B 30d019.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/c27JRvv/Dream-Eaters-3-A-Dark-Side-of-the-Moon-Frej-Agelii.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 3B 30d019.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 3B 30d019.yaml deleted file mode 100644 index 90a4cc2ed..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 3B 30d019.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/c27JRvv/Dream-Eaters-3-A-Dark-Side-of-the-Moon-Frej-Agelii.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 30d019 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Dreaming - 3B 30d019.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Dreaming - 3B -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.34 - posZ: -56.61 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 4 3948b5.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 4 3948b5.ttslua deleted file mode 100644 index be87d4156..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 4 3948b5.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/v4nqw6G/Dream-Eaters-4-A-Where-the-Gods-Dwell-Samantha-Franco.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 4 3948b5.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 4 3948b5.yaml deleted file mode 100644 index 16e35c8de..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Dreaming - 4 3948b5.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/v4nqw6G/Dream-Eaters-4-A-Where-the-Gods-Dwell-Samantha-Franco.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 3948b5 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Dreaming - 4 3948b5.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Dreaming - 4 -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -61.22 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 1 c36a9f.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 1 c36a9f.ttslua deleted file mode 100644 index 2b52ac7e8..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 1 c36a9f.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/sWsZCv8/Dream-Eaters-1-B-Waking-Nightmare-Josh-Gould-jpg.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 1 c36a9f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 1 c36a9f.yaml deleted file mode 100644 index 07b768801..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 1 c36a9f.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/sWsZCv8/Dream-Eaters-1-B-Waking-Nightmare-Josh-Gould-jpg.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: c36a9f -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Waking - 1 c36a9f.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Waking - 1 -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -70.42 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2A 513b6f.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2A 513b6f.ttslua deleted file mode 100644 index 20b8499e9..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2A 513b6f.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/9s7M0PP/Dream-Eaters-2-B-Thousand-Shapes-of-Horror-Nele-Diel-2.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2A 513b6f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2A 513b6f.yaml deleted file mode 100644 index f036d87ed..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2A 513b6f.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/9s7M0PP/Dream-Eaters-2-B-Thousand-Shapes-of-Horror-Nele-Diel-2.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 513b6f -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Waking - 2A 513b6f.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Waking - 2A -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -75.02 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2B 5b18f5.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2B 5b18f5.ttslua deleted file mode 100644 index 8b1ca6e4c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2B 5b18f5.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/T4Pqx0H/Dream-Eaters-2-B-Thousand-Shapes-of-Horror-Nele-Diel.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2B 5b18f5.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2B 5b18f5.yaml deleted file mode 100644 index 2c089da35..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2B 5b18f5.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/T4Pqx0H/Dream-Eaters-2-B-Thousand-Shapes-of-Horror-Nele-Diel.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 5b18f5 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Waking - 2B 5b18f5.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Waking - 2B -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.43 - posZ: -75.01 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2C 3ac9be.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2C 3ac9be.ttslua deleted file mode 100644 index 5b319ddfa..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2C 3ac9be.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/VJFQVYd/Dream-Eaters-2-B-Thousand-Shapes-of-Horror-Greg-Bobrowski.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2C 3ac9be.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2C 3ac9be.yaml deleted file mode 100644 index c0787c4c4..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 2C 3ac9be.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/VJFQVYd/Dream-Eaters-2-B-Thousand-Shapes-of-Horror-Greg-Bobrowski.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 3ac9be -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Waking - 2C 3ac9be.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Waking - 2C -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.33 - posZ: -75.01 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 3A 271e9a.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 3A 271e9a.ttslua deleted file mode 100644 index 25fea7ef6..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 3A 271e9a.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/dMGNB9Y/Dream-Eaters-3-B-Point-of-No-Return-Daria-Khlebnikova.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 3A 271e9a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 3A 271e9a.yaml deleted file mode 100644 index 5020f3017..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 3A 271e9a.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/dMGNB9Y/Dream-Eaters-3-B-Point-of-No-Return-Daria-Khlebnikova.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 271e9a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Waking - 3A 271e9a.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Waking - 3A -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.38 - posZ: -79.62 - rotX: 358.46 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 3B f97453.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 3B f97453.ttslua deleted file mode 100644 index e35c3ac3c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 3B f97453.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/dpXxPmz/Dream-Eaters-3-B-Point-of-No-Return-Karine-Villette.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 3B f97453.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 3B f97453.yaml deleted file mode 100644 index 07622b123..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 3B f97453.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/dpXxPmz/Dream-Eaters-3-B-Point-of-No-Return-Karine-Villette.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: f97453 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Waking - 3B f97453.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Waking - 3B -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.33 - posZ: -79.61 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4A 3549ff.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4A 3549ff.ttslua deleted file mode 100644 index 917aab008..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4A 3549ff.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/7btNBS1/Dream-Eaters-4-B-Weaver-of-the-Cosmos-Diana-Franco.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4A 3549ff.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4A 3549ff.yaml deleted file mode 100644 index e57fb8fb2..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4A 3549ff.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/7btNBS1/Dream-Eaters-4-B-Weaver-of-the-Cosmos-Diana-Franco.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 3549ff -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Waking - 4A 3549ff.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Waking - 4A -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -84.22 - rotX: 0.02 - rotY: 269.97 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4B b2b345.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4B b2b345.ttslua deleted file mode 100644 index d6211b2f8..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4B b2b345.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/f8LBbFW/Dream-Eaters-4-B-Weaver-of-the-Cosmos-Nele-Diel.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4B b2b345.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4B b2b345.yaml deleted file mode 100644 index c68f4323b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4B b2b345.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/f8LBbFW/Dream-Eaters-4-B-Weaver-of-the-Cosmos-Nele-Diel.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: b2b345 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Waking - 4B b2b345.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Waking - 4B -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.43 - posZ: -84.21 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4C 256a94.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4C 256a94.ttslua deleted file mode 100644 index 9aa8cc5c7..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4C 256a94.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/RY7y22b/Dream-Eaters-4-B-Weaver-of-the-Cosmos-Leanna-Crossan.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4C 256a94.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4C 256a94.yaml deleted file mode 100644 index ba8fe2a9b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dream-Eaters 992a0b/Custom_Token TDE Waking - 4C 256a94.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/RY7y22b/Dream-Eaters-4-B-Weaver-of-the-Cosmos-Leanna-Crossan.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 256a94 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDE Waking - 4C 256a94.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDE Waking - 4C -Snap: true -Sticky: true -Tags: -- tdemat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.33 - posZ: -84.21 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06.ttslua deleted file mode 100644 index 8d7b4dd5e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06.ttslua +++ /dev/null @@ -1,163 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-03-16 3:26 p.m. ---- - ---- Original Memory Bag by MrStump ---- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080 - ----@class MemoryListEntry ----@field public position Vector ----@field public rotation Vector ----@field public lock boolean -local MemoryListEntry={} - ----@type table -local memory_list = {} - -local POSTFIX = { - SAVE = "_memory_object", - ZONE = "_memory_zone", - SHUFFLE = "_memory_shuffle" -} - ----@type table -local BUTTON = { - POSITION = Vector(0, 0.3, -2), - ROTATION = Vector(0, 180, 0), - HEIGHT = 350, - WIDTH = 800, - FONT_SIZE = 250, - COLOR = Color.Black, - FONT_COLOR = Color.White -} - -local ipairs = ipairs -local pairs = pairs - ----@return string -local function get_prefix() - return self:getDescription() -end - -local function updateSave() - local data_to_save = {["ml"]=memory_list} - local saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - ----@param label string ----@param action string -local function createButton(label, action) - self:clearButtons() - - ---@type CreateClassicUIButton - local parameters = { - label = label, - click_function = action, - function_owner = self - } - - for key, value in pairs(BUTTON) do - parameters[key:lower()] = value - end - - self:createButton(parameters) -end - -local function create_place_button() createButton("Place", "place_objects") end -local function create_recall_button() createButton("Recall", "recall_objects") end - ----@param tag string ----@param lock boolean ----@return fun(object:TTSObject) -local function create_object_callback(tag, lock) - ---@param object TTSObject - return function (object) - object:setLock(lock) - if object:hasTag(tag) then object:shuffle() end - end -end - ----@param object TTSObject -local function record_objects(object) - memory_list[object:getGUID()] = { - position = object:getPosition(), - rotation = object:getRotation(), - lock = object:getLock() - } - self:putObject(object) -end - ----@param objects TTSObject[] -local function update_objects(objects) - for _, object in ipairs(objects) do - record_objects(object) - end -end - ---Sends objects from bag/table to their saved position/rotation -function place_objects() - local prefix = get_prefix() - local shuffle_tag = prefix .. POSTFIX.SHUFFLE - local content = self.getObjects() - - for _, item in ipairs(content) do - local entry = memory_list[item.guid] - if entry then - self.takeObject { - guid=item.guid, - position=entry.position, - rotation=entry.rotation, - callback_function = create_object_callback(shuffle_tag, entry.lock) - } - end - end - - broadcastToAll("Objects Placed", {1,1,1}) - create_recall_button() -end - ---Recalls objects to bag from table -function recall_objects() - memory_list = {} - local prefix = get_prefix() - - if prefix=="" then - broadcastToAll("Error in Memory Bag: Tag prefix not set.") - return - end - - local save_tag = prefix .. POSTFIX.SAVE - local zone_tag = prefix .. POSTFIX.ZONE - - local zones = getObjectsWithTag(zone_tag) - if #zones>0 then - for _, zone in ipairs(zones) do - update_objects(zone:getObjects()) - end - else - update_objects(getObjectsWithTag(save_tag)) - end - updateSave() - broadcastToAll("Objects Recalled", {1,1,1}) - create_place_button() -end - -function onload(saved_data) - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - --Set up information off of loaded_data - memory_list = loaded_data.ml - else - --Set up information for if there is no saved saved data - memory_list = {} - end - - if self:getQuantity()==0 then - create_recall_button() - else - create_place_button() - end -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06.yaml deleted file mode 100644 index 0ec62b081..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06.yaml +++ /dev/null @@ -1,73 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 0.6623666 - g: 1.0 - r: 0.0 -ContainedObjects: -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1A 7fc275.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2A 75474e.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 3A 2d3119.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 4 87c00f.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1B 330f36.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1C 2cce8e.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2B dae6ff.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2C 491ba2.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 3B ad222a.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5A 490ee5.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5B ec83a8.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5C 53627d.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6A 21d971.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6B 6f347f.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6C cbbd36.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7A 0d397a.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7B b70302.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7C 7ec346.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2D 0964f0.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5D 5fa489.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6D b32939.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7D 784bfe.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8A 995d75.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8B 4bfe23.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8C b1efff.yaml' -- !include 'Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7E bebff6.yaml' -Description: tdlmat -DragSelectable: true -GMNotes: '' -GUID: c13c06 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Bag The Dunwich Legacy c13c06.ttslua' -LuaScriptState: '{"ml":{"0964f0":{"lock":false,"position":{"x":29.3400859832764,"y":1.33480167388916,"z":-52.009635925293},"rotation":{"x":0.0208267811685801,"y":270.028442382813,"z":0.0166774820536375}},"0d397a":{"lock":false,"position":{"x":40.2900810241699,"y":1.38355588912964,"z":-75.0199813842773},"rotation":{"x":358.457366943359,"y":269.985076904297,"z":0.0167983770370483}},"21d971":{"lock":false,"position":{"x":40.2900657653809,"y":1.38485586643219,"z":-70.4198455810547},"rotation":{"x":358.458770751953,"y":269.987030029297,"z":0.0167951062321663}},"2cce8e":{"lock":false,"position":{"x":32.9853019714355,"y":1.33747291564941,"z":-47.409538269043},"rotation":{"x":0.0208195019513369,"y":270.025177001953,"z":0.0167117398232222}},"2d3119":{"lock":false,"position":{"x":40.2900581359863,"y":1.38893461227417,"z":-56.6199798583984},"rotation":{"x":358.457550048828,"y":269.983795166016,"z":0.0167835336178541}},"330f36":{"lock":false,"position":{"x":36.6243362426758,"y":1.39067852497101,"z":-47.4083976745605},"rotation":{"x":358.446075439453,"y":270.029449462891,"z":0.0168121848255396}},"490ee5":{"lock":false,"position":{"x":40.2910575866699,"y":1.38625061511993,"z":-65.8197937011719},"rotation":{"x":358.457305908203,"y":269.983306884766,"z":0.0167823601514101}},"491ba2":{"lock":false,"position":{"x":32.9844627380371,"y":1.38793182373047,"z":-52.0096168518066},"rotation":{"x":358.448455810547,"y":270.039215087891,"z":0.0168358646333218}},"4bfe23":{"lock":false,"position":{"x":36.6243591308594,"y":1.32936596870422,"z":-79.608268737793},"rotation":{"x":0.0208485554903746,"y":269.983917236328,"z":0.0165696386247873}},"53627d":{"lock":false,"position":{"x":32.9853057861328,"y":1.33208239078522,"z":-65.8082427978516},"rotation":{"x":0.0208651907742023,"y":269.98486328125,"z":0.0165079906582832}},"5fa489":{"lock":false,"position":{"x":29.3400783538818,"y":1.3825421333313,"z":-65.8084564208984},"rotation":{"x":1.59238505363464,"y":269.986999511719,"z":0.016799682751298}},"6f347f":{"lock":false,"position":{"x":36.6221656799316,"y":1.33205735683441,"z":-70.4083862304688},"rotation":{"x":0.020858833566308,"y":269.994812011719,"z":0.0165370889008045}},"75474e":{"lock":false,"position":{"x":40.2878494262695,"y":1.33876860141754,"z":-52.0200080871582},"rotation":{"x":0.0208697244524956,"y":269.990295410156,"z":0.0164402443915606}},"784bfe":{"lock":false,"position":{"x":29.3400745391846,"y":1.32807147502899,"z":-75.0085678100586},"rotation":{"x":0.0208148900419474,"y":270.017791748047,"z":0.0167522989213467}},"7ec346":{"lock":false,"position":{"x":32.9853172302246,"y":1.38119006156921,"z":-75.0083618164063},"rotation":{"x":358.448760986328,"y":270.005767822266,"z":0.0168228913098574}},"7fc275":{"lock":false,"position":{"x":40.2900695800781,"y":1.39162695407867,"z":-47.4199905395508},"rotation":{"x":358.457580566406,"y":270.023223876953,"z":0.016811341047287}},"87c00f":{"lock":false,"position":{"x":40.2900733947754,"y":1.33608496189117,"z":-61.2199859619141},"rotation":{"x":0.0208142343908548,"y":269.981628417969,"z":0.016764285042882}},"995d75":{"lock":false,"position":{"x":40.2900466918945,"y":1.38221669197083,"z":-79.6198806762695},"rotation":{"x":358.457122802734,"y":269.980773925781,"z":0.0167763847857714}},"ad222a":{"lock":false,"position":{"x":36.6243553161621,"y":1.33610224723816,"z":-56.6084136962891},"rotation":{"x":0.0208268202841282,"y":269.986450195313,"z":0.016710827127099}},"b1efff":{"lock":false,"position":{"x":32.9847984313965,"y":1.37990999221802,"z":-79.6079940795898},"rotation":{"x":1.59491741657257,"y":269.980163574219,"z":0.0167928170412779}},"b32939":{"lock":false,"position":{"x":29.3388404846191,"y":1.38123536109924,"z":-70.4083404541016},"rotation":{"x":1.59352207183838,"y":270.034545898438,"z":0.0168794970959425}},"b70302":{"lock":false,"position":{"x":36.6243209838867,"y":1.38257992267609,"z":-75.0083770751953},"rotation":{"x":358.446685791016,"y":269.996704101563,"z":0.0168163944035769}},"bebff6":{"lock":false,"position":{"x":25.4906044006348,"y":1.32666826248169,"z":-75.0282440185547},"rotation":{"x":0.0208054818212986,"y":270.011474609375,"z":0.0167752020061016}},"cbbd36":{"lock":false,"position":{"x":32.982177734375,"y":1.38260364532471,"z":-70.4079666137695},"rotation":{"x":1.59503698348999,"y":269.964080810547,"z":0.016715144738555}},"dae6ff":{"lock":false,"position":{"x":36.6217803955078,"y":1.43930053710938,"z":-52.0080757141113},"rotation":{"x":359.962188720703,"y":270.015869140625,"z":0.0167557653039694}},"ec83a8":{"lock":false,"position":{"x":36.625431060791,"y":1.38528168201447,"z":-65.8083038330078},"rotation":{"x":358.446411132813,"y":269.979736328125,"z":0.0167838335037231}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: The Dunwich Legacy -Snap: true -Sticky: true -Tags: -- playmat_memory_object -Tooltip: true -Transform: - posX: 45.64 - posY: 1.11 - posZ: -52.01 - rotX: 359.98 - rotY: 89.99 - rotZ: 359.98 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1A 7fc275.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1A 7fc275.ttslua deleted file mode 100644 index 3d1d6082d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1A 7fc275.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/RQ6z0pj/Dunwich-1-Extracurricular-Activity-Joseph-Diaz.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1A 7fc275.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1A 7fc275.yaml deleted file mode 100644 index aacb6c44b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1A 7fc275.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/RQ6z0pj/Dunwich-1-Extracurricular-Activity-Joseph-Diaz.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 7fc275 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 1A 7fc275.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 1A -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.39 - posZ: -47.42 - rotX: 358.46 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1B 330f36.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1B 330f36.ttslua deleted file mode 100644 index 08ed01cb9..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1B 330f36.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/nnJdwL2/Dunwich-1-Extracurricular-Activity-Tomasz-Jedruszek.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1B 330f36.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1B 330f36.yaml deleted file mode 100644 index b693da767..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1B 330f36.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/nnJdwL2/Dunwich-1-Extracurricular-Activity-Tomasz-Jedruszek.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 330f36 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 1B 330f36.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 1B -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -47.41 - rotX: 358.45 - rotY: 270.03 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1C 2cce8e.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1C 2cce8e.ttslua deleted file mode 100644 index 886593142..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1C 2cce8e.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/tDxX8KS/Dunwich-1-Extracurricular-Activity-Igor-Kirdeika.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1C 2cce8e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1C 2cce8e.yaml deleted file mode 100644 index a3f98bc70..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 1C 2cce8e.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/tDxX8KS/Dunwich-1-Extracurricular-Activity-Igor-Kirdeika.https://i.ibb.co/tDxX8KS/Dunwich-1-Extracurricular-Activity-Igor-Kirdeika.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 2cce8e -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 1C 2cce8e.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 1C -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.34 - posZ: -47.41 - rotX: 0.02 - rotY: 270.03 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2A 75474e.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2A 75474e.ttslua deleted file mode 100644 index d91e7e141..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2A 75474e.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/MCLP3Sz/Dunwich-2-House-Always-Wins-XX-l.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2A 75474e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2A 75474e.yaml deleted file mode 100644 index e853b5c46..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2A 75474e.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/MCLP3Sz/Dunwich-2-House-Always-Wins-XX-l.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 75474e -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 2A 75474e.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 2A -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -52.02 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2B dae6ff.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2B dae6ff.ttslua deleted file mode 100644 index cf9ba2027..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2B dae6ff.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/w7Pf5sd/Dunwich-2-House-Always-Wins-XX-l-2.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2B dae6ff.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2B dae6ff.yaml deleted file mode 100644 index 0a7aaddff..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2B dae6ff.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/w7Pf5sd/Dunwich-2-House-Always-Wins-XX-l-2.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: dae6ff -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 2B dae6ff.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 2B -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.44 - posZ: -52.01 - rotX: 359.96 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2C 491ba2.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2C 491ba2.ttslua deleted file mode 100644 index 5c02c3e51..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2C 491ba2.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/8XPLdr9/Dunwich-2-House-Always-Wins-Jonny-Klein.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2C 491ba2.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2C 491ba2.yaml deleted file mode 100644 index f9b741cc7..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2C 491ba2.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/8XPLdr9/Dunwich-2-House-Always-Wins-Jonny-Klein.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 491ba2 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 2C 491ba2.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 2C -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 32.98 - posY: 1.39 - posZ: -52.01 - rotX: 358.45 - rotY: 270.04 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2D 0964f0.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2D 0964f0.ttslua deleted file mode 100644 index 9014f4450..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2D 0964f0.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/HtX95GK/Dunwich-2-House-Always-Wins-Robert-Laskey.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2D 0964f0.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2D 0964f0.yaml deleted file mode 100644 index 3274ddba6..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 2D 0964f0.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/HtX95GK/Dunwich-2-House-Always-Wins-Robert-Laskey.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 0964f0 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 2D 0964f0.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 2D -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 29.34 - posY: 1.33 - posZ: -52.01 - rotX: 0.02 - rotY: 270.03 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 3A 2d3119.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 3A 2d3119.ttslua deleted file mode 100644 index 8b39d66ad..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 3A 2d3119.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/x1Kf7qG/Dunwich-3-Miskatonic-Museum-Emre-Aktuna.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 3A 2d3119.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 3A 2d3119.yaml deleted file mode 100644 index c335d6e8a..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 3A 2d3119.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/x1Kf7qG/Dunwich-3-Miskatonic-Museum-Emre-Aktuna.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 2d3119 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 3A 2d3119.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 3A -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.39 - posZ: -56.62 - rotX: 358.46 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 3B ad222a.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 3B ad222a.ttslua deleted file mode 100644 index e83a9dc5c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 3B ad222a.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/yWXVPcN/Dunwich-3-Miskatonic-Museum-Richard-Wright.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 3B ad222a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 3B ad222a.yaml deleted file mode 100644 index 0580773fe..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 3B ad222a.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/yWXVPcN/Dunwich-3-Miskatonic-Museum-Richard-Wright.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: ad222a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 3B ad222a.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 3B -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.34 - posZ: -56.61 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 4 87c00f.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 4 87c00f.ttslua deleted file mode 100644 index d8ad95657..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 4 87c00f.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/602CMZb/Dunwich-4-Essex-County-Express-David-Alvarez.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 4 87c00f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 4 87c00f.yaml deleted file mode 100644 index a9616cab4..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 4 87c00f.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/602CMZb/Dunwich-4-Essex-County-Express-David-Alvarez.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 87c00f -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 4 87c00f.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 4 -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -61.22 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5A 490ee5.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5A 490ee5.ttslua deleted file mode 100644 index 2ed94f8d9..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5A 490ee5.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/3CYHDhf/Dunwich-5-Blood-on-the-Altar.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5A 490ee5.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5A 490ee5.yaml deleted file mode 100644 index 9f2da76c1..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5A 490ee5.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/3CYHDhf/Dunwich-5-Blood-on-the-Altar.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 490ee5 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 5A 490ee5.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 5A -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.39 - posZ: -65.82 - rotX: 358.46 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5B ec83a8.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5B ec83a8.ttslua deleted file mode 100644 index dff42c8fe..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5B ec83a8.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/kBPNGBd/Dunwich-5-Blood-on-the-Altar-Mark-Molnar.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5B ec83a8.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5B ec83a8.yaml deleted file mode 100644 index 2b9af6964..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5B ec83a8.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/kBPNGBd/Dunwich-5-Blood-on-the-Altar-Mark-Molnar.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: ec83a8 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 5B ec83a8.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 5B -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 36.63 - posY: 1.39 - posZ: -65.81 - rotX: 358.45 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5C 53627d.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5C 53627d.ttslua deleted file mode 100644 index 0e5cc2f9f..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5C 53627d.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/sJf6YsZ/Dunwich-5-Blood-on-the-Altar-Lucas-Staniec.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5C 53627d.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5C 53627d.yaml deleted file mode 100644 index 4764ed232..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5C 53627d.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/sJf6YsZ/Dunwich-5-Blood-on-the-Altar-Lucas-Staniec.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 53627d -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 5C 53627d.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 5C -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.33 - posZ: -65.81 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5D 5fa489.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5D 5fa489.ttslua deleted file mode 100644 index d2d62d4c7..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5D 5fa489.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/FbxcCY2/Dunwich-5-Blood-on-the-Altar-Chris-Ostrowski.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5D 5fa489.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5D 5fa489.yaml deleted file mode 100644 index 681a54fc0..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 5D 5fa489.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/FbxcCY2/Dunwich-5-Blood-on-the-Altar-Chris-Ostrowski.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 5fa489 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 5D 5fa489.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 5D -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 29.34 - posY: 1.38 - posZ: -65.81 - rotX: 1.59 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6A 21d971.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6A 21d971.ttslua deleted file mode 100644 index 82b46baee..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6A 21d971.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/wwGDcq6/Dunwich-6-Undimensioned-and-Unseen-Tomasz-Jedruszek.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6A 21d971.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6A 21d971.yaml deleted file mode 100644 index c0057935e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6A 21d971.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/wwGDcq6/Dunwich-6-Undimensioned-and-Unseen-Tomasz-Jedruszek.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 21d971 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 6A 21d971.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 6A -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.38 - posZ: -70.42 - rotX: 358.46 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6B 6f347f.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6B 6f347f.ttslua deleted file mode 100644 index feaa16695..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6B 6f347f.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/wBFsS8P/Dunwich-6-Undimensioned-and-Unseen-Michal-Teliga-jpg.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6B 6f347f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6B 6f347f.yaml deleted file mode 100644 index 1070b36d5..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6B 6f347f.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/wBFsS8P/Dunwich-6-Undimensioned-and-Unseen-Michal-Teliga-jpg.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 6f347f -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 6B 6f347f.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 6B -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.33 - posZ: -70.41 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6C cbbd36.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6C cbbd36.ttslua deleted file mode 100644 index 85c356592..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6C cbbd36.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/QvfhjDv/Dunwich-6-Undimensioned-and-Unseen-Frej-Agelii.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6C cbbd36.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6C cbbd36.yaml deleted file mode 100644 index 9545557ad..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6C cbbd36.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/QvfhjDv/Dunwich-6-Undimensioned-and-Unseen-Frej-Agelii.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: cbbd36 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 6C cbbd36.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 6C -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 32.98 - posY: 1.38 - posZ: -70.41 - rotX: 1.6 - rotY: 269.96 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6D b32939.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6D b32939.ttslua deleted file mode 100644 index d293303c4..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6D b32939.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/4VL9gSK/Dunwich-6-Undimensioned-and-Unseen-Lucas-Staniec.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6D b32939.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6D b32939.yaml deleted file mode 100644 index ea0d6c01d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 6D b32939.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/4VL9gSK/Dunwich-6-Undimensioned-and-Unseen-Lucas-Staniec.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: b32939 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 6D b32939.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 6D -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 29.34 - posY: 1.38 - posZ: -70.41 - rotX: 1.59 - rotY: 270.03 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7A 0d397a.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7A 0d397a.ttslua deleted file mode 100644 index 15398dbc5..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7A 0d397a.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/TvMwqj4/Dunwich-7-Where-Doom-Awaits.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7A 0d397a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7A 0d397a.yaml deleted file mode 100644 index 377cfc39b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7A 0d397a.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/TvMwqj4/Dunwich-7-Where-Doom-Awaits.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 0d397a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 7A 0d397a.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 7A -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.38 - posZ: -75.02 - rotX: 358.46 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7B b70302.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7B b70302.ttslua deleted file mode 100644 index 818085d95..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7B b70302.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/S6cSLH9/Dunwich-7-Where-Doom-Awaits-3.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7B b70302.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7B b70302.yaml deleted file mode 100644 index 9e5d5857c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7B b70302.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/S6cSLH9/Dunwich-7-Where-Doom-Awaits-3.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: b70302 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 7B b70302.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 7B -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.38 - posZ: -75.01 - rotX: 358.45 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7C 7ec346.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7C 7ec346.ttslua deleted file mode 100644 index c15cdcfed..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7C 7ec346.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/khBX32g/Dunwich-7-Where-Doom-Awaits-4.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7C 7ec346.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7C 7ec346.yaml deleted file mode 100644 index afdbf15d2..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7C 7ec346.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/khBX32g/Dunwich-7-Where-Doom-Awaits-4.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 7ec346 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 7C 7ec346.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 7C -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.38 - posZ: -75.01 - rotX: 358.45 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7D 784bfe.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7D 784bfe.ttslua deleted file mode 100644 index 114fe1bb5..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7D 784bfe.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/S0hcwN8/Dunwich-7-Where-Doom-Awaits-5.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7D 784bfe.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7D 784bfe.yaml deleted file mode 100644 index 0d5f1be00..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7D 784bfe.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/S0hcwN8/Dunwich-7-Where-Doom-Awaits-5.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 784bfe -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 7D 784bfe.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 7D -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 29.34 - posY: 1.33 - posZ: -75.01 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7E bebff6.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7E bebff6.ttslua deleted file mode 100644 index ab0af750d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7E bebff6.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/Lxv1Bjp/Dunwich-7-Where-Doom-Awaits-Luca-Trentin.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7E bebff6.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7E bebff6.yaml deleted file mode 100644 index daf631a4d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 7E bebff6.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/Lxv1Bjp/Dunwich-7-Where-Doom-Awaits-Luca-Trentin.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: bebff6 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 7E bebff6.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 7E -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 25.49 - posY: 1.33 - posZ: -75.03 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8A 995d75.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8A 995d75.ttslua deleted file mode 100644 index c9643bd50..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8A 995d75.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/0XcnxFD/Dunwich-8-Lost-in-Time-amp-Space-Lino-Drieghe.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8A 995d75.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8A 995d75.yaml deleted file mode 100644 index efa8c76e3..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8A 995d75.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/0XcnxFD/Dunwich-8-Lost-in-Time-amp-Space-Lino-Drieghe.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 995d75 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 8A 995d75.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 8A -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.38 - posZ: -79.62 - rotX: 358.46 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8B 4bfe23.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8B 4bfe23.ttslua deleted file mode 100644 index 0dc5665fe..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8B 4bfe23.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/rtTpbDx/Dunwich-8-Lost-in-Time-amp-Space.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8B 4bfe23.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8B 4bfe23.yaml deleted file mode 100644 index f6dfb8c2f..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8B 4bfe23.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/rtTpbDx/Dunwich-8-Lost-in-Time-amp-Space.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 4bfe23 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 8B 4bfe23.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 8B -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.33 - posZ: -79.61 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8C b1efff.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8C b1efff.ttslua deleted file mode 100644 index 4226805b6..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8C b1efff.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/dBXP0GL/Dunwich-8-Lost-in-Time-amp-Space-Chris-Ostrowski.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8C b1efff.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8C b1efff.yaml deleted file mode 100644 index 03f12545d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Dunwich Legacy c13c06/Custom_Token TDL - 8C b1efff.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/dBXP0GL/Dunwich-8-Lost-in-Time-amp-Space-Chris-Ostrowski.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: b1efff -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TDL - 8C b1efff.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TDL - 8C -Snap: true -Sticky: true -Tags: -- tdlmat_memory_object -Tooltip: true -Transform: - posX: 32.98 - posY: 1.38 - posZ: -79.61 - rotX: 1.59 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0.ttslua deleted file mode 100644 index 8d7b4dd5e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0.ttslua +++ /dev/null @@ -1,163 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-03-16 3:26 p.m. ---- - ---- Original Memory Bag by MrStump ---- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080 - ----@class MemoryListEntry ----@field public position Vector ----@field public rotation Vector ----@field public lock boolean -local MemoryListEntry={} - ----@type table -local memory_list = {} - -local POSTFIX = { - SAVE = "_memory_object", - ZONE = "_memory_zone", - SHUFFLE = "_memory_shuffle" -} - ----@type table -local BUTTON = { - POSITION = Vector(0, 0.3, -2), - ROTATION = Vector(0, 180, 0), - HEIGHT = 350, - WIDTH = 800, - FONT_SIZE = 250, - COLOR = Color.Black, - FONT_COLOR = Color.White -} - -local ipairs = ipairs -local pairs = pairs - ----@return string -local function get_prefix() - return self:getDescription() -end - -local function updateSave() - local data_to_save = {["ml"]=memory_list} - local saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - ----@param label string ----@param action string -local function createButton(label, action) - self:clearButtons() - - ---@type CreateClassicUIButton - local parameters = { - label = label, - click_function = action, - function_owner = self - } - - for key, value in pairs(BUTTON) do - parameters[key:lower()] = value - end - - self:createButton(parameters) -end - -local function create_place_button() createButton("Place", "place_objects") end -local function create_recall_button() createButton("Recall", "recall_objects") end - ----@param tag string ----@param lock boolean ----@return fun(object:TTSObject) -local function create_object_callback(tag, lock) - ---@param object TTSObject - return function (object) - object:setLock(lock) - if object:hasTag(tag) then object:shuffle() end - end -end - ----@param object TTSObject -local function record_objects(object) - memory_list[object:getGUID()] = { - position = object:getPosition(), - rotation = object:getRotation(), - lock = object:getLock() - } - self:putObject(object) -end - ----@param objects TTSObject[] -local function update_objects(objects) - for _, object in ipairs(objects) do - record_objects(object) - end -end - ---Sends objects from bag/table to their saved position/rotation -function place_objects() - local prefix = get_prefix() - local shuffle_tag = prefix .. POSTFIX.SHUFFLE - local content = self.getObjects() - - for _, item in ipairs(content) do - local entry = memory_list[item.guid] - if entry then - self.takeObject { - guid=item.guid, - position=entry.position, - rotation=entry.rotation, - callback_function = create_object_callback(shuffle_tag, entry.lock) - } - end - end - - broadcastToAll("Objects Placed", {1,1,1}) - create_recall_button() -end - ---Recalls objects to bag from table -function recall_objects() - memory_list = {} - local prefix = get_prefix() - - if prefix=="" then - broadcastToAll("Error in Memory Bag: Tag prefix not set.") - return - end - - local save_tag = prefix .. POSTFIX.SAVE - local zone_tag = prefix .. POSTFIX.ZONE - - local zones = getObjectsWithTag(zone_tag) - if #zones>0 then - for _, zone in ipairs(zones) do - update_objects(zone:getObjects()) - end - else - update_objects(getObjectsWithTag(save_tag)) - end - updateSave() - broadcastToAll("Objects Recalled", {1,1,1}) - create_place_button() -end - -function onload(saved_data) - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - --Set up information off of loaded_data - memory_list = loaded_data.ml - else - --Set up information for if there is no saved saved data - memory_list = {} - end - - if self:getQuantity()==0 then - create_recall_button() - else - create_place_button() - end -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0.yaml deleted file mode 100644 index 673791e18..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0.yaml +++ /dev/null @@ -1,70 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 0.0 - g: 1.0 - r: 0.153870881 -ContainedObjects: -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 1A 680ebc.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 2A 282d25.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 2B 2b14a7.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 3 9dcd0b.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 1B d0c65d.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 1C 42c201.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 2C 0c5d69.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 4A ac1189.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 4B 2b16af.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 4C 31a48f.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 5A Part I deb491.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 5B Part I 325a77.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 5 Part II d30cd9.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 6A caf51e.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 6B 50a644.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 1D cfbb3a.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 1E f85e49.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 6C 053d7c.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 7A 92bec7.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 7B 18f3be.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 7C c9e359.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 8A 021c1b.yaml' -- !include 'Bag The Forgotten Age b172b0/Custom_Token TFA - 8B fdc988.yaml' -Description: tfamat -DragSelectable: true -GMNotes: '' -GUID: b172b0 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Bag The Forgotten Age b172b0.ttslua' -LuaScriptState: '{"ml":{"021c1b":{"lock":false,"position":{"x":40.2875709533691,"y":1.3808581829071,"z":-84.2085189819336},"rotation":{"x":358.459014892578,"y":269.972747802734,"z":0.0169319715350866}},"053d7c":{"lock":false,"position":{"x":32.9852981567383,"y":1.32939565181732,"z":-75.0084381103516},"rotation":{"x":0.02073809877038,"y":270.000335693359,"z":0.016705384477973}},"0c5d69":{"lock":false,"position":{"x":32.9852981567383,"y":1.33612680435181,"z":-52.0095405578613},"rotation":{"x":0.0208171270787716,"y":269.98291015625,"z":0.0167093388736248}},"18f3be":{"lock":false,"position":{"x":36.6238288879395,"y":1.3812335729599,"z":-79.6084289550781},"rotation":{"x":358.446472167969,"y":269.9794921875,"z":0.0168852042406797}},"282d25":{"lock":false,"position":{"x":40.2900543212891,"y":1.39028000831604,"z":-52.0199737548828},"rotation":{"x":358.457641601563,"y":269.978851318359,"z":0.0168040823191404}},"2b14a7":{"lock":false,"position":{"x":36.6243591308594,"y":1.38933229446411,"z":-52.0084075927734},"rotation":{"x":358.446075439453,"y":269.982360839844,"z":0.0168056171387434}},"2b16af":{"lock":false,"position":{"x":36.624568939209,"y":1.38662624359131,"z":-61.2083930969238},"rotation":{"x":358.447784423828,"y":269.962463378906,"z":0.0169158354401588}},"31a48f":{"lock":false,"position":{"x":32.984992980957,"y":1.33343350887299,"z":-61.2083930969238},"rotation":{"x":0.0198651291429996,"y":269.979614257813,"z":0.0165644437074661}},"325a77":{"lock":false,"position":{"x":36.6243591308594,"y":1.3334094285965,"z":-65.8082809448242},"rotation":{"x":0.0208267085254192,"y":269.983184814453,"z":0.0167188979685307}},"42c201":{"lock":false,"position":{"x":32.9837493896484,"y":1.43936955928802,"z":-47.4096641540527},"rotation":{"x":0.0768025517463684,"y":269.8291015625,"z":0.0124329905956984}},"50a644":{"lock":false,"position":{"x":36.6242752075195,"y":1.38259315490723,"z":-75.0084838867188},"rotation":{"x":358.446228027344,"y":269.988464355469,"z":0.0168090295046568}},"680ebc":{"lock":false,"position":{"x":40.2900428771973,"y":1.34011721611023,"z":-47.4199676513672},"rotation":{"x":0.0210752561688423,"y":270.015319824219,"z":0.0165243372321129}},"92bec7":{"lock":false,"position":{"x":40.2926330566406,"y":1.38218510150909,"z":-79.6199340820313},"rotation":{"x":358.458770751953,"y":270.000427246094,"z":0.0163544565439224}},"9dcd0b":{"lock":false,"position":{"x":40.2900810241699,"y":1.33743155002594,"z":-56.6199836730957},"rotation":{"x":0.0208146944642067,"y":269.980804443359,"z":0.0167645644396544}},"ac1189":{"lock":false,"position":{"x":40.289924621582,"y":1.38761913776398,"z":-61.2197532653809},"rotation":{"x":358.456939697266,"y":269.994445800781,"z":0.0169746391475201}},"c9e359":{"lock":false,"position":{"x":32.9839820861816,"y":1.3280485868454,"z":-79.6083984375},"rotation":{"x":0.0201026313006878,"y":269.980010986328,"z":0.0167114678770304}},"caf51e":{"lock":false,"position":{"x":40.2897300720215,"y":1.38356018066406,"z":-75.0200500488281},"rotation":{"x":358.457275390625,"y":269.988403320313,"z":0.0168066471815109}},"cfbb3a":{"lock":false,"position":{"x":29.3380336761475,"y":1.33616042137146,"z":-47.4108543395996},"rotation":{"x":0.0186033509671688,"y":269.838012695313,"z":0.0168211944401264}},"d0c65d":{"lock":false,"position":{"x":36.6234588623047,"y":1.39028167724609,"z":-47.4083480834961},"rotation":{"x":1.58323085308075,"y":269.984588623047,"z":0.0166565980762243}},"d30cd9":{"lock":false,"position":{"x":40.2900695800781,"y":1.33339202404022,"z":-70.4198455810547},"rotation":{"x":0.0208108928054571,"y":269.992828369141,"z":0.0167683735489845}},"deb491":{"lock":false,"position":{"x":40.2900581359863,"y":1.38624215126038,"z":-65.8198394775391},"rotation":{"x":358.457550048828,"y":269.977416992188,"z":0.0167841203510761}},"f85e49":{"lock":false,"position":{"x":25.5162200927734,"y":1.33475422859192,"z":-47.4359703063965},"rotation":{"x":0.02083470672369,"y":269.912170410156,"z":0.0167392510920763}},"fdc988":{"lock":false,"position":{"x":36.6213645935059,"y":1.32802617549896,"z":-84.1988296508789},"rotation":{"x":0.0201081596314907,"y":269.929565429688,"z":0.01691191829741}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: The Forgotten Age -Snap: true -Sticky: true -Tags: -- playmat_memory_object -Tooltip: true -Transform: - posX: 45.64 - posY: 1.1 - posZ: -61.21 - rotX: 359.98 - rotY: 89.99 - rotZ: 359.98 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1A 680ebc.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1A 680ebc.ttslua deleted file mode 100644 index 110a0666c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1A 680ebc.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/HPbJwXk/Forgotten-Age-1-Untamed-Wilds-Lucas-Staniec.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1A 680ebc.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1A 680ebc.yaml deleted file mode 100644 index 417c0e9f1..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1A 680ebc.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/HPbJwXk/Forgotten-Age-1-Untamed-Wilds-Lucas-Staniec.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 680ebc -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 1A 680ebc.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 1A -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -47.42 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1B d0c65d.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1B d0c65d.ttslua deleted file mode 100644 index d76972ee8..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1B d0c65d.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/SnJfsNy/Forgotten-Age-1-Untamed-Wilds-David-Frasheski-2.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1B d0c65d.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1B d0c65d.yaml deleted file mode 100644 index ccffb8d32..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1B d0c65d.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/SnJfsNy/Forgotten-Age-1-Untamed-Wilds-David-Frasheski-2.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: d0c65d -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 1B d0c65d.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 1B -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -47.41 - rotX: 1.58 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1C 42c201.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1C 42c201.ttslua deleted file mode 100644 index 6a39853e4..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1C 42c201.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/BLhwCG1/Forgotten-Age-1-Untamed-Wilds-David-Frasheski.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1C 42c201.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1C 42c201.yaml deleted file mode 100644 index 6789dafd7..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1C 42c201.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/BLhwCG1/Forgotten-Age-1-Untamed-Wilds-David-Frasheski.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 42c201 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 1C 42c201.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 1C -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 32.98 - posY: 1.44 - posZ: -47.41 - rotX: 0.08 - rotY: 269.83 - rotZ: 0.01 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1D cfbb3a.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1D cfbb3a.ttslua deleted file mode 100644 index e91932fb8..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1D cfbb3a.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/kcx1tvp/Forgotten-Age-1-Untamed-Wilds-Ethan-Patrick-Harris.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1D cfbb3a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1D cfbb3a.yaml deleted file mode 100644 index 9cacc6c7a..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1D cfbb3a.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/kcx1tvp/Forgotten-Age-1-Untamed-Wilds-Ethan-Patrick-Harris.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: cfbb3a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 1D cfbb3a.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 1D -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 29.34 - posY: 1.34 - posZ: -47.41 - rotX: 0.02 - rotY: 269.84 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1E f85e49.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1E f85e49.ttslua deleted file mode 100644 index 67a2e8fca..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1E f85e49.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/bbq1ZrK/Forgotten-Age-1-Untamed-Wilds-Nele-Diel.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1E f85e49.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1E f85e49.yaml deleted file mode 100644 index 61100fa55..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 1E f85e49.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/bbq1ZrK/Forgotten-Age-1-Untamed-Wilds-Nele-Diel.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: f85e49 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 1E f85e49.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 1E -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 25.52 - posY: 1.33 - posZ: -47.44 - rotX: 0.02 - rotY: 269.91 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 2A 282d25.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 2A 282d25.ttslua deleted file mode 100644 index 6d91b40f9..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 2A 282d25.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/Pw4by4q/Forgotten-Age-2-Doom-of-Eztli-Cristi-Balanescu.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 2A 282d25.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 2A 282d25.yaml deleted file mode 100644 index 3ddde74ac..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 2A 282d25.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/Pw4by4q/Forgotten-Age-2-Doom-of-Eztli-Cristi-Balanescu.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 282d25 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 2A 282d25.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 2A -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.39 - posZ: -52.02 - rotX: 358.46 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 2B 2b14a7.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 2B 2b14a7.ttslua deleted file mode 100644 index 3702b5132..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 2B 2b14a7.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/xqW6cXR/Forgotten-Age-2-Doom-of-Eztli-Greg-Bobrowski.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 2B 2b14a7.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 2B 2b14a7.yaml deleted file mode 100644 index 942b39268..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 2B 2b14a7.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/xqW6cXR/Forgotten-Age-2-Doom-of-Eztli-Greg-Bobrowski.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 2b14a7 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 2B 2b14a7.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 2B -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -52.01 - rotX: 358.45 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 2C 0c5d69.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 2C 0c5d69.ttslua deleted file mode 100644 index 2c065f506..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 2C 0c5d69.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/kgsC3pb/Forgotten-Age-2-Doom-of-Eztli-Nele-Diel.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 2C 0c5d69.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 2C 0c5d69.yaml deleted file mode 100644 index 5a9cd7e68..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 2C 0c5d69.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/kgsC3pb/Forgotten-Age-2-Doom-of-Eztli-Nele-Diel.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 0c5d69 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 2C 0c5d69.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 2C -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.34 - posZ: -52.01 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 3 9dcd0b.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 3 9dcd0b.ttslua deleted file mode 100644 index a179426a7..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 3 9dcd0b.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/Bn0Pjng/Forgotten-Age-3-Threads-of-Fate-Jokubas-Uogintas.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 3 9dcd0b.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 3 9dcd0b.yaml deleted file mode 100644 index 9d0af3a9d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 3 9dcd0b.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/Bn0Pjng/Forgotten-Age-3-Threads-of-Fate-Jokubas-Uogintas.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 9dcd0b -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 3 9dcd0b.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 3 -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -56.62 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 4A ac1189.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 4A ac1189.ttslua deleted file mode 100644 index 7ea4154ce..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 4A ac1189.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/D1rh9Ry/Forgotten-Age-4-Boundary-Beyond-Nele-Diel.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 4A ac1189.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 4A ac1189.yaml deleted file mode 100644 index c6939af75..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 4A ac1189.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/D1rh9Ry/Forgotten-Age-4-Boundary-Beyond-Nele-Diel.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: ac1189 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 4A ac1189.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 4A -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.39 - posZ: -61.22 - rotX: 358.46 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 4B 2b16af.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 4B 2b16af.ttslua deleted file mode 100644 index b044d68b6..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 4B 2b16af.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/vm0JgFs/Forgotten-Age-4-Boundary-Beyond-Greg-Bobrowski-jpg.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 4B 2b16af.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 4B 2b16af.yaml deleted file mode 100644 index 7c84ae097..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 4B 2b16af.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/vm0JgFs/Forgotten-Age-4-Boundary-Beyond-Greg-Bobrowski-jpg.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 2b16af -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 4B 2b16af.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 4B -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -61.21 - rotX: 358.45 - rotY: 269.96 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 4C 31a48f.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 4C 31a48f.ttslua deleted file mode 100644 index 3072ab963..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 4C 31a48f.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/yPZ9v2X/Forgotten-Age-4-Boundary-Beyond-Greg-Bobrowski-2-jpg.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 4C 31a48f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 4C 31a48f.yaml deleted file mode 100644 index f75fc0d75..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 4C 31a48f.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/yPZ9v2X/Forgotten-Age-4-Boundary-Beyond-Greg-Bobrowski-2-jpg.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 31a48f -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 4C 31a48f.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 4C -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 32.98 - posY: 1.33 - posZ: -61.21 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 5 Part II d30cd9.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 5 Part II d30cd9.ttslua deleted file mode 100644 index f070497aa..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 5 Part II d30cd9.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/pQSbL0t/Forgotten-Age-5-Heart-of-the-Elders-II-Nele-Diel.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 5 Part II d30cd9.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 5 Part II d30cd9.yaml deleted file mode 100644 index b2ba3b580..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 5 Part II d30cd9.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/pQSbL0t/Forgotten-Age-5-Heart-of-the-Elders-II-Nele-Diel.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: d30cd9 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 5 Part II d30cd9.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 5 Part II -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -70.42 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 5A Part I deb491.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 5A Part I deb491.ttslua deleted file mode 100644 index d27dc5753..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 5A Part I deb491.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/jzKvv6P/Forgotten-Age-5-Heart-of-the-Elders-I-Lucas-Staniec.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 5A Part I deb491.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 5A Part I deb491.yaml deleted file mode 100644 index ddf773779..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 5A Part I deb491.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/jzKvv6P/Forgotten-Age-5-Heart-of-the-Elders-I-Lucas-Staniec.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: deb491 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 5A Part I deb491.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 5A Part I -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.39 - posZ: -65.82 - rotX: 358.46 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 5B Part I 325a77.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 5B Part I 325a77.ttslua deleted file mode 100644 index 95d2d8f9d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 5B Part I 325a77.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/mR79MX4/Forgotten-Age-5-Heart-of-the-Elders-I-Lucas-Staniec-2.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 5B Part I 325a77.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 5B Part I 325a77.yaml deleted file mode 100644 index 588abf983..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 5B Part I 325a77.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/mR79MX4/Forgotten-Age-5-Heart-of-the-Elders-I-Lucas-Staniec-2.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 325a77 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 5B Part I 325a77.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 5B Part I -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.33 - posZ: -65.81 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 6A caf51e.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 6A caf51e.ttslua deleted file mode 100644 index 1a3dad529..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 6A caf51e.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/qdPbSZ8/Forgotten-Age-6-City-of-Archives-Chris-Ostrowski.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 6A caf51e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 6A caf51e.yaml deleted file mode 100644 index 322ff5be1..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 6A caf51e.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/qdPbSZ8/Forgotten-Age-6-City-of-Archives-Chris-Ostrowski.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: caf51e -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 6A caf51e.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 6A -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.38 - posZ: -75.02 - rotX: 358.46 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 6B 50a644.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 6B 50a644.ttslua deleted file mode 100644 index c01c37690..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 6B 50a644.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/f04DSPb/Forgotten-Age-6-City-of-Archives.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 6B 50a644.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 6B 50a644.yaml deleted file mode 100644 index 68bcfcddc..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 6B 50a644.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/f04DSPb/Forgotten-Age-6-City-of-Archives.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 50a644 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 6B 50a644.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 6B -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.38 - posZ: -75.01 - rotX: 358.45 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 6C 053d7c.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 6C 053d7c.ttslua deleted file mode 100644 index 097683d68..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 6C 053d7c.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/WsSBrYj/Forgotten-Age-6-City-of-Archives-2.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 6C 053d7c.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 6C 053d7c.yaml deleted file mode 100644 index eada290a9..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 6C 053d7c.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/WsSBrYj/Forgotten-Age-6-City-of-Archives-2.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 053d7c -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 6C 053d7c.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 6C -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 32.99 - posY: 1.33 - posZ: -75.01 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 7A 92bec7.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 7A 92bec7.ttslua deleted file mode 100644 index fa7e4c8aa..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 7A 92bec7.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/dbLKgGv/Forgotten-Age-7-Depths-of-Yoth-Diego-Arbetta.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 7A 92bec7.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 7A 92bec7.yaml deleted file mode 100644 index 3501b14fd..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 7A 92bec7.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/dbLKgGv/Forgotten-Age-7-Depths-of-Yoth-Diego-Arbetta.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 92bec7 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 7A 92bec7.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 7A -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.38 - posZ: -79.62 - rotX: 358.46 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 7B 18f3be.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 7B 18f3be.ttslua deleted file mode 100644 index 756a17640..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 7B 18f3be.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/NW7Wp98/Forgotten-Age-7-Depths-of-Yoth-Greg-Bobrowski.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 7B 18f3be.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 7B 18f3be.yaml deleted file mode 100644 index dc881d644..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 7B 18f3be.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/NW7Wp98/Forgotten-Age-7-Depths-of-Yoth-Greg-Bobrowski.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 18f3be -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 7B 18f3be.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 7B -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.38 - posZ: -79.61 - rotX: 358.45 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 7C c9e359.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 7C c9e359.ttslua deleted file mode 100644 index c6f6e7135..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 7C c9e359.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/257zr7c/Forgotten-Age-7-Depths-of-Yoth-Greg-Bobrowski-2-jpg.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 7C c9e359.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 7C c9e359.yaml deleted file mode 100644 index 9b739f629..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 7C c9e359.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/257zr7c/Forgotten-Age-7-Depths-of-Yoth-Greg-Bobrowski-2-jpg.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: c9e359 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 7C c9e359.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 7C -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 32.98 - posY: 1.33 - posZ: -79.61 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 8A 021c1b.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 8A 021c1b.ttslua deleted file mode 100644 index 3f3fa2ccd..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 8A 021c1b.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/KwnWTGR/Forgotten-Age-8-Shattered-Aeons.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 8A 021c1b.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 8A 021c1b.yaml deleted file mode 100644 index 009ff2417..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 8A 021c1b.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/KwnWTGR/Forgotten-Age-8-Shattered-Aeons.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 021c1b -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 8A 021c1b.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 8A -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.38 - posZ: -84.21 - rotX: 358.46 - rotY: 269.97 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 8B fdc988.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 8B fdc988.ttslua deleted file mode 100644 index 6062835b6..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 8B fdc988.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/b7kVd4F/Forgotten-Age-8-Shattered-Aeons-Alexandr-Elichev.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 8B fdc988.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 8B fdc988.yaml deleted file mode 100644 index 1adb704f4..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Forgotten Age b172b0/Custom_Token TFA - 8B fdc988.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/b7kVd4F/Forgotten-Age-8-Shattered-Aeons-Alexandr-Elichev.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: fdc988 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TFA - 8B fdc988.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TFA - 8B -Snap: true -Sticky: true -Tags: -- tfamat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.33 - posZ: -84.2 - rotX: 0.02 - rotY: 269.93 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5.ttslua deleted file mode 100644 index 8d7b4dd5e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5.ttslua +++ /dev/null @@ -1,163 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-03-16 3:26 p.m. ---- - ---- Original Memory Bag by MrStump ---- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080 - ----@class MemoryListEntry ----@field public position Vector ----@field public rotation Vector ----@field public lock boolean -local MemoryListEntry={} - ----@type table -local memory_list = {} - -local POSTFIX = { - SAVE = "_memory_object", - ZONE = "_memory_zone", - SHUFFLE = "_memory_shuffle" -} - ----@type table -local BUTTON = { - POSITION = Vector(0, 0.3, -2), - ROTATION = Vector(0, 180, 0), - HEIGHT = 350, - WIDTH = 800, - FONT_SIZE = 250, - COLOR = Color.Black, - FONT_COLOR = Color.White -} - -local ipairs = ipairs -local pairs = pairs - ----@return string -local function get_prefix() - return self:getDescription() -end - -local function updateSave() - local data_to_save = {["ml"]=memory_list} - local saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - ----@param label string ----@param action string -local function createButton(label, action) - self:clearButtons() - - ---@type CreateClassicUIButton - local parameters = { - label = label, - click_function = action, - function_owner = self - } - - for key, value in pairs(BUTTON) do - parameters[key:lower()] = value - end - - self:createButton(parameters) -end - -local function create_place_button() createButton("Place", "place_objects") end -local function create_recall_button() createButton("Recall", "recall_objects") end - ----@param tag string ----@param lock boolean ----@return fun(object:TTSObject) -local function create_object_callback(tag, lock) - ---@param object TTSObject - return function (object) - object:setLock(lock) - if object:hasTag(tag) then object:shuffle() end - end -end - ----@param object TTSObject -local function record_objects(object) - memory_list[object:getGUID()] = { - position = object:getPosition(), - rotation = object:getRotation(), - lock = object:getLock() - } - self:putObject(object) -end - ----@param objects TTSObject[] -local function update_objects(objects) - for _, object in ipairs(objects) do - record_objects(object) - end -end - ---Sends objects from bag/table to their saved position/rotation -function place_objects() - local prefix = get_prefix() - local shuffle_tag = prefix .. POSTFIX.SHUFFLE - local content = self.getObjects() - - for _, item in ipairs(content) do - local entry = memory_list[item.guid] - if entry then - self.takeObject { - guid=item.guid, - position=entry.position, - rotation=entry.rotation, - callback_function = create_object_callback(shuffle_tag, entry.lock) - } - end - end - - broadcastToAll("Objects Placed", {1,1,1}) - create_recall_button() -end - ---Recalls objects to bag from table -function recall_objects() - memory_list = {} - local prefix = get_prefix() - - if prefix=="" then - broadcastToAll("Error in Memory Bag: Tag prefix not set.") - return - end - - local save_tag = prefix .. POSTFIX.SAVE - local zone_tag = prefix .. POSTFIX.ZONE - - local zones = getObjectsWithTag(zone_tag) - if #zones>0 then - for _, zone in ipairs(zones) do - update_objects(zone:getObjects()) - end - else - update_objects(getObjectsWithTag(save_tag)) - end - updateSave() - broadcastToAll("Objects Recalled", {1,1,1}) - create_place_button() -end - -function onload(saved_data) - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - --Set up information off of loaded_data - memory_list = loaded_data.ml - else - --Set up information for if there is no saved saved data - memory_list = {} - end - - if self:getQuantity()==0 then - create_recall_button() - else - create_place_button() - end -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5.yaml deleted file mode 100644 index 492987266..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5.yaml +++ /dev/null @@ -1,69 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 1.0 - g: 0.861495 - r: 0.0 -ContainedObjects: -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 1A 979594.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 1B 660e61.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2A 6abdc5.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2B 979352.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2C 7486a3.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2D c53204.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3A 77a94c.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3B 9c79a5.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3C a8957d.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 4B 3f0496.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 4A 957b29.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5A 9a7d80.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5B 0118ae.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5C ebe3a7.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5D 0eff3a.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 6A 092468.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 6B 4f17e8.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2E 08c430.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 7A 7e861b.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 7B d31f0f.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 8A e0348a.yaml' -- !include 'Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 8B f1db94.yaml' -Description: ticmat -DragSelectable: true -GMNotes: '' -GUID: a0cfe5 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Bag The Innsmouth Conspiracy a0cfe5.ttslua' -LuaScriptState: '{"ml":{"0118ae":{"lock":false,"position":{"x":36.6180000305176,"y":1.38481879234314,"z":-65.8078918457031},"rotation":{"x":1.58113861083984,"y":270.013153076172,"z":0.0168895907700062}},"08c430":{"lock":false,"position":{"x":25.5426006317139,"y":1.3334151506424,"z":-52.0431976318359},"rotation":{"x":0.0208029337227345,"y":270.020446777344,"z":0.0167784541845322}},"092468":{"lock":false,"position":{"x":40.2902565002441,"y":1.38489079475403,"z":-70.4197998046875},"rotation":{"x":358.457733154297,"y":269.983093261719,"z":0.0168081410229206}},"0eff3a":{"lock":false,"position":{"x":29.3395824432373,"y":1.38256311416626,"z":-65.808479309082},"rotation":{"x":1.59300947189331,"y":269.992980957031,"z":0.0168074797838926}},"3f0496":{"lock":false,"position":{"x":36.6240577697754,"y":1.33475565910339,"z":-61.2084808349609},"rotation":{"x":0.0208406671881676,"y":269.996490478516,"z":0.0167188383638859}},"4f17e8":{"lock":false,"position":{"x":36.6241188049316,"y":1.33206379413605,"z":-70.4083480834961},"rotation":{"x":0.0208168532699347,"y":270.001953125,"z":0.0167598761618137}},"660e61":{"lock":false,"position":{"x":36.6243591308594,"y":1.3902941942215,"z":-47.4084205627441},"rotation":{"x":1.5838874578476,"y":269.987731933594,"z":0.0167927276343107}},"6abdc5":{"lock":false,"position":{"x":40.2911682128906,"y":1.39026665687561,"z":-52.0199394226074},"rotation":{"x":358.4580078125,"y":269.984069824219,"z":0.0168000254780054}},"7486a3":{"lock":false,"position":{"x":32.9846954345703,"y":1.38791227340698,"z":-52.0095405578613},"rotation":{"x":358.449035644531,"y":269.984741210938,"z":0.0167792793363333}},"77a94c":{"lock":false,"position":{"x":40.2915649414063,"y":1.38890874385834,"z":-56.6198844909668},"rotation":{"x":358.458312988281,"y":270.019104003906,"z":0.0167943090200424}},"7e861b":{"lock":false,"position":{"x":40.2902374267578,"y":1.38354241847992,"z":-75.0199127197266},"rotation":{"x":358.457763671875,"y":269.983245849609,"z":0.0167876947671175}},"957b29":{"lock":false,"position":{"x":40.2902297973633,"y":1.38758146762848,"z":-61.2199325561523},"rotation":{"x":358.457733154297,"y":269.992248535156,"z":0.0167983192950487}},"979352":{"lock":false,"position":{"x":36.6241989135742,"y":1.3893209695816,"z":-52.008430480957},"rotation":{"x":358.446380615234,"y":269.986480712891,"z":0.0167909879237413}},"979594":{"lock":false,"position":{"x":40.2900772094727,"y":1.34012138843536,"z":-47.4199867248535},"rotation":{"x":0.020835580304265,"y":269.985260009766,"z":0.0166482981294394}},"9a7d80":{"lock":false,"position":{"x":40.2900733947754,"y":1.33473515510559,"z":-65.8198394775391},"rotation":{"x":0.0208256263285875,"y":270.007568359375,"z":0.0166513193398714}},"9c79a5":{"lock":false,"position":{"x":36.6241989135742,"y":1.38796746730804,"z":-56.608512878418},"rotation":{"x":358.446624755859,"y":269.989440917969,"z":0.016850559040904}},"a8957d":{"lock":false,"position":{"x":32.9840278625488,"y":1.33477926254272,"z":-56.6084213256836},"rotation":{"x":0.0208590421825647,"y":269.987182617188,"z":0.0166654288768768}},"c53204":{"lock":false,"position":{"x":29.3396053314209,"y":1.33480095863342,"z":-52.009521484375},"rotation":{"x":0.0208586659282446,"y":269.987213134766,"z":0.0166388098150492}},"d31f0f":{"lock":false,"position":{"x":36.6240577697754,"y":1.33071637153625,"z":-75.0084533691406},"rotation":{"x":0.020815584808588,"y":269.989013671875,"z":0.016719076782465}},"e0348a":{"lock":false,"position":{"x":40.2902565002441,"y":1.3821964263916,"z":-79.6198425292969},"rotation":{"x":358.457733154297,"y":269.983215332031,"z":0.0167914871126413}},"ebe3a7":{"lock":false,"position":{"x":32.9844970703125,"y":1.38402533531189,"z":-65.8082275390625},"rotation":{"x":1.59724962711334,"y":269.976989746094,"z":0.0167587772011757}},"f1db94":{"lock":false,"position":{"x":36.6241264343262,"y":1.32936978340149,"z":-79.6083221435547},"rotation":{"x":0.020829314365983,"y":269.987213134766,"z":0.0167126581072807}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: The Innsmouth Conspiracy -Snap: true -Sticky: true -Tags: -- playmat_memory_object -Tooltip: true -Transform: - posX: 45.64 - posY: 1.1 - posZ: -75.01 - rotX: 359.98 - rotY: 89.99 - rotZ: 359.98 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 1A 979594.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 1A 979594.ttslua deleted file mode 100644 index 73b37db4c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 1A 979594.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/Nj9JLBQ/Innsmouth-1-Pit-of-Despair-J-Mill.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 1A 979594.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 1A 979594.yaml deleted file mode 100644 index c494fd5cf..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 1A 979594.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/Nj9JLBQ/Innsmouth-1-Pit-of-Despair-J-Mill.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '979594' -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 1A 979594.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 1A -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -47.42 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 1B 660e61.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 1B 660e61.ttslua deleted file mode 100644 index 3c8a0ce41..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 1B 660e61.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/2sc0F61/Innsmouth-1-Pit-of-Despair-Amanda-Castrillo.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 1B 660e61.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 1B 660e61.yaml deleted file mode 100644 index 9b684e94b..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 1B 660e61.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/2sc0F61/Innsmouth-1-Pit-of-Despair-Amanda-Castrillo.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 660e61 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 1B 660e61.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 1B -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -47.41 - rotX: 1.58 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2A 6abdc5.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2A 6abdc5.ttslua deleted file mode 100644 index 2f452e7b0..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2A 6abdc5.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/hFQMm7N/Innsmouth-2-Vanishing-of-Elina-Harper-Richard-Wright.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2A 6abdc5.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2A 6abdc5.yaml deleted file mode 100644 index 12ba034a6..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2A 6abdc5.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/hFQMm7N/Innsmouth-2-Vanishing-of-Elina-Harper-Richard-Wright.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 6abdc5 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 2A 6abdc5.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 2A -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.39 - posZ: -52.02 - rotX: 358.46 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2B 979352.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2B 979352.ttslua deleted file mode 100644 index e1abea4d9..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2B 979352.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/2j74cVn/Innsmouth-2-Vanishing-of-Elina-Harper-Konstantin-Vohwinkel.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2B 979352.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2B 979352.yaml deleted file mode 100644 index 0ddad0eb4..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2B 979352.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/2j74cVn/Innsmouth-2-Vanishing-of-Elina-Harper-Konstantin-Vohwinkel.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '979352' -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 2B 979352.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 2B -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -52.01 - rotX: 358.45 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2C 7486a3.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2C 7486a3.ttslua deleted file mode 100644 index a9d5ed9c0..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2C 7486a3.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/2nZKGN6/Innsmouth-2-Vanishing-of-Elina-Harper-Tomasz-Jedruszek-1.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2C 7486a3.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2C 7486a3.yaml deleted file mode 100644 index 862ca19cb..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2C 7486a3.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/2nZKGN6/Innsmouth-2-Vanishing-of-Elina-Harper-Tomasz-Jedruszek-1.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 7486a3 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 2C 7486a3.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 2C -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 32.98 - posY: 1.39 - posZ: -52.01 - rotX: 358.45 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2D c53204.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2D c53204.ttslua deleted file mode 100644 index 6f31a1e84..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2D c53204.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/WxLpKrM/Innsmouth-2-Vanishing-of-Elina-Harper-Tomasz-Jedruszek-2.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2D c53204.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2D c53204.yaml deleted file mode 100644 index e76cd734c..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2D c53204.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/WxLpKrM/Innsmouth-2-Vanishing-of-Elina-Harper-Tomasz-Jedruszek-2.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: c53204 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 2D c53204.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 2D -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 29.34 - posY: 1.33 - posZ: -52.01 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2E 08c430.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2E 08c430.ttslua deleted file mode 100644 index 9b332ba30..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2E 08c430.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/r2VqHSn/Innsmouth-2-Vanishing-of-Elina-Harper-Mihail-Bila.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2E 08c430.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2E 08c430.yaml deleted file mode 100644 index a2fa46836..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 2E 08c430.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/r2VqHSn/Innsmouth-2-Vanishing-of-Elina-Harper-Mihail-Bila.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 08c430 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 2E 08c430.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 2E -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 25.54 - posY: 1.33 - posZ: -52.04 - rotX: 0.02 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3A 77a94c.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3A 77a94c.ttslua deleted file mode 100644 index 144313d96..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3A 77a94c.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/jgQ8zQN/Innsmouth-3-In-Too-Deep-Klaudia-Bezak.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3A 77a94c.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3A 77a94c.yaml deleted file mode 100644 index 88940c877..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3A 77a94c.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/jgQ8zQN/Innsmouth-3-In-Too-Deep-Klaudia-Bezak.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 77a94c -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 3A 77a94c.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 3A -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.39 - posZ: -56.62 - rotX: 358.46 - rotY: 270.02 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3B 9c79a5.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3B 9c79a5.ttslua deleted file mode 100644 index 1db6f3650..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3B 9c79a5.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/SsQ3my4/Innsmouth-3-In-Too-Deep-David-Frasheski.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3B 9c79a5.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3B 9c79a5.yaml deleted file mode 100644 index 4cb2bdb0a..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3B 9c79a5.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/SsQ3my4/Innsmouth-3-In-Too-Deep-David-Frasheski.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 9c79a5 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 3B 9c79a5.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 3B -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -56.61 - rotX: 358.45 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3C a8957d.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3C a8957d.ttslua deleted file mode 100644 index a27754b00..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3C a8957d.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/VVgtNM1/Innsmouth-3-In-Too-Deep-Patrik-Antonescu.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3C a8957d.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3C a8957d.yaml deleted file mode 100644 index e1f1ba7ce..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 3C a8957d.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/VVgtNM1/Innsmouth-3-In-Too-Deep-Patrik-Antonescu.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: a8957d -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 3C a8957d.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 3C -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 32.98 - posY: 1.33 - posZ: -56.61 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 4A 957b29.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 4A 957b29.ttslua deleted file mode 100644 index b8b85646f..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 4A 957b29.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/Jrf6CJ0/Innsmouth-4-Devil-Reef-Ludovic-Sanson.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 4A 957b29.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 4A 957b29.yaml deleted file mode 100644 index bbab477ee..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 4A 957b29.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/Jrf6CJ0/Innsmouth-4-Devil-Reef-Ludovic-Sanson.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 957b29 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 4A 957b29.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 4A -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.39 - posZ: -61.22 - rotX: 358.46 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 4B 3f0496.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 4B 3f0496.ttslua deleted file mode 100644 index 3e1014c3a..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 4B 3f0496.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/4jfwDZR/Innsmouth-4-Devil-Reef-Marc-Stewart.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 4B 3f0496.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 4B 3f0496.yaml deleted file mode 100644 index 5c96bf9b0..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 4B 3f0496.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/4jfwDZR/Innsmouth-4-Devil-Reef-Marc-Stewart.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 3f0496 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 4B 3f0496.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 4B -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.33 - posZ: -61.21 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5A 9a7d80.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5A 9a7d80.ttslua deleted file mode 100644 index 1cf447af9..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5A 9a7d80.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/vqYJjYJ/Innsmouth-5-Horror-in-High-Gear-Greg-Bobrowski.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5A 9a7d80.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5A 9a7d80.yaml deleted file mode 100644 index 85d4378f5..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5A 9a7d80.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/vqYJjYJ/Innsmouth-5-Horror-in-High-Gear-Greg-Bobrowski.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 9a7d80 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 5A 9a7d80.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 5A -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -65.82 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5B 0118ae.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5B 0118ae.ttslua deleted file mode 100644 index 11c095c5d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5B 0118ae.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/yYrzbYS/Innsmouth-5-Horror-in-High-Gear-Greg-Bobrowski-2.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5B 0118ae.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5B 0118ae.yaml deleted file mode 100644 index d130d7dd3..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5B 0118ae.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/yYrzbYS/Innsmouth-5-Horror-in-High-Gear-Greg-Bobrowski-2.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 0118ae -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 5B 0118ae.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 5B -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.38 - posZ: -65.81 - rotX: 1.58 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5C ebe3a7.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5C ebe3a7.ttslua deleted file mode 100644 index 1a80e02c4..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5C ebe3a7.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/YkLFy7y/Innsmouth-5-Horror-in-High-Gear-Rostyslav-Zagornov.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5C ebe3a7.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5C ebe3a7.yaml deleted file mode 100644 index ea7d3de50..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5C ebe3a7.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/YkLFy7y/Innsmouth-5-Horror-in-High-Gear-Rostyslav-Zagornov.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: ebe3a7 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 5C ebe3a7.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 5C -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 32.98 - posY: 1.38 - posZ: -65.81 - rotX: 1.6 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5D 0eff3a.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5D 0eff3a.ttslua deleted file mode 100644 index 6487a4b97..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5D 0eff3a.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/fpKWhGY/Innsmouth-5-Horror-in-High-Gear-Guillem-H-Pongiluppi.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5D 0eff3a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5D 0eff3a.yaml deleted file mode 100644 index 1d88a37a5..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 5D 0eff3a.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/fpKWhGY/Innsmouth-5-Horror-in-High-Gear-Guillem-H-Pongiluppi.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 0eff3a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 5D 0eff3a.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 5D -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 29.34 - posY: 1.38 - posZ: -65.81 - rotX: 1.59 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 6A 092468.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 6A 092468.ttslua deleted file mode 100644 index 5f696ec71..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 6A 092468.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/Db2pRd6/Innsmouth-6-Light-in-the-Fog-JB-Caillet.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 6A 092468.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 6A 092468.yaml deleted file mode 100644 index 8392d7c23..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 6A 092468.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/Db2pRd6/Innsmouth-6-Light-in-the-Fog-JB-Caillet.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 092468 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 6A 092468.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 6A -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.38 - posZ: -70.42 - rotX: 358.46 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 6B 4f17e8.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 6B 4f17e8.ttslua deleted file mode 100644 index a9d5194ff..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 6B 4f17e8.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/v1rhgqJ/Innsmouth-6-Light-in-the-Fog-Florian-Aupetit.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 6B 4f17e8.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 6B 4f17e8.yaml deleted file mode 100644 index 7c8eeaee0..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 6B 4f17e8.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/v1rhgqJ/Innsmouth-6-Light-in-the-Fog-Florian-Aupetit.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 4f17e8 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 6B 4f17e8.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 6B -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.33 - posZ: -70.41 - rotX: 0.02 - rotY: 270.0 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 7A 7e861b.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 7A 7e861b.ttslua deleted file mode 100644 index 76f08349e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 7A 7e861b.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/MZBpCbs/Innsmouth-7-Lair-of-Dagon-Guillem-H-Pongiluppi.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 7A 7e861b.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 7A 7e861b.yaml deleted file mode 100644 index 8fe329b4e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 7A 7e861b.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/MZBpCbs/Innsmouth-7-Lair-of-Dagon-Guillem-H-Pongiluppi.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 7e861b -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 7A 7e861b.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 7A -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.38 - posZ: -75.02 - rotX: 358.46 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 7B d31f0f.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 7B d31f0f.ttslua deleted file mode 100644 index c9148d19a..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 7B d31f0f.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/QPwzQL5/Innsmouth-7-Lair-of-Dagon-Daria-Khlebnikova.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 7B d31f0f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 7B d31f0f.yaml deleted file mode 100644 index 390496a1f..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 7B d31f0f.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/QPwzQL5/Innsmouth-7-Lair-of-Dagon-Daria-Khlebnikova.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: d31f0f -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 7B d31f0f.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 7B -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.33 - posZ: -75.01 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 8A e0348a.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 8A e0348a.ttslua deleted file mode 100644 index 84064b4a1..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 8A e0348a.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/k56Dn9q/Innsmouth-8-Into-the-Maelstrom-Mateusz-Michalski.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 8A e0348a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 8A e0348a.yaml deleted file mode 100644 index da9891f4e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 8A e0348a.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/k56Dn9q/Innsmouth-8-Into-the-Maelstrom-Mateusz-Michalski.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: e0348a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 8A e0348a.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 8A -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.38 - posZ: -79.62 - rotX: 358.46 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 8B f1db94.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 8B f1db94.ttslua deleted file mode 100644 index cf8cd15cc..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 8B f1db94.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/fkSXDgs/Innsmouth-8-Into-the-Maelstrom-Dimitri-Bielak.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 8B f1db94.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 8B f1db94.yaml deleted file mode 100644 index d3403fa44..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Innsmouth Conspiracy a0cfe5/Custom_Token TIC - 8B f1db94.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/fkSXDgs/Innsmouth-8-Into-the-Maelstrom-Dimitri-Bielak.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: f1db94 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token TIC - 8B f1db94.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: TIC - 8B -Snap: true -Sticky: true -Tags: -- ticmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.33 - posZ: -79.61 - rotX: 0.02 - rotY: 269.99 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab.ttslua deleted file mode 100644 index 8d7b4dd5e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab.ttslua +++ /dev/null @@ -1,163 +0,0 @@ ---- ---- Generated by EmmyLua(https://github.com/EmmyLua) ---- Created by Whimsical. ---- DateTime: 2021-03-16 3:26 p.m. ---- - ---- Original Memory Bag by MrStump ---- https://steamcommunity.com/sharedfiles/filedetails/?id=953770080 - ----@class MemoryListEntry ----@field public position Vector ----@field public rotation Vector ----@field public lock boolean -local MemoryListEntry={} - ----@type table -local memory_list = {} - -local POSTFIX = { - SAVE = "_memory_object", - ZONE = "_memory_zone", - SHUFFLE = "_memory_shuffle" -} - ----@type table -local BUTTON = { - POSITION = Vector(0, 0.3, -2), - ROTATION = Vector(0, 180, 0), - HEIGHT = 350, - WIDTH = 800, - FONT_SIZE = 250, - COLOR = Color.Black, - FONT_COLOR = Color.White -} - -local ipairs = ipairs -local pairs = pairs - ----@return string -local function get_prefix() - return self:getDescription() -end - -local function updateSave() - local data_to_save = {["ml"]=memory_list} - local saved_data = JSON.encode(data_to_save) - self.script_state = saved_data -end - ----@param label string ----@param action string -local function createButton(label, action) - self:clearButtons() - - ---@type CreateClassicUIButton - local parameters = { - label = label, - click_function = action, - function_owner = self - } - - for key, value in pairs(BUTTON) do - parameters[key:lower()] = value - end - - self:createButton(parameters) -end - -local function create_place_button() createButton("Place", "place_objects") end -local function create_recall_button() createButton("Recall", "recall_objects") end - ----@param tag string ----@param lock boolean ----@return fun(object:TTSObject) -local function create_object_callback(tag, lock) - ---@param object TTSObject - return function (object) - object:setLock(lock) - if object:hasTag(tag) then object:shuffle() end - end -end - ----@param object TTSObject -local function record_objects(object) - memory_list[object:getGUID()] = { - position = object:getPosition(), - rotation = object:getRotation(), - lock = object:getLock() - } - self:putObject(object) -end - ----@param objects TTSObject[] -local function update_objects(objects) - for _, object in ipairs(objects) do - record_objects(object) - end -end - ---Sends objects from bag/table to their saved position/rotation -function place_objects() - local prefix = get_prefix() - local shuffle_tag = prefix .. POSTFIX.SHUFFLE - local content = self.getObjects() - - for _, item in ipairs(content) do - local entry = memory_list[item.guid] - if entry then - self.takeObject { - guid=item.guid, - position=entry.position, - rotation=entry.rotation, - callback_function = create_object_callback(shuffle_tag, entry.lock) - } - end - end - - broadcastToAll("Objects Placed", {1,1,1}) - create_recall_button() -end - ---Recalls objects to bag from table -function recall_objects() - memory_list = {} - local prefix = get_prefix() - - if prefix=="" then - broadcastToAll("Error in Memory Bag: Tag prefix not set.") - return - end - - local save_tag = prefix .. POSTFIX.SAVE - local zone_tag = prefix .. POSTFIX.ZONE - - local zones = getObjectsWithTag(zone_tag) - if #zones>0 then - for _, zone in ipairs(zones) do - update_objects(zone:getObjects()) - end - else - update_objects(getObjectsWithTag(save_tag)) - end - updateSave() - broadcastToAll("Objects Recalled", {1,1,1}) - create_place_button() -end - -function onload(saved_data) - if saved_data ~= "" then - local loaded_data = JSON.decode(saved_data) - --Set up information off of loaded_data - memory_list = loaded_data.ml - else - --Set up information for if there is no saved saved data - memory_list = {} - end - - if self:getQuantity()==0 then - create_recall_button() - else - create_place_button() - end -end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab.yaml deleted file mode 100644 index ca47d4bde..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab.yaml +++ /dev/null @@ -1,63 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -Bag: - Order: 0 -ColorDiffuse: - b: 0.0 - g: 0.984543741 - r: 1.0 -ContainedObjects: -- !include 'Bag The Path to Carcosa 569aab/Custom_Token POC - 2A f7d07b.yaml' -- !include 'Bag The Path to Carcosa 569aab/Custom_Token POC - 3 6cea28.yaml' -- !include 'Bag The Path to Carcosa 569aab/Custom_Token POC - 4A fa603e.yaml' -- !include 'Bag The Path to Carcosa 569aab/Custom_Token POC - 4B 1e0a2d.yaml' -- !include 'Bag The Path to Carcosa 569aab/Custom_Token POC - 5A 1e8406.yaml' -- !include 'Bag The Path to Carcosa 569aab/Custom_Token POC - 5B 2abbe8.yaml' -- !include 'Bag The Path to Carcosa 569aab/Custom_Token POC - 2B 7010ef.yaml' -- !include 'Bag The Path to Carcosa 569aab/Custom_Token POC - 6A 2d374a.yaml' -- !include 'Bag The Path to Carcosa 569aab/Custom_Token POC - 6B 8b2f2f.yaml' -- !include 'Bag The Path to Carcosa 569aab/Custom_Token POC - 1 85cf7e.yaml' -- !include 'Bag The Path to Carcosa 569aab/Custom_Token POC - 2C 8127bb.yaml' -- !include 'Bag The Path to Carcosa 569aab/Custom_Token POC - 4C 095a6c.yaml' -- !include 'Bag The Path to Carcosa 569aab/Custom_Token POC - 7A 456b43.yaml' -- !include 'Bag The Path to Carcosa 569aab/Custom_Token POC - 8A 3aacc6.yaml' -- !include 'Bag The Path to Carcosa 569aab/Custom_Token POC - 8B 0e16cf.yaml' -- !include 'Bag The Path to Carcosa 569aab/Custom_Token POC - 7B 8e8954.yaml' -Description: tpocmat -DragSelectable: true -GMNotes: '' -GUID: 569aab -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Bag The Path to Carcosa 569aab.ttslua' -LuaScriptState: '{"ml":{"095a6c":{"lock":false,"position":{"x":32.9845237731934,"y":1.38532066345215,"z":-61.2080574035645},"rotation":{"x":1.59576117992401,"y":270.084533691406,"z":0.016707519069314}},"0e16cf":{"lock":false,"position":{"x":36.6240348815918,"y":1.32936930656433,"z":-79.609992980957},"rotation":{"x":0.020971966907382,"y":269.514434814453,"z":0.0165424905717373}},"1e0a2d":{"lock":false,"position":{"x":36.6228218078613,"y":1.3862898349762,"z":-61.2083969116211},"rotation":{"x":1.58478653430939,"y":270.196533203125,"z":0.016992861405015}},"1e8406":{"lock":false,"position":{"x":40.2875022888184,"y":1.33473646640778,"z":-65.8198318481445},"rotation":{"x":0.0207942202687263,"y":270.075103759766,"z":0.0167566929012537}},"2abbe8":{"lock":false,"position":{"x":36.622932434082,"y":1.38492453098297,"z":-65.8079833984375},"rotation":{"x":1.58433163166046,"y":270.104827880859,"z":0.0168658625334501}},"2d374a":{"lock":false,"position":{"x":40.2900695800781,"y":1.33337986469269,"z":-70.4198532104492},"rotation":{"x":0.0208862069994211,"y":270.049285888672,"z":0.0163175016641617}},"3aacc6":{"lock":false,"position":{"x":40.2902526855469,"y":1.38219845294952,"z":-79.6182250976563},"rotation":{"x":358.457824707031,"y":269.510528564453,"z":0.0166097246110439}},"456b43":{"lock":false,"position":{"x":40.2905960083008,"y":1.38353705406189,"z":-75.0199966430664},"rotation":{"x":358.457855224609,"y":270.063842773438,"z":0.0167510230094194}},"6cea28":{"lock":false,"position":{"x":40.2900810241699,"y":1.33743143081665,"z":-56.6199798583984},"rotation":{"x":0.020815797150135,"y":269.976776123047,"z":0.0167626142501831}},"7010ef":{"lock":false,"position":{"x":36.6237106323242,"y":1.38894164562225,"z":-52.0081634521484},"rotation":{"x":1.5831127166748,"y":270.319885253906,"z":0.017417760565877}},"8127bb":{"lock":false,"position":{"x":32.9846115112305,"y":1.3880113363266,"z":-52.0093383789063},"rotation":{"x":1.59560775756836,"y":270.239685058594,"z":0.016812251880765}},"85cf7e":{"lock":false,"position":{"x":40.2900772094727,"y":1.3401243686676,"z":-47.419994354248},"rotation":{"x":0.0208344608545303,"y":269.912475585938,"z":0.0167393144220114}},"8b2f2f":{"lock":false,"position":{"x":36.6228141784668,"y":1.38353550434113,"z":-70.4082412719727},"rotation":{"x":1.58326184749603,"y":269.92626953125,"z":0.0166300144046545}},"8e8954":{"lock":false,"position":{"x":36.6243591308594,"y":1.33071219921112,"z":-75.0083999633789},"rotation":{"x":0.0208491515368223,"y":270.011322021484,"z":0.016562158241868}},"f7d07b":{"lock":false,"position":{"x":40.2900772094727,"y":1.33880090713501,"z":-52.0199775695801},"rotation":{"x":0.0206596124917269,"y":269.901672363281,"z":0.0176223460584879}},"fa603e":{"lock":false,"position":{"x":40.2854118347168,"y":1.33607804775238,"z":-61.2198791503906},"rotation":{"x":0.0208030603826046,"y":270.1435546875,"z":0.0166210383176804}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: The Path to Carcosa -Snap: true -Sticky: true -Tags: -- playmat_memory_object -Tooltip: true -Transform: - posX: 45.64 - posY: 1.1 - posZ: -56.61 - rotX: 359.98 - rotY: 89.99 - rotZ: 359.98 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 1 85cf7e.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 1 85cf7e.ttslua deleted file mode 100644 index 30b93e650..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 1 85cf7e.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/TcnKXJD/Carcosa-1-Curtain-Call-Mark-Molnar.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 1 85cf7e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 1 85cf7e.yaml deleted file mode 100644 index f52344953..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 1 85cf7e.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/TcnKXJD/Carcosa-1-Curtain-Call-Mark-Molnar.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 85cf7e -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token POC - 1 85cf7e.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: POC - 1 -Snap: true -Sticky: true -Tags: -- tpocmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -47.42 - rotX: 0.02 - rotY: 269.91 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 2A f7d07b.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 2A f7d07b.ttslua deleted file mode 100644 index 23b83b3d3..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 2A f7d07b.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/x56ZHt7/Carcosa-2-Last-King-Wu-Mengjia.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 2A f7d07b.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 2A f7d07b.yaml deleted file mode 100644 index f4ac8b698..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 2A f7d07b.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/x56ZHt7/Carcosa-2-Last-King-Wu-Mengjia.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: f7d07b -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token POC - 2A f7d07b.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: POC - 2A -Snap: true -Sticky: true -Tags: -- tpocmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -52.02 - rotX: 0.02 - rotY: 269.9 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 2B 7010ef.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 2B 7010ef.ttslua deleted file mode 100644 index d5ac9c0ee..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 2B 7010ef.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/JRQJKR8/Carcosa-2-Last-King-Cristi-Balanescu.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 2B 7010ef.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 2B 7010ef.yaml deleted file mode 100644 index 844a8c0e8..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 2B 7010ef.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/JRQJKR8/Carcosa-2-Last-King-Cristi-Balanescu.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 7010ef -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token POC - 2B 7010ef.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: POC - 2B -Snap: true -Sticky: true -Tags: -- tpocmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -52.01 - rotX: 1.58 - rotY: 270.32 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 2C 8127bb.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 2C 8127bb.ttslua deleted file mode 100644 index ccb667113..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 2C 8127bb.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/NZzBwgv/Carcosa-2-Last-King-Cristi-Balanescu-2.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 2C 8127bb.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 2C 8127bb.yaml deleted file mode 100644 index b44919f33..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 2C 8127bb.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/NZzBwgv/Carcosa-2-Last-King-Cristi-Balanescu-2.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 8127bb -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token POC - 2C 8127bb.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: POC - 2C -Snap: true -Sticky: true -Tags: -- tpocmat_memory_object -Tooltip: true -Transform: - posX: 32.98 - posY: 1.39 - posZ: -52.01 - rotX: 1.6 - rotY: 270.24 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 3 6cea28.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 3 6cea28.ttslua deleted file mode 100644 index d39e49ca7..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 3 6cea28.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/R6gSm0D/Carcosa-3-Echoes-of-the-Past-Heather-Savage.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 3 6cea28.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 3 6cea28.yaml deleted file mode 100644 index 1f2c14a8d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 3 6cea28.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/R6gSm0D/Carcosa-3-Echoes-of-the-Past-Heather-Savage.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 6cea28 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token POC - 3 6cea28.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: POC - 3 -Snap: true -Sticky: true -Tags: -- tpocmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -56.62 - rotX: 0.02 - rotY: 269.98 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 4A fa603e.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 4A fa603e.ttslua deleted file mode 100644 index b8b432eb2..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 4A fa603e.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/DzzDQQQ/Carcosa-4-Unspeakable-Oath.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 4A fa603e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 4A fa603e.yaml deleted file mode 100644 index e0027b696..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 4A fa603e.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/DzzDQQQ/Carcosa-4-Unspeakable-Oath.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: fa603e -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token POC - 4A fa603e.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: POC - 4A -Snap: true -Sticky: true -Tags: -- tpocmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.34 - posZ: -61.22 - rotX: 0.02 - rotY: 270.14 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 4B 1e0a2d.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 4B 1e0a2d.ttslua deleted file mode 100644 index cb742eb65..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 4B 1e0a2d.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/wWL73c9/Carcosa-4-Unspeakable-Oath-Paul-Fairbairn.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 4B 1e0a2d.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 4B 1e0a2d.yaml deleted file mode 100644 index 34315de15..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 4B 1e0a2d.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/wWL73c9/Carcosa-4-Unspeakable-Oath-Paul-Fairbairn.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 1e0a2d -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token POC - 4B 1e0a2d.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: POC - 4B -Snap: true -Sticky: true -Tags: -- tpocmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.39 - posZ: -61.21 - rotX: 1.58 - rotY: 270.2 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 4C 095a6c.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 4C 095a6c.ttslua deleted file mode 100644 index d0add2f86..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 4C 095a6c.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/9gqBzXr/Carcosa-4-Unspeakable-Oath-2-Mark-Molnar.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 4C 095a6c.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 4C 095a6c.yaml deleted file mode 100644 index 50136a0a3..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 4C 095a6c.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/9gqBzXr/Carcosa-4-Unspeakable-Oath-2-Mark-Molnar.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 095a6c -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token POC - 4C 095a6c.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: POC - 4C -Snap: true -Sticky: true -Tags: -- tpocmat_memory_object -Tooltip: true -Transform: - posX: 32.98 - posY: 1.39 - posZ: -61.21 - rotX: 1.6 - rotY: 270.08 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 5A 1e8406.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 5A 1e8406.ttslua deleted file mode 100644 index 4b409f5ae..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 5A 1e8406.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/Vp1wNbT/Carcosa-5-Phantom-of-Truth-Tomasz-Jedruszek.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 5A 1e8406.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 5A 1e8406.yaml deleted file mode 100644 index 15cd62476..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 5A 1e8406.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/Vp1wNbT/Carcosa-5-Phantom-of-Truth-Tomasz-Jedruszek.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 1e8406 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token POC - 5A 1e8406.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: POC - 5A -Snap: true -Sticky: true -Tags: -- tpocmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -65.82 - rotX: 0.02 - rotY: 270.08 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 5B 2abbe8.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 5B 2abbe8.ttslua deleted file mode 100644 index 2f04ac980..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 5B 2abbe8.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/mzpz1Dd/Carcosa-5-Phantom-of-Truth-Lucas-Staniec.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 5B 2abbe8.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 5B 2abbe8.yaml deleted file mode 100644 index 664dd6d96..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 5B 2abbe8.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/mzpz1Dd/Carcosa-5-Phantom-of-Truth-Lucas-Staniec.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 2abbe8 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token POC - 5B 2abbe8.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: POC - 5B -Snap: true -Sticky: true -Tags: -- tpocmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.38 - posZ: -65.81 - rotX: 1.58 - rotY: 270.1 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 6A 2d374a.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 6A 2d374a.ttslua deleted file mode 100644 index 02ba83143..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 6A 2d374a.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/Bf5LByY/Carcosa-6-Pallid-Mask-Greg-Bobrowski.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 6A 2d374a.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 6A 2d374a.yaml deleted file mode 100644 index e349f0fb0..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 6A 2d374a.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/Bf5LByY/Carcosa-6-Pallid-Mask-Greg-Bobrowski.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 2d374a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token POC - 6A 2d374a.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: POC - 6A -Snap: true -Sticky: true -Tags: -- tpocmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.33 - posZ: -70.42 - rotX: 0.02 - rotY: 270.05 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 6B 8b2f2f.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 6B 8b2f2f.ttslua deleted file mode 100644 index 74389964e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 6B 8b2f2f.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/1v1J9Xx/Carcosa-6-Pallid-Mask-Rafal-Pyra.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 6B 8b2f2f.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 6B 8b2f2f.yaml deleted file mode 100644 index c2c1fae0f..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 6B 8b2f2f.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/1v1J9Xx/Carcosa-6-Pallid-Mask-Rafal-Pyra.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 8b2f2f -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token POC - 6B 8b2f2f.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: POC - 6B -Snap: true -Sticky: true -Tags: -- tpocmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.38 - posZ: -70.41 - rotX: 1.58 - rotY: 269.93 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 7A 456b43.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 7A 456b43.ttslua deleted file mode 100644 index 0faf99ca6..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 7A 456b43.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/TB451t7/Carcosa-7-Black-Star-Rises-Audric-Gatoux.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 7A 456b43.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 7A 456b43.yaml deleted file mode 100644 index 40aa84411..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 7A 456b43.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/TB451t7/Carcosa-7-Black-Star-Rises-Audric-Gatoux.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 456b43 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token POC - 7A 456b43.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: POC - 7A -Snap: true -Sticky: true -Tags: -- tpocmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.38 - posZ: -75.02 - rotX: 358.46 - rotY: 270.06 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 7B 8e8954.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 7B 8e8954.ttslua deleted file mode 100644 index 2e1fc5ea7..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 7B 8e8954.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/nC8Ncxx/Carcosa-7-Black-Star-Rises-Chris-Kintner.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 7B 8e8954.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 7B 8e8954.yaml deleted file mode 100644 index 5d1b0e432..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 7B 8e8954.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/nC8Ncxx/Carcosa-7-Black-Star-Rises-Chris-Kintner.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 8e8954 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token POC - 7B 8e8954.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: POC - 7B -Snap: true -Sticky: true -Tags: -- tpocmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.33 - posZ: -75.01 - rotX: 0.02 - rotY: 270.01 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 8A 3aacc6.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 8A 3aacc6.ttslua deleted file mode 100644 index d7ccfcc8e..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 8A 3aacc6.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/QvS4y3D/Carcosa-8-Dim-Carcosa-Alexandr-Elichev.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 8A 3aacc6.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 8A 3aacc6.yaml deleted file mode 100644 index 24d49b274..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 8A 3aacc6.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/QvS4y3D/Carcosa-8-Dim-Carcosa-Alexandr-Elichev.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 3aacc6 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token POC - 8A 3aacc6.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: POC - 8A -Snap: true -Sticky: true -Tags: -- tpocmat_memory_object -Tooltip: true -Transform: - posX: 40.29 - posY: 1.38 - posZ: -79.62 - rotX: 358.46 - rotY: 269.51 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 8B 0e16cf.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 8B 0e16cf.ttslua deleted file mode 100644 index 3162e468d..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 8B 0e16cf.ttslua +++ /dev/null @@ -1,27 +0,0 @@ -function onLoad() - local params = {} - params.click_function = 'updateSurface' - params.function_owner = self - params.label = 'Apply' - params.tooltip= 'Left click to apply image, right click to revert to default.' - params.position = {0,0.05,-1.6} - params.rotation = {0,0,0} - params.height = 250 - params.width = 580 - params.color = {0,0,0} - params.font_color = {1,1,1} - self.createButton(params) -end - - function updateSurface(obj, color, alt_click) - obj_surface = getObjectFromGUID("721ba2") - local customInfo = obj_surface.getCustomObject() - if alt_click == false then - customInfo.image = "https://i.ibb.co/hR95x7k/Carcosa-8-Dim-Carcosa-Yuri-Shepherd.jpg" - else - customInfo.image = "http://cloud-3.steamusercontent.com/ugc/1717534454684871624/1739012BC3EA35E381D1172705B670BEEBD1AF6F/" - end - obj_surface.setCustomObject(customInfo) - obj_surface = obj_surface.reload() - broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) - end diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 8B 0e16cf.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 8B 0e16cf.yaml deleted file mode 100644 index 429e50915..000000000 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Playmat Customs (By BôL & Mint Tea Fan) 67d8c7/Bag The Path to Carcosa 569aab/Custom_Token POC - 8B 0e16cf.yaml +++ /dev/null @@ -1,52 +0,0 @@ -AltLookAngle: - x: 0.0 - y: 0.0 - z: 0.0 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomToken: - MergeDistancePixels: 15.0 - Stackable: false - StandUp: false - Thickness: 0.1 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.ibb.co/hR95x7k/Carcosa-8-Dim-Carcosa-Yuri-Shepherd.jpg - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 0e16cf -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -LayoutGroupSortIndex: 0 -Locked: false -LuaScript: !include 'Custom_Token POC - 8B 0e16cf.ttslua' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Token -Nickname: POC - 8B -Snap: true -Sticky: true -Tags: -- tpocmat_memory_object -Tooltip: true -Transform: - posX: 36.62 - posY: 1.33 - posZ: -79.61 - rotX: 0.02 - rotY: 269.51 - rotZ: 0.02 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -Value: 0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4.yaml index 09dcbc4f5..550aaec6f 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4.yaml @@ -7,8 +7,8 @@ Bag: Order: 0 ColorDiffuse: b: 0.0 - g: 0.366520882 - r: 0.7058823 + g: 0.36652 + r: 0.70588 ContainedObjects: - !include 'Bag Whimsical''s Generic Difficulty Selector 05efb4/Custom_Tile Generic Difficulty Selector 8112ff.yaml' @@ -42,10 +42,10 @@ Tooltip: true Transform: posX: 29.07 posY: 3.9 - posZ: -21.28 - rotX: 359.99 + posZ: -21.29 + rotX: 0.0 rotY: 0.0 - rotZ: 0.03 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_black Token List 297f5e.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_black Token List 297f5e.ttslua index 4a1559f27..6a717a6a3 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_black Token List 297f5e.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_black Token List 297f5e.ttslua @@ -9,4 +9,4 @@ chaos_tokens = { Standard = {1, 0, 0, -1, -1, -1, -2, -2, -3, -4, "S", "S", "C", "T", "F", "*"}, Hard = {0, 0, -1, -1, -2, -2, -3, -4, -4, -5, "Fr", "Fr", "S", "S", "C", "T", "F", "*"}, Expert = {0, -1, -2, -2, -3, -4, -4, -5, -7, "Fr", "Fr", "Fr", "S", "S", "C", "T", "F", "*"} -} +} \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_black Token List 297f5e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_black Token List 297f5e.yaml index 577aadf40..2d7be978a 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_black Token List 297f5e.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_black Token List 297f5e.yaml @@ -33,9 +33,9 @@ Transform: posX: 12.98 posY: 4.04 posZ: 29.83 - rotX: 359.86 - rotY: 270.03 - rotZ: 206.24 + rotX: 0.0 + rotY: 270.0 + rotZ: 206.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_white Token Image Provider 162580.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_white Token Image Provider 162580.ttslua index ade7153a4..c7e746a71 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_white Token Image Provider 162580.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_white Token Image Provider 162580.ttslua @@ -34,4 +34,4 @@ sources = { ["+"] = MakeToken("Bless", "http://cloud-3.steamusercontent.com/ugc/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/"), ["-"] = MakeToken("Curse", "http://cloud-3.steamusercontent.com/ugc/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/"), ["fr"] = MakeToken("Frost", "http://cloud-3.steamusercontent.com/ugc/1858293462583104677/195F93C063A8881B805CE2FD4767A9718B27B6AE/"), -} +} \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_white Token Image Provider 162580.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_white Token Image Provider 162580.yaml index 42cadcaf3..d746a6eb8 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_white Token Image Provider 162580.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Checker_white Token Image Provider 162580.yaml @@ -32,9 +32,9 @@ Transform: posX: 13.19 posY: 3.81 posZ: 28.84 - rotX: 359.82 + rotX: 0.0 rotY: 270.0 - rotZ: 180.34 + rotZ: 180.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Custom_Tile Generic Difficulty Selector 8112ff.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Custom_Tile Generic Difficulty Selector 8112ff.ttslua index 480679305..6db23453a 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Custom_Tile Generic Difficulty Selector 8112ff.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Custom_Tile Generic Difficulty Selector 8112ff.ttslua @@ -166,4 +166,4 @@ function onObjectSpawn(provider) LoadSource(provider) CreateButtons() -end \ No newline at end of file +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Custom_Tile Generic Difficulty Selector 8112ff.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Custom_Tile Generic Difficulty Selector 8112ff.yaml index 9e85e716e..7ea055d85 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Custom_Tile Generic Difficulty Selector 8112ff.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Custom_Tile Generic Difficulty Selector 8112ff.yaml @@ -40,9 +40,9 @@ Transform: posX: 12.17 posY: 4.22 posZ: 29.91 - rotX: 0.07 - rotY: 270.09 - rotZ: 42.47 + rotX: 0.0 + rotY: 270.0 + rotZ: 42.0 scaleX: 2.2 scaleY: 1.0 scaleZ: 2.2 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Notecard Generic Difficulty Selector Instructions 13 c32992.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Notecard Generic Difficulty Selector Instructions 13 c32992.yaml index 1869c662f..b6b503435 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Notecard Generic Difficulty Selector Instructions 13 c32992.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag Whimsical's Generic Difficulty Selector 05efb4/Notecard Generic Difficulty Selector Instructions 13 c32992.yaml @@ -117,12 +117,12 @@ States: Sticky: true Tooltip: true Transform: - posX: 13.5 + posX: 13.51 posY: 3.62 posZ: 30.27 - rotX: 0.34 + rotX: 0.0 rotY: 90.0 - rotZ: 0.12 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa.yaml index 345d6ed92..3d059a38d 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa.yaml @@ -7,8 +7,8 @@ Bag: Order: 0 ColorDiffuse: b: 0.0 - g: 0.366520882 - r: 0.7058823 + g: 0.36652 + r: 0.70588 ContainedObjects: - !include 'Bag jaqenZann''s Navigation Overlay a8affa/Notecard Navigation Overlay 739ee5.yaml' @@ -40,9 +40,9 @@ Transform: posX: 30.32 posY: 3.9 posZ: -20.96 - rotX: 0.01 + rotX: 0.0 rotY: 180.0 - rotZ: 0.06 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Assetbundle cecc3e.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Assetbundle cecc3e.yaml index 9424e3928..d03c5f80a 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Assetbundle cecc3e.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Assetbundle cecc3e.yaml @@ -4,9 +4,9 @@ AltLookAngle: z: 0.0 Autoraise: true ColorDiffuse: - b: 0.18381986 - g: 0.18381986 - r: 0.18381986 + b: 0.18382 + g: 0.18382 + r: 0.18382 CustomAssetbundle: AssetbundleSecondaryURL: '' AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/880873968289806692/67F62868DF65CD9CC43F3CDCDED7BACA0F075422/ @@ -51,9 +51,9 @@ Transform: posX: 18.15 posY: 3.5 posZ: -26.63 - rotX: 0.31 + rotX: 0.0 rotY: 270.0 - rotZ: 0.13 + rotZ: 0.0 scaleX: 0.58 scaleY: 0.58 scaleZ: 0.58 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 0ffbc5.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 0ffbc5.ttslua index ce5e7a18f..910eab791 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 0ffbc5.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 0ffbc5.ttslua @@ -645,4 +645,4 @@ function getPlayerCount() end return playerCount -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 0ffbc5.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 0ffbc5.yaml index 5c4186536..68ee4876b 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 0ffbc5.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Custom_Tile jaqenZann's Navigation Overlay Tile 0ffbc5.yaml @@ -40,9 +40,9 @@ Transform: posX: 25.96 posY: 3.52 posZ: -18.62 - rotX: 1.11 + rotX: 1.0 rotY: 270.0 - rotZ: 359.86 + rotZ: 0.0 scaleX: 0.8 scaleY: 1.0 scaleZ: 0.8 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Notecard Navigation Overlay 739ee5.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Notecard Navigation Overlay 739ee5.yaml index 94af72ff5..96ccf3c6a 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Notecard Navigation Overlay 739ee5.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Bag jaqenZann's Navigation Overlay a8affa/Notecard Navigation Overlay 739ee5.yaml @@ -180,10 +180,10 @@ Tooltip: true Transform: posX: 18.45 posY: 3.6 - posZ: -25.85 - rotX: 0.41 - rotY: 89.99 - rotZ: 0.31 + posZ: -25.86 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 scaleX: 0.7 scaleY: 1.0 scaleZ: 0.7 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_red Draw Token Button Tooltip Renamer cc77a8.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_red Draw Token Button Tooltip Renamer cc77a8.ttslua index f6c8e24d5..471e08438 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_red Draw Token Button Tooltip Renamer cc77a8.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_red Draw Token Button Tooltip Renamer cc77a8.ttslua @@ -452,4 +452,4 @@ function symbols() getObjectFromGUID("bd0ff4").editButton({index = 6, tooltip = tool}) getObjectFromGUID("383d8b").editButton({index = 6, tooltip = tool}) getObjectFromGUID("0840d5").editButton({index = 6, tooltip = tool}) -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_red Draw Token Button Tooltip Renamer cc77a8.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_red Draw Token Button Tooltip Renamer cc77a8.yaml index a9c9cde51..f862ade8d 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_red Draw Token Button Tooltip Renamer cc77a8.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_red Draw Token Button Tooltip Renamer cc77a8.yaml @@ -30,9 +30,9 @@ Transform: posX: 30.5 posY: 4.08 posZ: -20.93 - rotX: 359.92 - rotY: 270.02 - rotZ: 0.02 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_white Displacement Tool 0f1374.ttslua b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_white Displacement Tool 0f1374.ttslua index 3ae257856..e813e74e8 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_white Displacement Tool 0f1374.ttslua +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_white Displacement Tool 0f1374.ttslua @@ -59,4 +59,4 @@ function shift(player, direction) object:translate(adjustment) end end -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_white Displacement Tool 0f1374.yaml b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_white Displacement Tool 0f1374.yaml index fc6bc216e..ba935f859 100644 --- a/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_white Displacement Tool 0f1374.yaml +++ b/unpacked/Custom_Model_Bag Fan-Made Accessories aa8b38/Checker_white Displacement Tool 0f1374.yaml @@ -34,18 +34,21 @@ Transform: posX: 29.56 posY: 4.09 posZ: -21.44 - rotX: 359.92 + rotX: 0.0 rotY: 270.0 - rotZ: 0.02 + rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 Value: 0 -XmlUI: "